Skip to content

Commit 2fb7114

Browse files
authored
Hardcode emojis into READMEs (#134)
1 parent a7e09fb commit 2fb7114

File tree

6 files changed

+352
-352
lines changed

6 files changed

+352
-352
lines changed

β€ŽREADME.de.mdβ€Ž

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![License](https://img.shields.io/github/license/huangsam/ultimate-python)](https://github.com/huangsam/ultimate-python/blob/main/LICENSE)
77
[![r/Python](https://img.shields.io/badge/reddit-original_post-red)](https://www.reddit.com/r/Python/comments/inllmf/ultimate_python_study_guide/)
88

9-
Der ultimative Python-Lernführer für Einsteiger und Profis gleichermaßen. :snake: :snake: :snake:
9+
Der ultimative Python-Lernführer für Einsteiger und Profis gleichermaßen. 🐍 🐍 🐍
1010

1111
```python
1212
print("Ultimativer Python-LernfΓΌhrer")
@@ -66,98 +66,98 @@ Es gibt zwei MΓΆglichkeiten, die Module auszufΓΌhren:
6666

6767
## InhaltsΓΌbersicht
6868

69-
:books: = Externe Ressource,
70-
:cake: = Thema fΓΌr AnfΓ€nger,
71-
:exploding_head: = Fortgeschrittenes Thema
69+
πŸ“š = Externe Ressource,
70+
🍰 = Thema für AnfÀnger,
71+
🀯 = Fortgeschrittenes Thema
7272

7373
1. **Über Python**
74-
- Overview: [What is Python](https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md) ( :books:, :cake: )
75-
- Design philosophy: [The Zen of Python](https://www.python.org/dev/peps/pep-0020/) ( :books: )
76-
- Style guide: [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) ( :books:, :exploding_head: )
77-
- Data model: [Data model](https://docs.python.org/3/reference/datamodel.html) ( :books:, :exploding_head: )
78-
- Standard library: [The Python Standard Library](https://docs.python.org/3/library/) ( :books:, :exploding_head: )
79-
- Built-in functions: [Built-in Functions](https://docs.python.org/3/library/functions.html) ( :books: )
74+
- Overview: [What is Python](https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md) ( πŸ“š, 🍰 )
75+
- Design philosophy: [The Zen of Python](https://www.python.org/dev/peps/pep-0020/) ( πŸ“š )
76+
- Style guide: [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) ( πŸ“š, 🀯 )
77+
- Data model: [Data model](https://docs.python.org/3/reference/datamodel.html) ( πŸ“š, 🀯 )
78+
- Standard library: [The Python Standard Library](https://docs.python.org/3/library/) ( πŸ“š, 🀯 )
79+
- Built-in functions: [Built-in Functions](https://docs.python.org/3/library/functions.html) ( πŸ“š )
8080
2. **Syntax**
81-
- Variable: [Built-in literals](ultimatepython/syntax/variable.py) ( :cake: )
82-
- Expression: [Numeric operations](ultimatepython/syntax/expression.py) ( :cake: )
83-
- Bitwise: [Bitwise operators](ultimatepython/syntax/bitwise.py) ( :cake: ), [One's/Two's Complement](https://www.geeksforgeeks.org/difference-between-1s-complement-representation-and-2s-complement-representation-technique/) ( :books: )
84-
- Conditional: [if | if-else | if-elif-else](ultimatepython/syntax/conditional.py) ( :cake: )
85-
- Loop: [for-loop | while-loop](ultimatepython/syntax/loop.py) ( :cake: )
86-
- Function: [def | lambda](ultimatepython/syntax/function.py) ( :cake: )
81+
- Variable: [Built-in literals](ultimatepython/syntax/variable.py) ( 🍰 )
82+
- Expression: [Numeric operations](ultimatepython/syntax/expression.py) ( 🍰 )
83+
- Bitwise: [Bitwise operators](ultimatepython/syntax/bitwise.py) ( 🍰 ), [One's/Two's Complement](https://www.geeksforgeeks.org/difference-between-1s-complement-representation-and-2s-complement-representation-technique/) ( πŸ“š )
84+
- Conditional: [if | if-else | if-elif-else](ultimatepython/syntax/conditional.py) ( 🍰 )
85+
- Loop: [for-loop | while-loop](ultimatepython/syntax/loop.py) ( 🍰 )
86+
- Function: [def | lambda](ultimatepython/syntax/function.py) ( 🍰 )
8787
3. **Daten-Strukturen**
88-
- List: [List operations](ultimatepython/data_structures/list.py) ( :cake: )
88+
- List: [List operations](ultimatepython/data_structures/list.py) ( 🍰 )
8989
- Tuple: [Tuple operations](ultimatepython/data_structures/tuple.py)
9090
- Set: [Set operations](ultimatepython/data_structures/set.py)
91-
- Dict: [Dictionary operations](ultimatepython/data_structures/dict.py) ( :cake: )
91+
- Dict: [Dictionary operations](ultimatepython/data_structures/dict.py) ( 🍰 )
9292
- Comprehension: [list | tuple | set | dict](ultimatepython/data_structures/comprehension.py)
93-
- String: [String operations](ultimatepython/data_structures/string.py) ( :cake: )
94-
- Deque: [deque](ultimatepython/data_structures/deque.py) ( :exploding_head: )
95-
- Namedtuple: [namedtuple](ultimatepython/data_structures/namedtuple.py) ( :exploding_head: )
96-
- Defaultdict: [defaultdict](ultimatepython/data_structures/defaultdict.py) ( :exploding_head: )
97-
- Time complexity: [cPython operations](https://wiki.python.org/moin/TimeComplexity) ( :books:, :exploding_head: )
93+
- String: [String operations](ultimatepython/data_structures/string.py) ( 🍰 )
94+
- Deque: [deque](ultimatepython/data_structures/deque.py) ( 🀯 )
95+
- Namedtuple: [namedtuple](ultimatepython/data_structures/namedtuple.py) ( 🀯 )
96+
- Defaultdict: [defaultdict](ultimatepython/data_structures/defaultdict.py) ( 🀯 )
97+
- Time complexity: [cPython operations](https://wiki.python.org/moin/TimeComplexity) ( πŸ“š, 🀯 )
9898
4. **Klassen**
99-
- Basic class: [Basic definition](ultimatepython/classes/basic_class.py) ( :cake: )
100-
- Inheritance: [Inheritance](ultimatepython/classes/inheritance.py) ( :cake: )
99+
- Basic class: [Basic definition](ultimatepython/classes/basic_class.py) ( 🍰 )
100+
- Inheritance: [Inheritance](ultimatepython/classes/inheritance.py) ( 🍰 )
101101
- Abstract class: [Abstract definition](ultimatepython/classes/abstract_class.py)
102102
- Exception class: [Exception definition](ultimatepython/classes/exception_class.py)
103-
- Iterator class: [Iterator definition | yield](ultimatepython/classes/iterator_class.py) ( :exploding_head: )
103+
- Iterator class: [Iterator definition | yield](ultimatepython/classes/iterator_class.py) ( 🀯 )
104104
- Encapsulation: [Encapsulation definition](ultimatepython/classes/encapsulation.py)
105105
5. **Fortgeschrittene**
106-
- Decorator: [Decorator definition | wraps](ultimatepython/advanced/decorator.py) ( :exploding_head: )
107-
- File Handling: [File Handling](ultimatepython/advanced/file_handling.py) ( :exploding_head: )
108-
- Context manager: [Context managers](ultimatepython/advanced/context_manager.py) ( :exploding_head: )
109-
- Method resolution order: [mro](ultimatepython/advanced/mro.py) ( :exploding_head: )
110-
- Mixin: [Mixin definition](ultimatepython/advanced/mixin.py) ( :exploding_head: )
111-
- Metaclass: [Metaclass definition](ultimatepython/advanced/meta_class.py) ( :exploding_head: )
112-
- Thread: [ThreadPoolExecutor](ultimatepython/advanced/thread.py) ( :exploding_head: )
113-
- Asyncio: [async | await](ultimatepython/advanced/async.py) ( :exploding_head: )
114-
- Weak reference: [weakref](ultimatepython/advanced/weak_ref.py) ( :exploding_head: )
115-
- Benchmark: [cProfile | pstats](ultimatepython/advanced/benchmark.py) ( :exploding_head: )
116-
- Mocking: [MagicMock | PropertyMock | patch](ultimatepython/advanced/mocking.py) ( :exploding_head: )
117-
- Regular expression: [search | findall | match | fullmatch](ultimatepython/advanced/regex.py) ( :exploding_head: )
118-
- Data format: [json | xml | csv](ultimatepython/advanced/data_format.py) ( :exploding_head: )
119-
- Datetime: [datetime | timezone](ultimatepython/advanced/date_time.py) ( :exploding_head: )
106+
- Decorator: [Decorator definition | wraps](ultimatepython/advanced/decorator.py) ( 🀯 )
107+
- File Handling: [File Handling](ultimatepython/advanced/file_handling.py) ( 🀯 )
108+
- Context manager: [Context managers](ultimatepython/advanced/context_manager.py) ( 🀯 )
109+
- Method resolution order: [mro](ultimatepython/advanced/mro.py) ( 🀯 )
110+
- Mixin: [Mixin definition](ultimatepython/advanced/mixin.py) ( 🀯 )
111+
- Metaclass: [Metaclass definition](ultimatepython/advanced/meta_class.py) ( 🀯 )
112+
- Thread: [ThreadPoolExecutor](ultimatepython/advanced/thread.py) ( 🀯 )
113+
- Asyncio: [async | await](ultimatepython/advanced/async.py) ( 🀯 )
114+
- Weak reference: [weakref](ultimatepython/advanced/weak_ref.py) ( 🀯 )
115+
- Benchmark: [cProfile | pstats](ultimatepython/advanced/benchmark.py) ( 🀯 )
116+
- Mocking: [MagicMock | PropertyMock | patch](ultimatepython/advanced/mocking.py) ( 🀯 )
117+
- Regular expression: [search | findall | match | fullmatch](ultimatepython/advanced/regex.py) ( 🀯 )
118+
- Data format: [json | xml | csv](ultimatepython/advanced/data_format.py) ( 🀯 )
119+
- Datetime: [datetime | timezone](ultimatepython/advanced/date_time.py) ( 🀯 )
120120

121121
## ZusΓ€tzliche Ressourcen
122122

123-
:necktie: = Interview-Ressource,
124-
:test_tube: = Code-Beispiele,
125-
:brain: = Projektideen
123+
πŸ‘” = Interview-Ressource,
124+
πŸ§ͺ = Code-Beispiele,
125+
🧠 = Projektideen
126126

127127
### GitHub repositories
128128

129129
Lernen Sie weiter, indem Sie von anderen Quellen lesen.
130130

131-
- [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python) ( :necktie:, :test_tube: )
132-
- [faif/python-patterns](https://github.com/faif/python-patterns) ( :necktie:, :test_tube: )
133-
- [geekcomputers/Python](https://github.com/geekcomputers/Python) ( :test_tube: )
134-
- [trekhleb/homemade-machine-learning](https://github.com/trekhleb/homemade-machine-learning) ( :test_tube: )
135-
- [karan/Projects](https://github.com/karan/Projects) ( :brain: )
136-
- [MunGell/awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) ( :brain: )
131+
- [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python) ( πŸ‘”, πŸ§ͺ )
132+
- [faif/python-patterns](https://github.com/faif/python-patterns) ( πŸ‘”, πŸ§ͺ )
133+
- [geekcomputers/Python](https://github.com/geekcomputers/Python) ( πŸ§ͺ )
134+
- [trekhleb/homemade-machine-learning](https://github.com/trekhleb/homemade-machine-learning) ( πŸ§ͺ )
135+
- [karan/Projects](https://github.com/karan/Projects) ( 🧠 )
136+
- [MunGell/awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) ( 🧠 )
137137
- [vinta/awesome-python](https://github.com/vinta/awesome-python)
138138
- [academic/awesome-datascience](https://github.com/academic/awesome-datascience)
139139
- [josephmisiti/awesome-machine-learning](https://github.com/josephmisiti/awesome-machine-learning)
140140
- [ZuzooVn/machine-learning-for-software-engineers](https://github.com/ZuzooVn/machine-learning-for-software-engineers)
141-
- [30-seconds/30-seconds-of-python](https://github.com/30-seconds/30-seconds-of-python) ( :test_tube: )
141+
- [30-seconds/30-seconds-of-python](https://github.com/30-seconds/30-seconds-of-python) ( πŸ§ͺ )
142142
- [ml-tooling/best-of-python](https://github.com/ml-tooling/best-of-python)
143143
- [practical-tutorials/project-based-learning](https://github.com/practical-tutorials/project-based-learning#python)
144-
- [freeCodeCamp/freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) ( :necktie: )
144+
- [freeCodeCamp/freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) ( πŸ‘” )
145145

146146
### Interaktive Übungen
147147

148148
Üben Sie weiter, damit Ihre Programmierkenntnisse nicht einrosten.
149149

150-
- [codechef.com](https://www.codechef.com/) ( :necktie: )
150+
- [codechef.com](https://www.codechef.com/) ( πŸ‘” )
151151
- [codeforces.com](https://codeforces.com/)
152-
- [codementor.io](https://www.codementor.io) ( :brain: )
153-
- [coderbyte.com](https://www.coderbyte.com/) ( :necktie: )
152+
- [codementor.io](https://www.codementor.io) ( 🧠 )
153+
- [coderbyte.com](https://www.coderbyte.com/) ( πŸ‘” )
154154
- [codewars.com](https://www.codewars.com/)
155155
- [exercism.io](https://exercism.io/)
156-
- [geeksforgeeks.org](https://www.geeksforgeeks.org/) ( :necktie: )
156+
- [geeksforgeeks.org](https://www.geeksforgeeks.org/) ( πŸ‘” )
157157
- [hackerearth.com](https://www.hackerearth.com/)
158-
- [hackerrank.com](https://www.hackerrank.com/) ( :necktie: )
159-
- [kaggle.com](https://www.kaggle.com/) ( :brain: )
160-
- [leetcode.com](https://leetcode.com/) ( :necktie: )
158+
- [hackerrank.com](https://www.hackerrank.com/) ( πŸ‘” )
159+
- [kaggle.com](https://www.kaggle.com/) ( 🧠 )
160+
- [leetcode.com](https://leetcode.com/) ( πŸ‘” )
161161
- [projecteuler.net](https://projecteuler.net/)
162162
- [replit.com](https://replit.com/)
163-
- [w3schools.com](https://www.w3schools.com/python/) ( :test_tube: )
163+
- [w3schools.com](https://www.w3schools.com/python/) ( πŸ§ͺ )

0 commit comments

Comments
Β (0)