This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $ npm -g install phantomjs | |
# $ pip install selenium beautifulsoup4 | |
# $ python | |
>>> from selenium import webdriver | |
>>> PATH = 'node_modules/phantomjs/lib/phantom/bin/phantomjs' | |
>>> browser = webdriver.PhantomJS(executable_path=PATH) | |
>>> # browser = webdriver.Chrome() | |
>>> browser.get('http://foo.bar') | |
>>> browser.execute_script("return ga.create().b.data.values[':trackingId']") | |
UA-64573082-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/sethvincent/javascripting | |
https://github.com/pselle/JSforeveryone | |
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide | |
http://nodeschool.io/ | |
https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q | |
https://medium.com/@brunovincius/novas-features-do-es2016-es7-ddca30ddc73a#.tb5lwuf4p | |
http://todomvc.com/ | |
https://github.com/timoxley/functional-javascript-workshop | |
https://kangax.github.io/compat-table/es6/ | |
http://ccoenraets.github.io/es6-tutorial/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrapy | |
https://www.facebook.com/groups/python.brasil | |
https://gist.github.com/fernandojunior/2572a4ba93ba729a5db14a595cd02301 | |
https://github.com/hzsweers/FB_Mod_Bot | |
http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction | |
http://scikit-learn.org/stable/auto_examples/text/document_clustering.html | |
http://www.r-bloggers.com/clustering-search-keywords-using-k-means-clustering/ | |
https://github.com/ujjwalkarn/DataSciencePython#text-mining-in-python | |
https://github.com/ujjwalkarn/DataSciencePython | |
https://www.facebook.com/groups/python.brasil/search/?query |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Groups (clusters) similar lines together from a text file | |
using k-means clustering algorithm. | |
Also does some simple cleaning (such as removing white space and replacing numbers with (N)). | |
Example: | |
python cluster_lines.py --clusters 20 invalid_dates.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/jekyll/jekyll | |
https://github.com/lektor/lektor/stargazers | |
https://github.com/hexojs/hexo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.obomprogramador.com/2015/02/nova-video-palestra-tudo-o-que-voce.html | |
http://tableless.com.br/anotacoes-da-palestra-jaydson-gomes-16elw/ | |
http://nodeschool.io/index.html#workshoppers | |
https://www.infoq.com/br/presentations/javascript-funcional | |
https://www.youtube.com/channel/UCKdo1RaF8gzfhvkOdZv_ojg | |
backend, frontend, database, functional programming, ide, desktop, | |
inglês, git/github, atom.io, node.js express, mondodb firebase, angular react vue, bootstrap, electron, prelude, npm bower, ionic phonegap | |
http://www.slideshare.net/Hugeinc/desenvolvimento-clientside-2016 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/klutometis/roxygen | |
https://github.com/gaborcsardi/maxygen | |
https://github.com/klutometis/roxygen/tree/444f5e39362ea956fa2dbbf6260cb1d5eede0828 | |
http://stat545.com/packages00_index.html | |
https://hilaryparker.com/2014/04/29/writing-an-r-package-from-scratch/ | |
http://stackoverflow.com/questions/9656016/how-to-install-development-version-of-r-packages-github-repository |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`<-` = function (body, params) { | |
vars = all.vars(substitute(params)) | |
formals = as.pairlist(setNames(replicate(length(vars), quote(expr = )), vars)) | |
eval.parent(call('function', formals, substitute(body))) | |
} | |
sapply(1 : 4, x -> 2 * x) | |
# 2 4 6 8 | |
mapply(x ~ y -> x + y, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.unixstickers.com/ | |
http://www.pythongear.com/ | |
https://github.myshopify.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.youtube.com/playlist?list=PL0zVEGEvSaeEd9hlmCXrk5yUyqUag-n84 | |
http://webschool.io/jsfuncional/ | |
https://github.com/Webschool-io/workshop-js-funcional-free | |
http://www.preludels.com/ | |
https://www.youtube.com/playlist?list=PL77JVjKTJT2iAlBJX3buyljqzfoR9nV_R | |
https://www.infoq.com/br/presentations/programacao-funcional-por-que-importa | |
https://github.com/evhub/coconut | |
http://stats.stackexchange.com/questions/130/clojure-versus-r-advantages-and-disadvantages-for-data-analysis | |
http://files.meetup.com/1406240/From%20Lisp%20to%20Clojure-Incanter%20and%20R.pdf |