Skip to content

Instantly share code, notes, and snippets.

View ui2code's full-sized avatar
🏠
Working from home

Hemerson Vianna ui2code

🏠
Working from home
View GitHub Profile
@ui2code
ui2code / gist:d88600176424b10bf79f84d08990a397
Created January 4, 2020 19:29 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@ui2code
ui2code / comandos-docker
Created April 24, 2018 02:20 — forked from morvanabonin/comandos-docker
Comandos do Docker
Segue a lista de comandos docker e sua utilidade:
docker attach – Acessar dentro do container e trabalhar a partir dele.
docker build – A partir de instruções de um arquivo Dockerfile eu possa criar uma imagem.
docker commit – Cria uma imagem a partir de um container.
docker cp – Copia arquivos ou diretórios do container para o host.
docker create – Cria um novo container.
docker diff – Exibe as alterações feitas no filesystem do container.
docker events – Exibe os eventos do container em tempo real.
docker exec – Executa uma instrução dentro do container que está rodando sem precisar atachar nele.
@ui2code
ui2code / ssh-agent-cmder.txt
Last active July 17, 2016 09:04
Run ssh-agent on startup in Cmder. path : cmder\vendor\init.bat or cmder\config\user-startup.cmd (tested on v1.2.9)
@echo off
ssh-agent | grep -v echo | sed -e "s/^/@set /" | sed -e "s/;.*$//" - > call.cmd
call call.cmd
del call.cmd
ssh-add "%HOME%\.ssh\id_rsa"
@echo on
@ui2code
ui2code / AngularJS-ES6-Test-Skeleton
Created July 12, 2016 15:15 — forked from busypeoples/AngularJS-ES6-Test-Skeleton
AngularJS - Karma, Jasmine, Browserify, Stringify - ES6 Test Setup
We couldn’t find that file to show.
@ui2code
ui2code / scopes.txt
Created January 20, 2016 09:10 — forked from iambibhas/scopes.txt
Sublime Text 2: Snippet scopes
Here is a list of scopes to use in Sublime Text 2 snippets -
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
CoffeeScript: source.coffee
@ui2code
ui2code / Onename.txt
Created January 8, 2016 10:04
Onename
Verifying that +hemersonvianna is my blockchain ID. https://onename.com/hemersonvianna
@ui2code
ui2code / mymodule.js
Created November 27, 2014 05:43
My Module
// https://github.com/hemersonvianna/javascript-patterns
// https://github.com/fhferreira/aprendendo-padroes-de-projeto-javascript
//Início de APP.ModuloComplexo
var APP = APP || {};
APP.ModuloPai = {
_nome: "Nestor",
@ui2code
ui2code / corrida.html
Created November 27, 2014 05:42
CSS3 corrida
<div class="carros"></div>
.carros{
background:#ccc;
border-top:10px double #999;
border-bottom:10px double #999;
width:300px;
height:32px;
margin:40px auto;
position:relative;