Skip to content

Commit b8e4cd1

Browse files
authored
Merge pull request satwikkansal#154 from satwikkansal/3.0
🎉
2 parents 2f383f8 + 76d98d9 commit b8e4cd1

18 files changed

+2226
-858
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
node_modules
24
npm-debug.log
35
wtfpython-pypi/build/
@@ -8,3 +10,9 @@ wtfpython-pypi/wtfpython.egg-info
810
__pycache__/
911
*.py[cod]
1012
*$py.class
13+
14+
irrelevant/.ipynb_checkpoints/
15+
16+
irrelevant/.python-version
17+
18+
.idea/

.npmignore

-1
This file was deleted.

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
All kinds of patches are welcome. Feel free to even suggest some catchy and funny titles for the existing Examples. The goal is to make this collection as interesting to read as possible.
22

3-
If you are interested in translating the project to another language (some people have done that in the past), please feel free to open up an issue or ping on the [gitter channel](https://gitter.im/wtfpython/Lobby) if you need any kind of help.
3+
If you are interested in translating the project to another language (some people have done that in the past), please feel free to open up an issue, and let me know if you need any kind of help.
44

55
If the changes you suggest are significant, filing an issue before submitting the actual patch will be appreciated. If you'd like to work on the issue (highly encouraged), you can mention that you're interested in working on it while creating the issue and get assigned to it.
66

@@ -42,4 +42,4 @@ Few things that you can consider while writing an example,
4242

4343
- Try to be consistent with the namings and the values you use with the variables. For instance, most variable names in the project are along the lines of `some_string`, `some_list`, `some_dict`, etc. You'd see a lot of `x`s for single letter variable names, and `"wtf"` as values for strings. There's strictly enforced scheme in the project, but you can take a glance at other examples to get a gist.
4444
- Try to be as creative as possible to add that element of "surprise" in the setting up part of an example. Sometimes this may mean writing a snippet a sane programmer would never write.
45-
- Also, please don't forget to add your name to the [contributors list](/CONTRIBUTING.md).
45+
- Also, please don't forget to add your name to the [contributors list](/CONTRIBUTING.md).

CONTRIBUTORS.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
I'm really grateful to all the contributors. Following are the wonderful people (in no specific order) who have contributed their examples to wtfpython.
1+
Following are the wonderful people (in no specific order) who have contributed their examples to wtfpython.
22

33
| Contributor | Github | Issues |
44
|-------------|--------|--------|
@@ -10,5 +10,19 @@ I'm really grateful to all the contributors. Following are the wonderful people
1010
| PiaFraus | [PiaFraus](https://github.com/PiaFraus) | [#9](https://github.com/satwikkansal/wtfpython/issues/9) |
1111
| chris-rands | [chris-rands](https://github.com/chris-rands) | [#32](https://github.com/satwikkansal/wtfpython/issues/32) |
1212
| sohaibfarooqi | [sohaibfarooqi](https://github.com/sohaibfarooqi) | [#63](https://github.com/satwikkansal/wtfpython/issues/63) |
13+
| ipid | [ipid](https://github.com/ipid) | [#145](https://github.com/satwikkansal/wtfpython/issues/145) |
14+
| roshnet | [roshnet](https://github.com/roshnet) | [#140](https://github.com/satwikkansal/wtfpython/issues/140) |
15+
| daidai21 | [daidai21](https://github.com/daidai21) | [#137](https://github.com/satwikkansal/wtfpython/issues/137) |
16+
| scidam | [scidam](https://github.com/scidam) | [#136](https://github.com/satwikkansal/wtfpython/issues/136) |
17+
| pmjpawelec | [pmjpawelec](https://github.com/pmjpawelec) | [#121](https://github.com/satwikkansal/wtfpython/issues/121) |
18+
| leisurelicht | [leisurelicht](https://github.com/leisurelicht) | [#112](https://github.com/satwikkansal/wtfpython/issues/112) |
19+
| mishaturnbull | [mishaturnbull](https://github.com/mishaturnbull) | [#108](https://github.com/satwikkansal/wtfpython/issues/108) |
20+
| MuseBoy | [MuseBoy](https://github.com/MuseBoy) | [#101](https://github.com/satwikkansal/wtfpython/issues/101) |
21+
| Ghost account | N/A | [#96](https://github.com/satwikkansal/wtfpython/issues/96)
22+
| koddo | [koddo](https://github.com/koddo) | [#80](https://github.com/satwikkansal/wtfpython/issues/80), [#73](https://github.com/satwikkansal/wtfpython/issues/73) |
23+
| jab | [jab](https://github.com/jab) | [#77](https://github.com/satwikkansal/wtfpython/issues/77) |
1324

14-
Thank you all for taking out the time to make this project more awesome! :smile:
25+
26+
Thank you all for your time and making wtfpython more awesome! :smile:
27+
28+
PS: This list is updated after every major release, if I forgot to add your contribution here, please feel free to raise a Pull request.

0 commit comments

Comments
 (0)