Skip to content

Instantly share code, notes, and snippets.

View tjnine's full-sized avatar

TJ Nine tjnine

View GitHub Profile
@tjnine
tjnine / list.sh
Created September 4, 2018 02:49
a list of go pkgs for vs code go extension
The Go extension for Visual Studio Code various Go tools, installed in the user's GOPATH. Some of them are responsible for general language features like code navigation, auto-completions, symbol search etc. Others, while helpful are optional for the Go extension to provide day-to-day language support.
Tools essential for the general features of this extension:
gocode for auto-completion
go-outline for symbol search in the current file
go-symbols for symbol search in the current workspace
gopkgs for auto-completion of unimported packages
guru for the Find all References feature
gorename for renaming symbols
@tjnine
tjnine / .zshrc
Created September 3, 2018 07:51
2018 High Sierra Configurations & Settings
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/teejten/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
@tjnine
tjnine / .zshrc
Last active August 25, 2018 05:49
oh-my-zsh configurations
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/teejten/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
@tjnine
tjnine / cs_105.md
Last active May 10, 2018 00:37
a list of computer science techniques and terms



Computer Science 105

📕 A collection of small pieces of computer science knowledges




@tjnine
tjnine / preferences.json
Created January 19, 2018 03:53
Visual Studio Code Preferences
{
"editor.fontFamily": "Source Code Pro, Menlo, Monaco, 'Courier New', monospace",
"editor.cursorStyle": "block",
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "on",
"editor.cursorBlinking": "expand",
"editor.dragAndDrop": false,
"editor.fontSize": 16,
"editor.lineHeight":26,
"go.autocompleteUnimportedPackages": false,
@tjnine
tjnine / preferences.json
Created January 19, 2018 03:13
Sublime Text 3 Preferences
{
"Seti_SB_bright": true,
"Seti_blue_label": true,
"always_prompt_for_file_reload": false,
"always_show_minimap_viewport": false,
"animation_enabled": true,
"atomic_save": false,
"auto_close_tags": true,
"auto_complete": true,
"auto_complete_commit_on_tab": false,
@tjnine
tjnine / ember-build.sh
Last active May 10, 2018 00:41 — forked from rtablada/ember-build.sh
Build Script for using Ember CLI and Laravel PHP
#!/usr/bin/env bash
// ember build
cp dist/index.html app/views/app.php
cp -r dist/assets public/assets
// git deploy
git checkout master
git add .
git commit -a -m "Pre-publish commit"
git push
@tjnine
tjnine / byte-sizetuts.md
Last active April 17, 2018 02:44 — forked from honkskillet/byte-sizetuts.md
A series of golang tutorials with youtube videos.
@tjnine
tjnine / python3-with-homebrew.md
Last active May 10, 2018 00:45
Python 3 Setup

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3