Skip to content

Instantly share code, notes, and snippets.

View mralbu's full-sized avatar

Marcelo Albuquerque mralbu

View GitHub Profile
@mralbu
mralbu / 0-startup-overview.md
Created May 7, 2021 11:24 — forked from dideler/0-startup-overview.md
Startup Engineering notes
@mralbu
mralbu / Tutorial_Python.ipynb
Last active May 21, 2020 12:09
Tutorial_Python.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mralbu
mralbu / multi-face.ipynb
Created March 16, 2019 05:38 — forked from yang-zhang/multi-face.ipynb
Multi-task Deep Learning Experiment using fastai Pytorch
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mralbu
mralbu / server.R
Created July 29, 2016 21:59 — forked from trestletech/server.R
A Shiny app combining the use of dplyr and SQLite. The goal is to demonstrate a full-fledged, database-backed user authorization framework in Shiny.
library(shiny)
library(dplyr)
library(lubridate)
# Load libraries and functions needed to create SQLite databases.
library(RSQLite)
library(RSQLite.extfuns)
saveSQLite <- function(data, name){
path <- dplyr:::db_location(filename=paste0(name, ".sqlite"))
@mralbu
mralbu / phantomjs splinter gist
Created December 23, 2014 16:01
Phantomjs Splinter Gist
import splinter
url = 'http://todomvc.com/examples/angularjs/#/'
b = splinter.Browser('phantomjs')
b.visit(url)
newtodo_input = b.find_by_id('new-todo').first
newtodo_input.fill('splinter rocks\n')
newtodo_input.fill('phantomjs rocks\n')