Skip to content

Instantly share code, notes, and snippets.

@rogeliozarate
rogeliozarate / invoicedummy.yaml
Created February 15, 2012 20:21
YAML for invoice
---
invoice : 00001
date_gen : 2012-02-14T13:07:01
date_pub :
date_sent:
date_paid:
customer:
name : Nombre
contact: Contacto
address:
@rogeliozarate
rogeliozarate / gist:804884
Created January 31, 2011 21:44
LS options to list a directory ordered by modified date
# bash
# unix, os x, ubuntu
# List directory ordered by modified date
ls -ltr
# -l long listing giving details about files and directories
# -t sort by time modified instead of name
# -r, reverse order while sorting