Skip to content

Instantly share code, notes, and snippets.

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

Jean Gonçalves JeanGoncalves

🏠
Working from home
View GitHub Profile
@JeanGoncalves
JeanGoncalves / Estudo Data Science
Created December 26, 2018 10:57
Lista de estudos para a área de Data Science.por Sérgio Giraldo(PagSeguro)
# Probabilidade
* [INICIANTE] KhanAcademy - https://www.khanacademy.org/math/statistics-probability
* [INTERMEDIÁRIO] Videoaulas - MIT - https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-041-probabilistic-systems-analysis-and-applied-probability-fall-2010/video-lectures/
* [INTERMEDIÁRIO] Livro - Probabilidade - Sheldon Ross - http://download.library1.org/main/210000/413502a3902ad6f4a891b7644b563ae8/Sheldon%20Ross-A%20First%20Course%20in%20Probability-Prentice%20Hall%20PTR%20%281997%29.pdf
# Estatística
* [INICIANTE] Videoaulas - https://www.youtube.com/watch?v=8X2xfwBP4uo&list=PLRUSZBUQY2FnkBLgUPAGUK-FZbK0h0VTz
* [INTERMEDIÁRIO] Livro - Statistical Inference - Casella - https://fsalamri.files.wordpress.com/2015/02/casella_berger_statistical_inference1.pdf
@JeanGoncalves
JeanGoncalves / todo-app-backend.md
Last active June 28, 2017 13:18
Create a backend application | Udemy course - React + Redux

Introdução

Criação da aplicação backend pelo curso da Udemy React + Redux

  1. Criar Repositório
  2. Via terminal, acessar a raiz do repositório e realizar os seguintes passos:
  • Digite o comando abaixo para iniciar o arquivo package.json já escrito
npm init -y
  • Digitar o comando abaixo para instalar as dependências necessárias para o projeto:
@JeanGoncalves
JeanGoncalves / README.md
Last active July 21, 2017 17:55
Angular-CLI + Heroku + Github

Angular-CLI + Heroku + Github

Passo a passo para criar uma aplicação Angular-CLI configurada para funcionar online com Heroku e Github

Ps. Para rodar corretamente, é preciso que o Node.js, NPM, Angular-CLI e Express estejam devidamente instalados e configurados

  1. Criar repositório no Github
  2. Clonar repositório no ambiente local (PC)
  3. Pelo Terminal, acessar uma pasta acima do repositório criado e rodar o seguinte comando:
ng new "nome_do_novo_repositorio"
@JeanGoncalves
JeanGoncalves / ko.utils.signatures.js
Created July 27, 2016 13:27 — forked from hyle/ko.utils.signatures.js
KnockoutJS utils (ko.utils) signatures
// knockout 2.2.1
ko.utils.arrayFilter = function (array, predicate) { /* .. */ }
ko.utils.arrayFirst = function (array, predicate, predicateOwner) { /* .. */ }
ko.utils.arrayForEach = function (array, action) { /* .. */ }
ko.utils.arrayGetDistinctValues = function (array) { /* .. */ }
[
{ "keys": ["ctrl+alt+a"], "command": "toggle_minimap" },
{
"keys": ["alt+shift+2", "alt+shift+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.96, 1.0],
"rows": [0.0, 1.0],
@JeanGoncalves
JeanGoncalves / .bashrc
Last active September 25, 2015 18:46
Bashrc personalization. Add these lines at the end of the .bashrc file.
#============================================================
# GENERAL CONFIGURATION
#============================================================
CONFIG_GIT_BRANCH_SHOW="true"
CONFIG_GIT_BRANCH_DELIMITERS[0]=""
CONFIG_GIT_BRANCH_DELIMITERS[1]=""
CONFIG_GIT_BRANCH_SHOW_ICON="true"
CONFIG_GIT_BRANCH_ICON_DELIMITERS[0]="["
Basta criar um favorito para cada um desses links abaixo e executar um de cada vez:
Acessar o Site
- javascript:(function()%7Bfunction%20callback()%7B(function(%24)%7Bvar%20jQuery%3D%24%3Bwindow.open('http%3A%2F%2Fwww.seriesonlinehd.org%2Fassistir-house-of-cards-dublado-e-legendado-online%2F'%2C'_blank')%7D)(jQuery.noConflict(true))%7Dvar%20s%3Ddocument.createElement(%22script%22)%3Bs.src%3D%22https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.1%2Fjquery.min.js%22%3Bif(s.addEventListener)%7Bs.addEventListener(%22load%22%2Ccallback%2Cfalse)%7Delse%20if(s.readyState)%7Bs.onreadystatechange%3Dcallback%7Ddocument.body.appendChild(s)%3B%7D)()
Selecionar Episódio:
- javascript:(function()%7Bfunction%20callback()%7B(function(%24)%7Bvar%20jQuery%3D%24%3Bvar%20firstDialog%20%3D%20prompt('Qual%20Epis%C3%B3dio%20quer%20assistir(n%C3%BAmero%20de%202%20d%C3%ADgitos)%3F'%2C'01')%3Bif(firstDialog%20!%3D%20null)%20%7Bvar%20secondDialog%20%3D%20prompt('0-%20Legendado%2C1-%20Dublado'%2C'1')%3Bif(secondDialog
@JeanGoncalves
JeanGoncalves / snippets
Last active August 29, 2015 14:28
Lista de snippets úteis - Sublime-text
<!-- Cria uma chamada ajax com inserção dos parâmetros a serem enviados e a url de direcionamento -->
<!-- PS.: Direcionado para arquivos .js -->
<snippet>
<content><![CDATA[
$.ajax({
type: 'GET',
data: ${1:data},
url: ${2:url},
success: function(data){
console.log(data);