I hereby claim:
- I am 0culus on github.
- I am 0culus (https://keybase.io/0culus) on keybase.
- I have a public key ASDLoPbunClOov3CK-41O97XXVz_MdV8SBzxMd6od6Okmwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| -- The C compiler identification is AppleClang 8.1.0.8020042 | |
| -- The CXX compiler identification is AppleClang 8.1.0.8020042 | |
| -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc | |
| -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works | |
| -- Detecting C compiler ABI info | |
| -- Detecting C compiler ABI info - done | |
| -- Detecting C compile features | |
| -- Detecting C compile features - done | |
| -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ | |
| -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works |
| " MIT License. Copyright (c) 2013-2016 Bailey Ling. | |
| " vim: et ts=2 sts=2 sw=2 | |
| let s:has_fugitive = exists('*fugitive#head') | |
| let s:has_lawrencium = exists('*lawrencium#statusline') | |
| let s:has_vcscommand = get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine') | |
| if !s:has_fugitive && !s:has_lawrencium && !s:has_vcscommand | |
| finish | |
| endif |
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page | |
| # and in the NixOS manual (accessible by running ‘nixos-help’). | |
| { config, pkgs, ... }: | |
| { | |
| imports = | |
| [ # Include the results of the hardware scan. | |
| ./hardware-configuration.nix |
| // compute fibonacci numbers with F# | |
| module fibonacci = | |
| let rec fib n = | |
| match n with | |
| | 0 -> 0 | |
| | 1 -> 1 | |
| | _ -> fib(n - 1) + fib(n - 2) |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft] | |
| "SPONSORS"="DISABLE" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft] | |
| "SPONSORS"="DISABLE" |
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
git config --global alias.co checkout
git config --global apply.whitespace nowarn
| # | |
| # ~/.bashrc | |
| # | |
| #colors | |
| RED='\e[1;31m' | |
| GREEN='\e[1;32m' | |
| YELLOW='\e[1;33m' | |
| BLUE='\e[1;34m' | |
| NULL='\e[m' |
| # .bash_profile | |
| # Get the aliases and functions | |
| if [ -f ~/.bashrc ]; then | |
| . ~/.bashrc | |
| fi | |
| HISTIGNORE="&:ls:[bf]g:exit:bye:ll:lsa:la:gcc:[ \t]*";export HISTIGNORE | |
| # BASH |
| *.aux | |
| *.glo | |
| *.idx | |
| *.log | |
| *.toc | |
| *.ist | |
| *.acn | |
| *.acr | |
| *.alg | |
| *.bbl |