This is a line with a sentence. Adding line breaks to this block should continue the blockquote.
By the CTCI BDFL, Lizzy
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
<html> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<body> | |
<table border="1"> | |
<tr> | |
<th>Artist</th> | |
<th>Album</th> | |
<th>Tracks</th> | |
</tr> | |
<tr> |
I hereby claim:
- I am etcadinfinitum on github.
- I am etcadinfinitum (https://keybase.io/etcadinfinitum) on keybase.
- I have a public key whose fingerprint is B584 80CF 00B5 3D82 4243 47D3 27B2 4C84 5D72 6A7B
To claim this, I am signing this object:
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
# fancy colored prompt | |
export COLOR_LIGHT_GREEN='\e[1;32m' | |
export COLOR_LIGHT_PURPLE='\e[1;35m' | |
export COLOR_GRAY='\e[1;30m' | |
export COLOR_NC='\e[0m' | |
export COLOR_TEAL='\e[36m' | |
path () { | |
if [ $(pwd) == "/" ]; then | |
: |
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
/* | |
Say you have 2 files: | |
hello.cpp --> has main() | |
fib.cpp --> has no main() | |
You also have a header file for fib.cpp | |
fib.h --> contains method signature for fib.cpp | |
All files are in the same directory | |
*/ | |
// fib.cpp must (?) have a header file declaring the method signature. |
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
# to start in CLI mode | |
sudo enter-chroot [-n chrootname] | |
# start xfce4 (normal mode - full screen, use Ctrl-Alt-[Arrow] to switch back to ChromeOS | |
sudo startxfce4 | |
# start xfce4 in a new chromeOS tab | |
sudo startxfce4 -X xiwi-tab |
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
" run pathogen | |
execute pathogen#infect() | |
" turn on 256-color terminal where supported | |
set t_Co=256 | |
" favorite color scheme seen thus far | |
" to get, clone this: https://github.com/thayerwilliams/vimbrant.git | |
colorscheme vimbrant |