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
    
  
  
    
  | C:\cygwin64\home\Mateusz\.opam\system\bin>set PATH=%PATH%;c:\cygwin64\home\Mateusz\.opam\system\lib\stublibs | |
| C:\cygwin64\home\Mateusz\.opam\system\bin>utop | |
| ────────────────────────────┬──────────────────────────────────────────────────────────────┬──────────────────────────── | |
| │ Welcome to utop version 1.19.3 (using OCaml version 4.02.3)! │ | |
| └──────────────────────────────────────────────────────────────┘ | |
| Type #utop_help for help about using utop. | 
  
    
      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
    
  
  
    
  | nix-env -i -f https://github.com/akavel/multigit/archive/3.6.1-nix.tar.gz | 
  
    
      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
    
  
  
    
  | $ vendo --help | |
| Usage: | |
| vendo [command] | |
| Available Commands: | |
| check [TODO][NIY] for use as a git pre-commit hook | |
| recreate clone third-party packages from GOPATH to _vendor/ subdirectory | |
| update update a third-party repo in _vendor/ from the Internet (like `go get -u`) | |
| help Help about any command | 
  
    
      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
    
  
  
    
  | @echo off | |
| :: This file (bootstrap.bat) is a helper for building "luvit.exe" and "lit.exe" | |
| :: with pre-built "luvi.exe". | |
| :: We require luvi.exe. | |
| :: TODO: find out a way to auto-download it on "bare" Windows? | |
| if not exist luvi.exe ( | |
| echo error: luvi.exe missing! | |
| echo Please download luvi-*.exe from https://github.com/luvit/luvi/releases, then copy it here and rename to "luvi.exe". | 
  
    
      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
    
  
  
    
  | C:\prog\gopath\src\github.com\akavel\rsrc\tmp-amd64>go version | |
| go version go1.5.1 windows/amd64 | |
| C:\prog\gopath\src\github.com\akavel\rsrc\tmp-amd64>gcc --version | |
| gcc.exe (GCC) 4.7.0 20111220 (experimental) | |
| Copyright (C) 2011 Free Software Foundation, Inc. | |
| This is free software; see the source for copying conditions. There is NO | |
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
| C:\prog\gopath\src\github.com\akavel\rsrc\tmp-amd64>git clone https://github.com/jhowardmsft/sql1.5.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
    
  
  
    
  | function! SystemFirstLine(cmd) | |
| " Drop CR from CR-LF sequences on Windows OS | |
| return split(system(a:cmd), "\n")[0] | |
| endfunction | |
| function! AkavelListGoImports() | |
| " Note: http://stackoverflow.com/a/6146663/98528 | |
| " and :help feature-list | |
| if has('win32') || has('win64') || has('win16') || has('win32unix') | |
| let pathsep = ';' | 
  
    
      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 | |
| # This is a simple build script and will be executed on your CI system if | |
| # available. Otherwise it will execute while your application is stopped | |
| # before the deploy step. This script gets executed directly, so it | |
| # could be python, php, ruby, etc. | |
| tarball="https://go.googlecode.com/files/go1.0.3.linux-amd64.tar.gz" | |
| # Set GOROOT since we don't use GOROOT_FINAL | |
| mkdir -p $OPENSHIFT_HOMEDIR/app-root/data/go | 
  
    
      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 ast, re, sys | |
| from xml.dom import minidom | |
| try: | |
| from xml.etree import cElementTree as etree | |
| except: | |
| try: | |
| from lxml import etree | |
| except: | |
| from xml.etree import ElementTree as etree | 
  
    
      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
    
  
  
    
  | // https://groups.google.com/d/msg/golang-nuts/LqDtKSpo5YY/bd5Z5xbNIVgJ | |
| // by egon | |
| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | 
  
    
      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
    
  
  
    
  | --[[ This script automatically saves the global environment periodically | |
| and restores it when this script is run. Recommended usage is with | |
| the standalone Lua interpreter like this: | |
| lua -i autosave.lua | |
| It was coded for and tested with Eris (https://github.com/fnuecke/eris). | |