⌘ CMD+⇧ SHIFT+. reveals hidden files in Finder and Open/Save dialogs.
You can also press ⌘ CMD+⇧ SHIFT+G and type the path to the hidden folder, just like in Terminal (⇥ TAB autocompletion also works).
| See my DASH-IF presentation from October, 2014: | |
| https://s3.amazonaws.com/misc.meltymedia/dash-if-reveal/index.html#/ | |
| 1. encode multiple bitrates with keyframe alignment: | |
| ffmpeg -i ~/Movies/5D2_Portrait.MOV -s 1280x720 -c:v libx264 -b:v 1450k -bf 2 \ | |
| -g 90 -sc_threshold 0 -c:a aac -strict experimental -b:a 96k -ar 32000 out.mp4 | |
| My input was 30 fps = 3000 ms. If it were 29.97, then a GOP size of 90 frames will yield a base segment | |
| size of 3003 milliseconds. You can make the segment size some multiple of this, e.g.: 6006, 9009, 12012. |
⌘ CMD+⇧ SHIFT+. reveals hidden files in Finder and Open/Save dialogs.
You can also press ⌘ CMD+⇧ SHIFT+G and type the path to the hidden folder, just like in Terminal (⇥ TAB autocompletion also works).
docker rm -v $(docker ps -a -q -f status=exited)docker rmi $(docker images -f "dangling=true" -q)docker volume ls -qf dangling=truedocker volume rm $(docker volume ls -qf dangling=true) or alternatively docker volume ls -qf dangling=true | xargs -r docker volume rm| # change directory to project root | |
| sbt | |
| testOnly packageName.ClassNameTest -- -z "packageName.ClassNameTest.testMethodName" |
| #!/bin/bash | |
| # Licence: GPLv3, MIT, BSD, Apache or whatever you prefer; FREE to use, modify, copy, no obligations | |
| # Description: Bash Script to Start the process with NOHUP and & - in background, pretend to be a Daemon | |
| # Author: Andrew Bikadorov | |
| # Script v1.5 | |
| # For debugging purposes uncomment next line | |
| #set -x |
| @binkmail.com | |
| @bobmail.info | |
| @chammy.info | |
| @devnullmail.com | |
| @letthemeatspam.com | |
| @mailinater.com | |
| @mailinator.net | |
| @mailinator2.com | |
| @notmailinator.com | |
| @reallymymail.com |
| // | |
| // Regular Expression for URL validation | |
| // | |
| // Author: Diego Perini | |
| // Updated: 2010/12/05 | |
| // License: MIT | |
| // | |
| // Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
| // | |
| // Permission is hereby granted, free of charge, to any person |
| # Terminal output control (http://www.termsys.demon.co.uk/vtansi.htm) | |
| TC='\e[' | |
| CLR_LINE_START="${TC}1K" | |
| CLR_LINE_END="${TC}K" | |
| CLR_LINE="${TC}2K" | |
| # Hope no terminal is greater than 1k columns | |
| RESET_LINE="${CLR_LINE}${TC}1000D" |
| import sbt._ | |
| import Keys._ | |
| import play.Project._ | |
| object ApplicationBuild extends Build { | |
| val appName = "zentasks" | |
| val appVersion = "1.0-SNAPSHOT" | |
| val appDependencies = Seq( | |
| // Add your project dependencies here, |