This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |