Using Git
Global Settings
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
package main | |
// run from the command line as: | |
// go test -bench=".* | |
import ( | |
"testing" | |
) | |
func BenchmarkJSON(b *testing.B) { |
@echo off | |
@rem \"%stPath%\" : Path to Sublime Text installation dir. | |
@rem %UserEntry%: Key name for the registry entry. | |
@rem %UserMenuText% : Context menu text. Set your preferred menu text (e.g.: translate to your language). | |
@rem %AdminEntry%: Key name for the registry entry. | |
@rem %AdminMenuText% : Context menu text. Set your preferred menu text for administrator privilege (e.g.: translate to your language). | |
SET stPath=%~dp0sublime_text.exe | |
SET UserEntry=Sublime Text | |
SET AdminEntry=Sublime Text As Admin |
package main | |
import ( | |
"encoding/json" | |
"log" | |
"net/http" | |
"reflect" | |
"time" | |
"github.com/gorilla/context" |
package main | |
import ( | |
"database/sql" | |
"encoding/json" | |
"errors" | |
"fmt" | |
"log" | |
"net/http" | |
"time" |
package web | |
import ( | |
"reflect" | |
"strconv" | |
"strings" | |
"util" | |
) | |
const ( |
// Package lex implements the lexical scanner for Suneido | |
package lex | |
import ( | |
"bytes" | |
"strings" | |
"unicode" | |
"unicode/utf8" | |
) |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
package example | |
import ( | |
"fmt" | |
"math/rand" | |
"net/http" | |
"google.golang.org/appengine" | |
"google.golang.org/appengine/file" | |
"google.golang.org/appengine/log" |
package example | |
import ( | |
"fmt" | |
"math/rand" | |
"net/http" | |
"google.golang.org/appengine" | |
"google.golang.org/appengine/file" | |
"google.golang.org/appengine/log" |
{ | |
"translatorID": "", | |
"translatorType": 3, | |
"label": "Better BibLateX key for Markdown", | |
"creator": "Eoin Travers. Forked from BibTex key for Markdown, created by liob based on the works of Peter O'Brien, Simon Kornblith and Richard Karnesky", | |
"target": "bib", | |
"minVersion": "2.1.9", | |
"maxVersion": null, | |
"priority": 200, | |
"inRepository": true, |