Skip to content

Instantly share code, notes, and snippets.

@estevanmaito
estevanmaito / a-ubuntu-setup.md
Last active November 25, 2021 17:31
My Ubuntu web development and screencast configs for clean installation

Setup Ubuntu (and Ubuntu based distros)

1. Install softwares

wget -qO- https://gist.githubusercontent.com/estevanmaito/c9fcdd38aa8b7b0037759ab36f46d910/raw/861282d52e79cae6d2b146713d62f837ec5ef6ab/softwares.sh | sh

What's included?

@estevanmaito
estevanmaito / front-end-curriculum.md
Created August 17, 2016 19:53 — forked from stevekinney/front-end-curriculum.md
Front-end Curriculum Draft

Module 1

  • Semantic markup
  • HTML standards mode and quirks mode
  • HTML fundamentals
    • Classes and IDs
  • CSS fundamentals
    • Selectors
    • Resets and normalizers
    • The box model
@estevanmaito
estevanmaito / youtube-repeat.txt
Last active October 17, 2015 06:21
Add the loop functionality to YouTube
// EN: Add a new bookmark with a link with the following code:
// To use, just click on the bookmark in the video page.
// BR: Adicione um novo favorito e coloque o código abaixo no link.
// Para usar, basta clicar nesse favorito quando estiver na página do vídeo desejado.
javascript:document.getElementsByTagName('video')[0].setAttribute('loop',true);
@estevanmaito
estevanmaito / gulpfile.js
Last active September 22, 2015 22:08
Gulp plugins
var gulp = require('gulp');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var prefixer = require('gulp-autoprefixer');
var changed = require('gulp-changed');
var imagemin = require('gulp-imagemin');
var jshint = require('gulp-jshint');
var stylish = require('jshint-stylish');
var minifycss = require('gulp-minify-css');
var minifyhtml = require('gulp-minify-html');
@estevanmaito
estevanmaito / sublime.json
Last active January 13, 2017 16:27
Work in progress
{
"bold_folder_labels": true,
"font_face": "Roboto Mono",
"font_size": 15,
"highlight_line": true,
"highlight_modified_tabs": true,
"indent_guide_options":
[
"draw_normal",
"draw_active"