I hereby claim:
- I am ssilva on github.
- I am ssilva (https://keybase.io/ssilva) on keybase.
- I have a public key ASD4uTWrjL1lBlfQGqbAru4GQOh6xWzDYXAhwleLTkxMnwo
To claim this, I am signing this object:
- No Mundo Maior (13)
- Paulo e Estêvão
- Pensamento e Vida
- A Caminho da Luz (82)
- Vinha de Luz
- O Consolador (58)
- Cinquenta Anos Depois (14)
- Voltei (10)
- Memórias de um suicida
- Caminho, Verdade e Vida (104)
- Install vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
- Clone .vimrc
vim +PlugInstall +qall
- In Vim
:Obsess ~/.vim/mysession.vim
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
" Plug: https://github.com/junegunn/vim-plug | |
call plug#begin('~/.vim/plugged') | |
Plug 'tpope/vim-commentary' | |
Plug 'tpope/vim-obsession' | |
Plug 'tpope/vim-sensible' | |
Plug 'tpope/vim-markdown' | |
Plug 'itchyny/lightline.vim' | |
Plug 'terryma/vim-multiple-cursors' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'chriskempson/base16-vim' |
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
extern crate rand; | |
use rand::Rng; | |
const ROWS: usize = 10; | |
const COLS: usize = 80; | |
const ANSI_COLOR_RED: &str = "\x1b[31m"; | |
const ANSI_COLOR_GREEN: &str = "\x1b[32m"; | |
const ANSI_COLOR_BLUE: &str = "\x1b[34m"; |
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
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<title>Ruby</title> | |
</head> | |
<body> | |
<p> | |
<ruby> | |
明日 <rp>(</rp><rt>Ashita</rt><rp>)</rp> |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<title>Gameboy (LR35902) OPCODES</title> | |
<meta http-equiv="content-type" content="text/html; charset=windows-1250"> | |
<style type="text/css"> <!-- | |
table.withborder { | |
border-width: 1px; | |
border-style: solid; |
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
#include <stdlib.h> | |
#include <stdio.h> | |
// Started from http://emulator101.com/ | |
int disassemble_op(unsigned char *codebuffer, int pc) | |
{ | |
unsigned char *code = &codebuffer[pc]; | |
int opbytes = 1; |
In Postgres, each row has a system column xmin
which holds the ID of the first transaction to have visibility over that row.
Conversely, the xmax
system column holds the ID of last trasaction to have visibility over that row.
DROP TABLE IF EXISTS users;
CREATE TABLE users (name varchar(80)) WITH OIDS;
INSERT INTO users VALUES ('root');
SELECT oid, xmin, xmax, name FROM users;
NewerOlder