- 4Chan: Community where everything matters but everyone is anonymous.
- StackOverflow: Geek community where only knowledge matters and anonymity is optional.
- Imgur: Community where the username is most often part of the message.
- IRC: Not a community. The common room of your community's lodgings.
- Twitter: Nobody's really sure what exactly it is.
- Facebook: Originally made by a douchebag, now home to many more.
- MySpace: Where bands hang out before they die.
- Bandcamp: Where the rest of the bands are.
- YouTube: One of the rare things that has gotten better after Google bought it.
- Github: Code. Code-code-code. Octopuses. Lolcats.
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
#!/bin/bash | |
# Sometimes you need to move your existing git repository | |
# to a new remote repository (/new remote origin). | |
# Here are a simple and quick steps that does exactly this. | |
# | |
# Let's assume we call "old repo" the repository you wish | |
# to move, and "new repo" the one you wish to move to. | |
# | |
### Step 1. Make sure you have a local copy of all "old repo" | |
### branches and tags. |
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
function remove-docker-containers | |
echo "Stop running shit" | |
docker stop (docker ps -q) | |
echo "Remove the whale shit" | |
docker rm (docker ps -a -q) | |
end | |
function remove-docker-images | |
remove-docker-containers |