Skip to content

Instantly share code, notes, and snippets.

View fabiochelly's full-sized avatar

Fabio fabiochelly

View GitHub Profile
# Find a file
`find . -name <filename>` # Find all files in current dir and subdirs
`find . -type d -name <filename>` # Find all files matching this name
`find . -mtime -1 -name "*.php"` # Find all PHP files modified in the last 24h
`find . -mtime -2 -name "*.php"` # Find all PHP files modified in the last 48h
`find . -size +500000k` # Find all files with size > 500MB
`grep --include=\*.php -rnw . -e "b374k"` # Find all PHP files containing "b374k"
@fabiochelly
fabiochelly / app.js
Last active December 15, 2015 19:29 — forked from pec1985/app.js
var DoubleSlider = require('ti.doubleslider/widget');
var win = Ti.UI.createWindow();
var doubleSlider = new DoubleSlider({
top: 50,
width: 300,
minValue: 0,
maxValue: 100,
startValue: 30,