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
# 1. Create New Empty Branch | |
git checkout --orphan new_main | |
# 2. Stage All Files | |
git add . | |
# 3. Create Initial Commit | |
git commit -m "Initial commit" | |
# 4. Remove Old Main Branch |
We can't make this file beautiful and searchable because it's too large.
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
ID, ZIP, LAT, LON | |
1,35004,33.557327,-86.534508 | |
2,35005,33.604744,-87.042442 | |
3,35006,33.429344,-87.202103 | |
4,35007,33.228821,-86.791901 | |
5,35010,32.944641,-85.910011 | |
6,35011,32.939999,-85.949997 | |
7,35013,33.913639,-86.509087 | |
8,35014,33.405113,-86.276802 |
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
<ul> | |
{% assign sorted = site.collection_name | sort: 'date' | reverse %} | |
{% for item in sorted %} | |
<li>{{ item.title }}</li> | |
{% endfor %} | |
</ul> |
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
sudo yum install epel-release | |
sudo yum install snapd | |
sudo systemctl enable --now snapd.socket | |
sudo ln -s /var/lib/snapd/snap /snap | |
sudo snap install rocketchat-server |