https://sublime.wbond.net/installation#st3
- Source Code Pro -
sourcecodepro.sh
- Hack -
hack.sh
const reduce = (reducer, initial, [head, ...tail]) => | |
head // condition to go or stop | |
? reduce(reducer, reducer(initial, head), tail) // recursion | |
: initial // stop | |
const map = (mapper, [head, ...tail]) => | |
head // condition to go or stop | |
? [ mapper(head), ...map(mapper, tail) ] //recursion | |
: [] // stop |
NEWTON CALEGARI - A semântica na Web e os dados estruturados no Google | |
https://speakerdeck.com/newtoncalegari/a-semantica-na-web-e-os-dados-estruturados-no-google | |
JEAN CARLO EMER - Como encarar o desenvolvimento front-end | |
http://www.slideshare.net/jeancarloemer/como-encarar-o-desenvolvimento-frontend | |
WILLIAN JUSTEN - Make them move! Playing with Greensock | |
https://willianjusten.com.br/front-in-bh-16/ | |
IGOR RIBEIRO - Uma visão geral sobre banco de dados em tempo real |
https://sublime.wbond.net/installation#st3
sourcecodepro.sh
hack.sh
UPDATE wp_options SET option_value = replace(option_value, 'http://url-antiga.com.br', 'http://url-nova.com.br') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://url-antiga.com.br','http://url-nova.com.br'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://url-antiga.com.br', 'http://url-nova.com.br'); |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers