This file contains hidden or 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
ffmpeg -r 30 -i SS-%04d.png -vcodec libx264 -pix_fmt yuv420p test.mp4 |
This file contains hidden or 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
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>UpperEnter</name> | |
<appendix>Fn+Enter to insert enter into upper-row. This is similar to (CTRL+ENTER) in Visual Studio</appendix> | |
<identifier>private.upper_enter</identifier> | |
<autogen> | |
__KeyToKey__ KeyCode::RETURN, ModifierFlag::FN, | |
KeyCode::CURSOR_UP, KeyCode::CURSOR_RIGHT, ModifierFlag::COMMAND_L, KeyCode::RETURN, Option::NOREPEAT</autogen> | |
</item> |
This file contains hidden or 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
for i in *.ogg; do ffmpeg -i "$i" -map_metadata 0:s:0 -acodec libmp3lame -ab 256k "${i%.ogg}.mp3"; done |
This file contains hidden or 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
defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1 |
This file contains hidden or 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
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user |
This file contains hidden or 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
git clone git://github.com/farend/redmine_theme_farend_fancy.git /Applications/YOUR_REDMINE_APP_NAME/apps/redmine/htdocs/public/themes/farend_fancy |
This file contains hidden or 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
try | |
set visSet to (do shell script "defaults read com.apple.finder AppleShowAllFiles") as integer as boolean | |
on error | |
set visSet to false -- default setting | |
end try | |
do shell script "defaults write com.apple.finder AppleShowAllFiles -bool " & (not visSet) as text | |
tell application "Finder" to quit | |
delay 1 |
NewerOlder