Plataforma para descentralização da Web - Andrei Sambra
github do projeto - https://github.com/solid
Gráficos Vetoriais na Web com SVG 1.1 - Helder da Rocha
slides e downloads - http://www.argonavis.com.br/download/w3c_2015_svg.html
# Fish alias | |
function findg; find . -type f | grep $argv; end; | |
function gti; git $argv; end; | |
function gtt; git status $argv; end; | |
function gtag; git tag -l | sort -V $argv; end; | |
function ll; ls -thrAl $argv; end; | |
function mymod; sudo chmod -R ugo-rwx,u+wrX,go+rX $argv; end; | |
function www; cd /home/{$USER}/www/; end; |
function now() { | |
var d = new Date().toLocaleString().match(/(\d{1,2})\/(\d{1,2})\/(\d{1,2}).*(\d{2}):(\d{2}):(\d{2})/); | |
return { | |
text: d[0], | |
day: parseInt(d[1]), | |
month: parseInt(d[2]), | |
year: parseInt(d[3]), | |
hour: parseInt(d[4]), | |
minute: parseInt(d[5]), | |
second: parseInt(d[6]) |
html, body, div, span, object, iframe, | |
p, blockquote, pre, | |
abbr, address, cite, code, | |
del, dfn, em, img, ins, kbd, q, samp, | |
small, strong, sub, sup, var, | |
b, i, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, figcaption, figure, |
Plataforma para descentralização da Web - Andrei Sambra
github do projeto - https://github.com/solid
Gráficos Vetoriais na Web com SVG 1.1 - Helder da Rocha
slides e downloads - http://www.argonavis.com.br/download/w3c_2015_svg.html
function gitstatus { | |
local www='/var/www/html'; | |
local mydir=($PWD); | |
local notStaged='Changes not staged'; | |
local toCommit='Changes to be committed'; | |
local isAhead='is ahead'; | |
local ok='nothing to commit'; | |
cd $www; | |
printf "\n# ------------------------------ gitstatus ------------------------------ #\n"; |
function gt | |
set mydir (pwd); | |
set www '/var/www/html'; | |
set untracked 'Untracked files'; | |
set notStaged 'Changes not staged'; | |
set toCommit 'Changes to be committed'; | |
set isAhead 'is ahead'; | |
set ok 'nothing to commit'; | |
cd $www; |
{ | |
"env": { | |
"browser": true, | |
"es6": true | |
}, | |
"extends": [ | |
"eslint:recommended" | |
], | |
"parserOptions": { | |
"sourceType": "module", |