~/.bash_profile
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
code
- opens Visual Studio Codecode .
- opens current directory in Visual Studio Codecode somefile
- opens somefile in Visual Studio Code
~/.bash_profile
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
code
- opens Visual Studio Codecode .
- opens current directory in Visual Studio Codecode somefile
- opens somefile in Visual Studio Code~/.zshrc
function code {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
local argPath="$1"
[[ $1 = /* ]] && argPath="$1" || argPath="$PWD/${1#./}"
package main | |
import ( | |
"database/sql" | |
"database/sql/driver" | |
"errors" | |
"fmt" | |
_ "github.com/mattn/go-sqlite3" | |
) |
#!/bin/bash | |
# | |
# Check a "few" things to help write more maintainable Go code. | |
# | |
# OK, it's fairly comprehensive. So simply remove or comment out | |
# anything you don't want. | |
# | |
# Don't forget to install (go get) each of these tools. | |
# More info at the URLs provided. | |
# |
It hook checks out that commit message contains [touch: %i]
(for example [touch: 1]
).
Run next commands in terminal in order to install this hook:
$ wget https://gist.github.com/ivanlemeshev/be044d12f55d8437617e/raw/29223cc8a9d3e63930e6e62c7e4ded7a47560b09/commit-msg
package main | |
import ( | |
"fmt" | |
) | |
type Node struct { | |
Value int | |
} |
I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.
If you want to roll up all of these into a single jQuery plugin check out Sharrre
Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.
#Model | |
@user.should have(1).error_on(:username) # Checks whether there is an error in username | |
@user.errors[:username].should include("can't be blank") # check for the error message | |
#Rendering | |
response.should render_template(:index) | |
#Redirecting | |
response.should redirect_to(movies_path) |
doctype html | |
html | |
head | |
title My App | |
meta name="viewport" content="width=device-width, initial-scale=1.0" | |
= stylesheet_link_tag "application", media: 'all', 'data-turbolinks-track' => true | |
= javascript_include_tag "application", 'data-turbolinks-track' => true | |
= csrf_meta_tags | |
body |
'use strict'; | |
var gulp = require('gulp'), | |
wiredep = require('wiredep'), | |
concat = require('gulp-concat'), | |
csso = require('gulp-csso'), | |
uglify = require('gulp-uglify'), | |
ngAnnotate = require('gulp-ng-annotate'), | |
livereload = require('gulp-livereload'), | |
jscs = require('gulp-jscs'), |