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
#!/usr/bin/env python2 | |
import sys | |
import os | |
if len(sys.argv) < 2: | |
print "usage: cue2mp3 file.cue [192k]" | |
exit(1) | |
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
<!-- Horizontal tiling --> | |
<keybind key="W-h"> | |
<action name="UnmaximizeFull"/> | |
<action name="MoveResizeTo"> | |
<height>50%</height> | |
</action> | |
<action name="MaximizeHorz"/> | |
<action name="MoveResizeTo"> | |
<x>0</x> | |
<y>0</y> |
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
<?php | |
/** | |
* FTP with Implicit SSL/TLS Class | |
* | |
* Simple wrapper for cURL functions to transfer an ASCII file over FTP with implicit SSL/TLS | |
* | |
* @category Class | |
* @author Max Rice | |
* @since 1.0 | |
*/ |