Key vocabulary
desu am, is, are
-san Mr., Ms., etc.
| //! This is a port of Microsoft's libk4a `k4apointcloudrenderer.cpp`. | |
| //! This provides the visual output. | |
| use std::ffi::CString; | |
| use std::fmt::Formatter; | |
| use std::mem::size_of; | |
| use std::os::raw::{c_char, c_void}; | |
| use std::ptr; | |
| use std::ptr::null; | |
| use std::str; |
| key = "watsonkey" | |
| url = "watsonurl" |
| # TODO(bt): reorganize, check into github | |
| # Default configuration | |
| # set -g utf8 | |
| # setw -g utf8 on | |
| set -g default-terminal "screen-256color" | |
| set -g history-limit 1000000 # Much history. | |
| set -s escape-time 0 # Vim escape cannot be laggy! | |
| set -g repeat-time 1000 | |
| # See https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard |
| #!/bin/bash | |
| # Select a random color for search utilities such as 'grep' or 'ag'. | |
| # Create an alias: alias ag='ag --color-match="$(random_color)"' | |
| # Or, alias grep='GREP_COLOR="$(random_color)" grep' | |
| random_color() { | |
| # List of highlight colors to iterate between | |
| # Legacy Terminal color codes, | |
| # 01;33 - light yellow text | |
| # 01;34 - dark blue text |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| # By Michael Chaney, Michael Chaney Consulting Corporation | |
| # Copyright 2006, Michael Chaney Consulting Corporation, all rights reserved | |
| # read wav chunks, see what each chunk is | |
| use strict; | |
| use POSIX qw(strftime); |
| # https://github.com/Ogeon/rust-on-raspberry-pi/blob/master/MANUAL.md | |
| git clone https://github.com/raspberrypi/tools.git ~/pi-tools | |
| git clone https://github.com/rust-lang/rust.git && cd rust | |
| git checkout 1.5.0 # or whatever version tag | |
| export PATH=~/pi-tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin:$PATH | |
| ./configure --target=arm-unknown-linux-gnueabihf --prefix=$HOME/pi-rust | |
| make -j4 && make install |
| // ==UserScript== | |
| // @name agar.io | |
| // @namespace agar.io | |
| // @include http://agar.io/ | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| (function (_window, _jquery) { | |
| console.log('installing custom agar.io'); |
| " Brandon Thomas' vimrc etc. | |
| " A highly opinionated vim config. | |
| " https://github.com/echelon/dotfiles-vim | |
| " web: http://brand.io | |
| " email: bt at brand.io | |
| " ===== Pathogen ===== | |
| " Usage Note: | |
| " Source vimrc, then call :PluginInstall to install/update plugins. |