Skip to content

Instantly share code, notes, and snippets.

View satirama's full-sized avatar

Angelica Miranda satirama

View GitHub Profile
@satirama
satirama / contrato.md
Last active March 3, 2020 22:12
This is the spanish translation for the awesome Contract Killer https://gist.github.com/malarkey/4031110

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense


Entre [nombre de la compañía]

@satirama
satirama / setup.md
Last active January 28, 2020 00:04 — forked from jorandradefig/gist:76f77e5c3010183eb50ca3bb7c70143c
macOS Setup Guide
Evernote
Firefox Developer Edition
Flutter
Google Chrome
Fabric
Genymotion
TeamViewer
Telegram Desktop
Visual Studio Code
@satirama
satirama / index.html
Last active May 29, 2020 23:58
Vertical scatter-ish chart
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vertical Plot</title>
<meta name="author" content="Angelica Miranda - https://satirama.github.io" />
<style>
@satirama
satirama / graphcoloring.js
Created May 30, 2020 03:13
Chromatic number - Graph coloring
class GraphNode {
constructor(label) {
this.label = label;
this.neighbors = new Set();
this.color = null;
}
}
/**
* Function to apply legal coloring to graph