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
#!/bin/bash | |
# | |
# preview (neo)vim colors | |
# | |
# use "~/.vim/colors" and "vim" | |
# instead of "~/.config/nvim/colors" and "nvim" | |
# | |
# IFF you're a nerd and aren't using neovim yet | |
# | |
# usage: |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset='utf-8'> | |
<title>Index</title> | |
</head> | |
<body> | |
<input type="text" placeholder="gtype suggest"> | |
<ul></ul> |
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
POP3: | |
telnet example.com 110 | |
USER user | |
PASS pass | |
STAT | |
LIST | |
RETR 1 | |
DELE 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
#include <stdio.h> | |
#include <stdarg.h> | |
#include <stdlib.h> | |
#include <string.h> | |
struct slice { | |
size_t type; | |
int len; | |
int cap; |
OlderNewer