Skip to content

Instantly share code, notes, and snippets.

@filipelinhares
filipelinhares / pandas.md
Created August 30, 2016 17:08
Começando com pandas

Começando com pandas

Dataframes e Series.

pandas é uma biblioteca Python para análise de dados, fornecendo funcionalidades que facilitam a manipulação de estrutura de dados.

pandas adiciona dois novos tipos de estrutura de dados para o Python: Series e Dataframes , ambos feitos em cima do NunPy .

import pandas as pd
import numpy as np
@filipelinhares
filipelinhares / analysis.md
Last active August 8, 2016 18:08
99aulas
@filipelinhares
filipelinhares / lscss.md
Last active August 28, 2016 18:51
lscss

lscss

Structure

css/
├── base/
|   ├── typography.css
|   └── reset.css
├── modules/
| ├── button.css
@filipelinhares
filipelinhares / test.html
Created July 1, 2016 17:10
HTML test file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML Test</title>
<link rel="stylesheet" href="YOUR-STYLESHEET.css">
</head>
<body>
<h1>Heading 1</h1>
@filipelinhares
filipelinhares / wombat.vim
Created May 19, 2016 05:29
Custom wombat theme
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "wombat"
@filipelinhares
filipelinhares / curriculum.md
Last active January 31, 2018 21:26
Filipe's curriculum
@filipelinhares
filipelinhares / .stylelintrc
Created May 7, 2016 20:53
Stylelint config
{
"rules": {
"at-rule-empty-line-before": [ "always", {
except: ["blockless-group"],
ignore: ["after-comment"],
} ],
"block-closing-brace-newline-after": "always",
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"block-no-empty": true,
set fish_color_user ffd787
set fish_color_host 0087d7
function fish_prompt --description 'Write out the prompt'
set -l last_status $status
# Just calculate these once, to save a few cycles when displaying the prompt
if not set -q __fish_prompt_hostname
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)

Keybase proof

I hereby claim:

  • I am filipelinhares on github.
  • I am filipelinhares (https://keybase.io/filipelinhares) on keybase.
  • I have a public key ASCRKU5sEscfJzaOmdqvP_3rJQf9UxAkN3VZv1tbDRwHrgo

To claim this, I am signing this object:

@filipelinhares
filipelinhares / is-overflowed.js
Created February 10, 2016 18:21
Is element overflowing?
function isOverflowed(element){
return element.scrollHeight > element.clientHeight || element.scrollWidth > element.clientWidth;
}