- Melville, Moby Dick.
- Dostoyevsky, Crime and Punishment.
- Dostoyevsky, The Brothers Karamazov.
- The Bible
- Joyce, Ulysses.
- Nabokov, Lolita.
- Williams, Stoner.
- Pynchon, Gravity's Rainbow.
- Homer, The Iliad.
- Wallace, Infinite jest.
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
| package main | |
| import "fmt" | |
| import "time" | |
| import "strconv" | |
| import "strings" | |
| func loading() { | |
| for { | |
| fmt.Printf("\n\x1b[2F\x1b[1BLoading... ") |
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
| not android > 0 | |
| not and_ff > 0 | |
| not and_uc > 0 | |
| not and_qq > 0 | |
| not opera > 0 | |
| not op_mini > 0 | |
| not op_mob > 0 | |
| not baidu > 0 | |
| not kaios > 0 | |
| not samsung > 0 |
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
| # _ | |
| # _______| |__ _ __ ___ | |
| # |_ / __| '_ \| '__/ __| | |
| # / /\__ \ | | | | | (__ | |
| # /___|___/_| |_|_| \___| | |
| # ======================== | |
| # Share command history between active shell sessions | |
| setopt SHARE_HISTORY |
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 { | |
| background-color: white; | |
| } |
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
| # usage: `zsh ./fontastic.sh 'Open Sans'` | |
| font_family=${1/ /+} | |
| font_weights=({1..9}00{,b,i,bi}) | |
| base_url='https://fonts.googleapis.com/css' | |
| query_string="family=${font_family}:${(j<,>)font_weights}" | |
| endpoint="${base_url}?${query_string}" | |
| fonts=($(curl -s ${endpoint} | grep -o 'https://.*\.ttf' )) | |
| names=(${(f)"$(curl -s ${endpoint} | grep '^ src' | sed "s/^.*src: local('\([^']\+\)').*$/\1/")"}) | |
| if (( ${#fonts} > 0 )) { | |
| mkdir -v ${1} |
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
| typeset -Hgx | |
| # If `nvim` is installed | |
| if (( ${+commands[nvim]} )) { | |
| # Have `vi` refer to `nvim` | |
| alias vi='nvim' | |
| # open manpages using `nvim` | |
| MANPAGER='nvim +Man!' | |
| } else { |
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
| #include <stdio.h> | |
| #include <stdint.h> | |
| int main(int argc, char** argv) { | |
| printf("Hello world!\n"); | |
| return 0; | |
| } |
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
| from sys import argv | |
| from subprocess import run | |
| import datetime | |
| import re | |
| origin = None | |
| index = 0 | |
| easy=[ | |
| 0, | |
| 1.2, |
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
| import java.time.LocalTime; | |
| import java.time.format.DateTimeFormatter; | |
| public class Timer { | |
| public static void main(String[] args) { | |
| /* Get the current time */ | |
| LocalTime localTime = LocalTime.now(); |