-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 47dd318
Showing
10 changed files
with
662 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: python | ||
python: 3.6 | ||
cache: pip | ||
|
||
install: python3 -m pip install sphinx | ||
|
||
script: | ||
- sphinx-build -n -W -q -b html -d _build/doctrees . _build/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SPHINXPROJ = talk-talk-talk | ||
SOURCEDIR = source | ||
BUILDDIR = build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@ECHO OFF | ||
|
||
pushd %~dp0 | ||
|
||
REM Command file for Sphinx documentation | ||
|
||
if "%SPHINXBUILD%" == "" ( | ||
set SPHINXBUILD=sphinx-build | ||
) | ||
set SOURCEDIR=source | ||
set BUILDDIR=build | ||
set SPHINXPROJ=talk-talk-talk | ||
|
||
if "%1" == "" goto help | ||
|
||
%SPHINXBUILD% >NUL 2>NUL | ||
if errorlevel 9009 ( | ||
echo. | ||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx | ||
echo.installed, then set the SPHINXBUILD environment variable to point | ||
echo.to the full path of the 'sphinx-build' executable. Alternatively you | ||
echo.may add the Sphinx directory to PATH. | ||
echo. | ||
echo.If you don't have Sphinx installed, grab it from | ||
echo.http://sphinx-doc.org/ | ||
exit /b 1 | ||
) | ||
|
||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
goto end | ||
|
||
:help | ||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
|
||
:end | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
alabaster==0.7.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
<p><iframe src="https://ghbtns.com/github-btn.html?user=mariatta&type=follow&count=false" | ||
allowtransparency="true" frameborder="0" scrolling="0" width="200" height="20"></iframe></p> | ||
|
||
<p><a href="https://twitter.com/mariatta" class="twitter-follow-button" data-show-count="false">Follow @mariatta</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></p> | ||
|
||
<p><a href="https://saythanks.io/to/Mariatta"><img src="https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg"></a></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file does only contain a selection of the most common options. For a | ||
# full list see the documentation: | ||
# http://www.sphinx-doc.org/en/master/config | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
# | ||
# import os | ||
# import sys | ||
# sys.path.insert(0, os.path.abspath('.')) | ||
|
||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'talk-talk-talk' | ||
copyright = '2018, Mariatta Wijaya' | ||
author = 'Mariatta Wijaya' | ||
|
||
# The short X.Y version | ||
version = '' | ||
# The full version, including alpha/beta/rc tags | ||
release = '' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
# If your documentation needs a minimal Sphinx version, state it here. | ||
# | ||
# needs_sphinx = '1.0' | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ['_templates'] | ||
|
||
# The suffix(es) of source filenames. | ||
# You can specify multiple suffix as a list of string: | ||
# | ||
# source_suffix = ['.rst', '.md'] | ||
source_suffix = '.rst' | ||
|
||
# The master toctree document. | ||
master_doc = 'index' | ||
|
||
# The language for content autogenerated by Sphinx. Refer to documentation | ||
# for a list of supported languages. | ||
# | ||
# This is also used if you do content translation via gettext catalogs. | ||
# Usually you set "language" from the command line for these cases. | ||
language = None | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This pattern also affects html_static_path and html_extra_path . | ||
exclude_patterns = [] | ||
|
||
# The name of the Pygments (syntax highlighting) style to use. | ||
pygments_style = 'sphinx' | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
||
# The theme to use for HTML and HTML Help pages. See the documentation for | ||
# a list of builtin themes. | ||
# | ||
html_theme = 'alabaster' | ||
|
||
# Theme options are theme-specific and customize the look and feel of a theme | ||
# further. For a list of options available for each theme, see the | ||
# documentation. | ||
# | ||
html_theme_options = { | ||
'github_user': 'mariatta', | ||
'github_repo': 'talk-talk-talk', | ||
'github_type': 'star', | ||
'description': "Mariatta's talk proposals", | ||
'show_relbars': True, | ||
} | ||
# Add any paths that contain custom static files (such as style sheets) here, | ||
# relative to this directory. They are copied after the builtin static files, | ||
# so a file named "default.css" will overwrite the builtin "default.css". | ||
# html_static_path = ['_static'] | ||
|
||
# Custom sidebar templates, must be a dictionary that maps document names | ||
# to template names. | ||
# | ||
# The default sidebars (for documents that don't match any pattern) are | ||
# defined by theme itself. Builtin themes are using these templates by | ||
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', | ||
# 'searchbox.html']``. | ||
# | ||
html_sidebars = { | ||
'**': [ | ||
'about.html', | ||
'sidebarlogo.html', | ||
'localtoc.html', | ||
'navigation.html', | ||
'relations.html', | ||
'searchbox.html', | ||
], | ||
} | ||
|
||
|
||
# -- Options for HTMLHelp output --------------------------------------------- | ||
|
||
# Output file base name for HTML help builder. | ||
htmlhelp_basename = 'talk-talk-talkdoc' | ||
|
||
|
||
# -- Options for LaTeX output ------------------------------------------------ | ||
|
||
latex_elements = { | ||
# The paper size ('letterpaper' or 'a4paper'). | ||
# | ||
# 'papersize': 'letterpaper', | ||
|
||
# The font size ('10pt', '11pt' or '12pt'). | ||
# | ||
# 'pointsize': '10pt', | ||
|
||
# Additional stuff for the LaTeX preamble. | ||
# | ||
# 'preamble': '', | ||
|
||
# Latex figure (float) alignment | ||
# | ||
# 'figure_align': 'htbp', | ||
} | ||
|
||
# Grouping the document tree into LaTeX files. List of tuples | ||
# (source start file, target name, title, | ||
# author, documentclass [howto, manual, or own class]). | ||
latex_documents = [ | ||
(master_doc, 'talk-talk-talk.tex', 'talk-talk-talk Documentation', | ||
'Mariatta Wijaya', 'manual'), | ||
] | ||
|
||
|
||
# -- Options for manual page output ------------------------------------------ | ||
|
||
# One entry per manual page. List of tuples | ||
# (source start file, name, description, authors, manual section). | ||
man_pages = [ | ||
(master_doc, 'talk-talk-talk', 'talk-talk-talk Documentation', | ||
[author], 1) | ||
] | ||
|
||
|
||
# -- Options for Texinfo output ---------------------------------------------- | ||
|
||
# Grouping the document tree into Texinfo files. List of tuples | ||
# (source start file, target name, title, author, | ||
# dir menu entry, description, category) | ||
texinfo_documents = [ | ||
(master_doc, 'talk-talk-talk', 'talk-talk-talk Documentation', | ||
author, 'talk-talk-talk', 'One line description of project.', | ||
'Miscellaneous'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
Dial M For Mentor | ||
----------------- | ||
|
||
This talk was accepted and given at: PyCaribbean 2017, DjangoCon Europe 2017, PyCon Italy 2017, | ||
and PyCon US 2017. | ||
|
||
It was also accepted at two another regional Python conferences, but I declined the invitation. | ||
|
||
One was because they didn't provide any financial aid, and I didn't have any support from my employer. | ||
|
||
The other I declined because I was already going to another conference just one week before, | ||
and it was getting difficult for my family that I was away all the time. | ||
|
||
Mentor | ||
====== | ||
|
||
Special thanks to Ned Batchelder who helped me refine this proposal. | ||
|
||
Proposal | ||
======== | ||
|
||
The following was the proposal I submitted to PyCon US 2017. If you've seen my talk, you will realize | ||
that the proposal was not quite the same as the talk I gave. I had a life-changing event after this proposal | ||
was accepted, so I made slight modification. | ||
|
||
|
||
Title | ||
''''' | ||
|
||
Dial M for Mentor | ||
|
||
|
||
Duration | ||
'''''''' | ||
|
||
30 minutes slot | ||
|
||
|
||
Who and Why | ||
''''''''''' | ||
|
||
Members of Python and open source community who are looking for a mentor, and needing | ||
clues as to how to find a good mentor. Those who are hesitant to ask for help may get | ||
the encouragement to reach out. Current mentors will gain insight about what their | ||
mentees are going through. | ||
|
||
|
||
Description | ||
''''''''''' | ||
|
||
One of the nicest things about Python community is the availability of mentors | ||
willing to help you. Various mentors have helped me navigate the open source | ||
community and help advanced my skills. I realized finding a mentor is not as | ||
easy as it seems, and it takes a lot of courage to reach out in the first place. | ||
And then, there is impostor syndrome, where one may feel like they don’t deserve | ||
the help. In this talk, I will provide advice about working with a mentor. | ||
Asking for help is not a failure. | ||
|
||
|
||
Outline | ||
''''''' | ||
|
||
1. Myths to debunk: (5-10 minutes) | ||
|
||
- “I don’t deserve their help/I’m not worthy” | ||
|
||
* Impostor Syndrome. Men and women alike can experience this. | ||
|
||
* First, admit that this is a problem, then help yourself. | ||
|
||
* Provide links to other talks/resources which discuss Impostor Syndrome | ||
|
||
- “I’m wasting their time” | ||
|
||
* Mentors learn from you too. Your work may expose them to areas they haven’t been before. | ||
|
||
* Mentors gain skills: leadership, communication, and time management. | ||
|
||
* Sometimes it’s nice to have solvable problems to work on. “Experts” have challenging days of | ||
their own full of uncertainty and confusion. Being able to help and having answers to your | ||
questions can be a rewarding experience. | ||
|
||
- “I’m a failure for needing help” | ||
|
||
- “I know so little, I don’t even know what questions to ask” | ||
|
||
* It’s part of learning. You will reach the point where you don’t need help anymore. | ||
|
||
* Why work with a mentor (5 minutes) | ||
|
||
* Maybe you’ve been stuck for a long time | ||
|
||
* Maybe you tried it on your own, and not successful. | ||
|
||
* Maybe you’re experienced in one domain, but want to learn new skills | ||
|
||
Eg: You’re experienced in Python, and want to start picking up Javascript/Go/C | ||
|
||
Mentors have gone through your problems. They can help and provide guidance | ||
But it’s up to you to reach out in the first place. Don’t believe in myths. | ||
|
||
Personal experience: Making more progress when working with mentor, compared to | ||
when trying to achieve things on my own. | ||
|
||
2. Where to find mentors (3 minutes) | ||
|
||
- Face to face / in person | ||
|
||
- Someone within your own organization/company/school | ||
|
||
- Someone in your local python community/meetup | ||
|
||
- Online mentorship: | ||
|
||
- Pyladies, Python Core Mentorship | ||
|
||
- IRC or Slack channels | ||
|
||
- Conference speaker mentors | ||
|
||
3. Working with your mentor (5 minutes) | ||
|
||
- It’s two-way, requires commitment from both sides | ||
|
||
- Respect each other. Your mentor has other commitments and personal life | ||
|
||
- If it doesn’t work out for any reason, find a different mentor. | ||
|
||
- Want to thank your mentor? Pay it forward. Mentor others. | ||
|
||
4. Truth about mentorship (3 minutes) | ||
|
||
- Mentor plays a supporting role. They provide resources and advice needed to succeed. | ||
But they won’t be doing your homework. | ||
|
||
- You are the real star of the show, you learn and do all the real work. | ||
|
||
- Don't forget to take credit for your own work and effort. | ||
|
||
Thanks! | ||
|
||
|
Oops, something went wrong.