Skip to content

Instantly share code, notes, and snippets.

View MagnusIIIBR's full-sized avatar

Nathan Aguiar MagnusIIIBR

  • Geap Autogestão em Saúde
  • Distrito Federal (Brasília), Brazil
  • 02:34 (UTC -03:00)
View GitHub Profile
@MagnusIIIBR
MagnusIIIBR / list_of_articles.md
Created September 9, 2021 10:54 — forked from girliemac/conferences.md
TECHNICAL BLOGS, TUTORIALS, and DOCUMENTATIONS

Technical Blog, Tutorials, and Docs

This is a list of my articles, mostly written for employers, and some have been done in my own time.

Magazine Columns (as an Author)

Books (as a Technical Editor)

@MagnusIIIBR
MagnusIIIBR / erepublik.user.js
Created February 1, 2017 09:56 — forked from rystraum/erepublik.user.js
eRepublik market scraper
// ==UserScript==
// @name Erepublik
// @namespace erep
// @include http://economy.erepublik.com/en/*
// @version 1
// ==/UserScript==
var console = unsafeWindow.console;
var url = window.location;
CREATE SCHEMA IF NOT EXISTS `db_9d03db_tfg` DEFAULT CHARACTER SET utf8 ;
USE `db_9d03db_tfg` ;
-- -----------------------------------------------------
-- Table `db_9d03db_tfg`.`cliente_tfg`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `db_9d03db_tfg`.`cliente_tfg` (
`cod_cliente` SMALLINT(6) NOT NULL,
`tipo_cliente` CHAR(1) NOT NULL,
`nome` VARCHAR(80) NOT NULL,
@MagnusIIIBR
MagnusIIIBR / nubank.sh
Created May 31, 2016 00:46 — forked from DiegoQueiroz/nubank.sh
Baixar dados da fatura em aberto do Nubank.com.br (formato JSON)
#!/bin/bash
# Baixa os dados da fatura em aberto do Nubank
# Uso:
# ./nubank.sh <cpf> <senha>
cpf=$1
senha=$2
if [ "$cpf" == "" ]; then
read -p "Digite o CPF: " cpf
@MagnusIIIBR
MagnusIIIBR / nubank_password.sh
Created May 31, 2016 00:34 — forked from DiegoQueiroz/nubank_password.sh
Baixar a senha do cartão Nubank.com.br (formato JSON)
#!/bin/bash
# Baixa a senha do cartão Nubank
# Uso:
# ./nubank_password.sh <cpf> <senha>
cpf=$1
senha=$2
if [ "$cpf" == "" ]; then
read -p "Digite o CPF: " cpf
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema luizcar
-- -----------------------------------------------------