kristofer / Shell Zero
0 likes
0 forks
1 files
Last active
Shell0 (Zero)
easy commands on files
- ls
- pwd
- mv, cp
- rm
- cd
- directories/folders
kristofer / ZCW Idioms
0 likes
0 forks
1 files
Last active
Proverbs
- The only easy day was yesterday
- Slow is smooth, smooth is fast
- Embrace the Suck
- Get comfortable being uncomfortable
- Intelligence is the ability to adapt to change
- Trust the process
- Integrity is doing the right thing, even when no one is looking
- Grit is falling down seven times but getting up eight
kristofer / Topics that Matter
0 likes
0 forks
1 files
Last active
Words You Should Know
- Deploy, deployment
- Production
- Producton Database
- .env files
kristofer / Notes on 12.0
0 likes
0 forks
1 files
Last active
Primer Topics
- Programming/Coding
- Github/git
- Shell
- Text Editing & Files
there is a pseudo to java, paul says he had a to-python.
kristofer / Some python
0 likes
0 forks
2 files
Last active
| 1 | def countwords(lst): |
| 2 | word_count = {} |
| 3 | |
| 4 | for word in lst: |
| 5 | if word in word_count: |
| 6 | word_count[word] += 1 |
| 7 | else: |
| 8 | word_count[word] = 1 |
| 9 | return word_count |
| 10 |
kristofer / Working with Strings
0 likes
0 forks
1 files
Last active
Working with Strings
In both python and Java, samples of working with common string operations: split, capitalization, concatenation, replacing characters, working with sentences.
Key differences:
- Python: Has built-in title(), capitalize() methods; f-strings for formatting
- Java: More verbose; often requires manual implementation or StringBuilder
- Python: Strings are immutable but syntax is cleaner
Newer
Older