Skip to content

Instantly share code, notes, and snippets.

View math3vz's full-sized avatar

Matheus Moraes math3vz

  • São Paulo, Brasil
View GitHub Profile
@bishboria
bishboria / springer-free-maths-books.md
Last active August 11, 2026 10:19
Springer made a bunch of books available for free, these were the direct links
@pierophp
pierophp / get_process_order_by_cpu.sh
Last active September 28, 2016 14:03
get_process_order_by_cpu.sh
ps aux --sort pcpu
@pierophp
pierophp / get_pid_by_port.sh
Last active December 11, 2017 15:14
Pegando pid pela porta do MySQL
ps aux | grep $(sudo lsof -i tcp -nP | grep "15245 (" | head -n 1 | awk '{print $2}')
@acolyer
acolyer / service-checklist.md
Last active August 4, 2026 00:54
Internet Scale Services Checklist

Internet Scale Services Checklist

A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."

Basic tenets

  • Does the design expect failures to happen regularly and handle them gracefully?
  • Have we kept things as simple as possible?
@todgru
todgru / aws-ec2-redis-cli.md
Created June 12, 2014 23:01
AWS redis-cli on EC2
@rafaelrosafu
rafaelrosafu / canada.md
Last active November 16, 2018 13:21
Imigrando e vivendo no Canadá - um guia nada imparcial

Sass/Less Comparison

In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.

For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.

Variables