Skip to content

Instantly share code, notes, and snippets.

View devmanfredi's full-sized avatar

Heuler Felipe Ramos Manfredi devmanfredi

View GitHub Profile
@ajunior
ajunior / db.sql
Last active August 30, 2019 01:43
Script SQL para o desafio da quinta semana da Aceleração Java da Codenation.
create table users (
id bigserial not null,
full_name varchar(100) not null,
email varchar(100) not null unique,
nickname varchar(50) not null,
password varchar(255) not null,
created_at timestamp not null default now(),
primary key (id)
);
@ellerbrock
ellerbrock / Free O'Reilly Books.md
Last active October 15, 2025 19:19 — forked from augbog/Free O'Reilly Books.md
Free O'Reilly Books

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.