Skip to content

Instantly share code, notes, and snippets.

View ivanlemeshev's full-sized avatar
👨‍💻

Ivan Lemeshev ivanlemeshev

👨‍💻
  • Espoo, Finland
View GitHub Profile
@ivanlemeshev
ivanlemeshev / vsc_bash.md
Created April 21, 2016 19:44
Visual Studio Code in Bash

~/.bash_profile

code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}  
  • code - opens Visual Studio Code
  • code . - opens current directory in Visual Studio Code
  • code somefile - opens somefile in Visual Studio Code
@ivanlemeshev
ivanlemeshev / vsc_zsh.md
Last active April 21, 2016 19:44
Visual Studio Code in Zsh

~/.zshrc

function code {  
    if [[ $# = 0 ]]
    then
        open -a "Visual Studio Code"
    else
        local argPath="$1"
 [[ $1 = /* ]] && argPath="$1" || argPath="$PWD/${1#./}"
@ivanlemeshev
ivanlemeshev / scanval.go
Last active April 21, 2016 19:46 — forked from husobee/scanval.go
Scanner and Valuer example in Go
package main
import (
"database/sql"
"database/sql/driver"
"errors"
"fmt"
_ "github.com/mattn/go-sqlite3"
)
@ivanlemeshev
ivanlemeshev / pre-commit
Created April 14, 2016 16:28 — forked from tmaiaroto/pre-commit
A Go Commit Hook for Less Future Headaches
#!/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.
#
@ivanlemeshev
ivanlemeshev / install-hook.md
Last active January 20, 2016 00:07
Golang codebase commit validation

Golang codebase commit validation

It hook checks out that commit message contains [touch: %i] (for example [touch: 1]).

Install from binary file

Run next commands in terminal in order to install this hook:

$ wget https://gist.github.com/ivanlemeshev/be044d12f55d8437617e/raw/29223cc8a9d3e63930e6e62c7e4ded7a47560b09/commit-msg
@ivanlemeshev
ivanlemeshev / gist:55a1b05f3ad1dd09baea
Created January 17, 2016 20:26 — forked from moraes/gist:2141121
LIFO Stack and FIFO Queue in golang
package main
import (
"fmt"
)
type Node struct {
Value int
}
@ivanlemeshev
ivanlemeshev / gist:e16a863b7ee7872d6bda
Created December 18, 2015 12:02 — forked from jonathanmoore/gist:2640302
Get the share counts from various APIs

Share Counts

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.

Twitter

@ivanlemeshev
ivanlemeshev / rspec_rails_cheetsheet.rb
Created November 18, 2015 19:18 — forked from them0nk/rspec_rails_cheetsheet.rb
Rspec Rails cheatsheet (include capybara matchers)
#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)
@ivanlemeshev
ivanlemeshev / application.html.slim
Created November 18, 2015 17:58 — forked from hmans/application.html.slim
Application layout for Rails (4), Slim style.
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
@ivanlemeshev
ivanlemeshev / gulpfile.js
Created August 27, 2015 12:12
gulpfile.js
'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'),