Skip to content

Instantly share code, notes, and snippets.

@namessanti
namessanti / philippines.md
Last active September 16, 2015 19:06
EDU: Data Journalism PH

CartoDB Workshop: Philippines Data Journalists

About Santiago: santiago@cartodb.com @namessanti

maps

Intro To CartoDB

@PurpleBooth
PurpleBooth / README-Template.md
Last active July 3, 2024 16:25
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@oneohthree
oneohthree / quick-slugify.sh
Last active February 22, 2024 01:53
Quick bash slugify
echo "$STRING" | iconv -t ascii//TRANSLIT | sed -r s/[^a-zA-Z0-9]+/-/g | sed -r s/^-+\|-+$//g | tr A-Z a-z