I hereby claim:
- I am dcchambers on github.
- I am dcchambers (https://keybase.io/dcchambers) on keybase.
- I have a public key whose fingerprint is AE7A 7B8C 84E6 69E7 4EDE F950 D8DC F869 6854 9629
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <iostream> | |
| #include <list> | |
| using namespace std; | |
| int main() { | |
| list<int> test_list = {1, 2, 3, 4}; | |
| for (int n : test_list) { | |
| std::cout << n << '\n'; |
File/Directory Management
touchlslncpmkdirmvrmrmdirwhichPeople
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| Name | π΅ |
|---|---|
| Atom | Free |
| VSCode | Free |
| Sublime Text | $80 (Try for free) |
Listed in no particular order.
| #!/bin/bash | |
| #Check if user is root | |
| if [ $UID != 0 ]; then | |
| echo "You need to be root to use this script." | |
| exit 1 | |
| fi | |
| echo "docker-nuke-safely exists to do one thing; clean up your Docker environment. It's not called docker-carefully-and-nicely-spritz-up. Be careful!" | |
| echo |