This file contains hidden or 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
//Use this command to find and move a specific kind of file in a directory. | |
//This command searches recursively through nested folders. | |
$ find ~/old-music-folder -name '*.mp3' -exec mv {} ~/new-music-folder \; |
This file contains hidden or 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
body { | |
font-size: 17px; | |
} | |
p a { | |
color: #158cbd; | |
} | |
p a:hover { | |
text-decoration: underline; |
This file contains hidden or 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
Remove Spotlight icon in menu bar | |
$ cd /System/Library/CoreServices/ | |
$ sudo mv Search.bundle/ Search2.bundle/ | |
Reveal Spotlight icon in menu bar | |
$ sudo mv Search2.bundle/ Search.bundle/ |
This file contains hidden or 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
This is main body of my content. I have a footnote link for this line <a href="#footnote-1">[1]</a>. Then, I have some more content. Some of it is interesting and it has some footnotes as well <a href="#footnote-2">[2]</a>. | |
<p id="footnote-1">[1] Here is my first footnote.</p> | |
<p id="footnote-2">[2] Another footnote.</p> |
This file contains hidden or 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
Lorem Lorem ipsum dolor sit amet[citepro]Footnote number one.[/citepro], consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua[citepro]Footnote number 2.[/citepro]. | |
This file contains hidden or 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
.citepro-text:after { | |
content: " ↩"; | |
cursor: pointer; | |
} |
This file contains hidden or 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
.citepro { | |
color: #4da7ca; | |
} | |
p.citepro-block { | |
clear: both; | |
padding: 15px 7px 7px 0; | |
border-top: 2px solid #ccc; | |
border-bottom: none; | |
} |
This file contains hidden or 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
<span class="icon">1</span><input id="search-field" name="q" placeholder="Search keywords" type="text" value="" /> |
This file contains hidden or 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
You ring the Bell of Opening. The Bell of Opening issues an unsettling shrill sound. Patrick Swayze materializes out of the haunting mist. | |
??????++++++++=================+IZZZOZ$ZZZZODDDNNND8OO8OO7Z=======+==++++++++?+? | |
????++++=++================~===?O8O88O8Z$88888NNNNNDZ$ZZOO7I=======+=====+++++++ | |
?++++++++===========~=~~~~~~==?8ZO8DDDOO8NNNMNNN8NNDOZZZZZOZ?==============++==+ | |
+++++===========~~~=~~=~~~~=I8OOZZDNNDDDNNMMMMMM8MDDNDD88888O=~===~===========++ | |
+++++=========~~~~~~~~~~~~~7888ZO8NNMMD8NMMNMMNMNNMMNDNDNNNDDDO=~===~=========== | |
++++======~~~=~~~~~~~~~~~~?OOODO8NNNDDDD8NNMMMMMNMNMNDDNNNNNND87==~=~~~=~=~==~== | |
=========~~~~~~~~~~:~~~:~=O$888D88ZZZOODNMNMMMNNNNNNNMMMNNNNDD88?~~~~~~~=~~===== | |
=======~~=~~~~~~~:~:::~~~I$ZODDNDNNNMMMMMMMND8OZZOO8DNMMMNNNDD8N8I=~~~~~~~~~=~== |
This file contains hidden or 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
var userChoice = prompt("Do you choose rock, paper, scissors or rope?"); | |
var computerChoice = Math.random(); | |
if (computerChoice <= 0.25) | |
{ | |
computerChoice = "rock"; | |
} | |
else if (0.26 <= computerChoice <= 0.50) | |
{ | |
computerChoice = "paper"; | |
} |
OlderNewer