Skip to content

Instantly share code, notes, and snippets.

View jeserkin's full-sized avatar

Eugene Serkin jeserkin

View GitHub Profile
@jeserkin
jeserkin / how-to-add-image-to-gist.md
Created April 26, 2021 11:06 — forked from mroderick/how-to-add-image-to-gist.md
How to add an image to a gist

How to add an image to a gist

  1. Create a gist if you haven't already.
  2. Clone your gist:
    # make sure to replace `<hash>` with your gist's hash
    git clone https://gist.github.com/<hash>.git # with https
    git clone git@gist.github.com:<hash>.git     # or with ssh
@jeserkin
jeserkin / App.js
Last active January 2, 2017 12:29 — forked from anonymous/App.js
'use strict';
// Declare app level module which depends on views, and components
var myApp = angular.module('myApp',[
'ui.router',
'ui.bootstrap',
'validation',
'validation.rule',
'users',
'dashboard',