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
defaults write org.videolan.vlc NSRecentDocumentsLimit 0 | |
defaults delete org.videolan.vlc.LSSharedFileList RecentDocuments | |
defaults write org.videolan.vlc.LSSharedFileList RecentDocuments -dict-add MaxAmount 0 | |
defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 0 | |
defaults delete com.apple.QuickTimePlayerX.LSSharedFileList RecentDocuments | |
defaults write com.apple.QuickTimePlayerX.LSSharedFileList RecentDocuments -dict-add MaxAmount 0 |
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
GIT_COMMITTER_DATE="`date`" git commit --amend --date "`date`" |
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
String.prototype.replaceAt=function(index, char ) { return this.substr(0, index) + char + this.substr(index+char.length); } | |
String.prototype.replace2At=function(index, char1, char2 ) { return this.substr(0, index) + char1 + char2 + this.substr(index+char1.length+char2.length); } | |
function scram29c3run() { | |
var elem = document.getElementById( 'header-29c3-scramble' ); | |
if ( elem ) { var scram = new scram29c3( elem ); scram.run(); } else | |
{ setTimeout( scram29c3run, 500 ); } | |
elem = document.getElementById( 'header-29c3-scramble2' ); | |
if ( elem ) { var scram = new scram29c3( elem ); scram.run(); } | |
} |
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
diff --git a/audio/audiostream.cpp b/audio/audiostream.cpp | |
index 1c5c435..32b38ef 100644 | |
--- a/audio/audiostream.cpp | |
+++ b/audio/audiostream.cpp | |
@@ -33,6 +33,7 @@ | |
#include "audio/decoders/quicktime.h" | |
#include "audio/decoders/raw.h" | |
#include "audio/decoders/vorbis.h" | |
+#include "audio/decoders/cdda.h" | |
NewerOlder