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
| you need to update your rtmp. | |
| I stole this code from LAGMonkey | |
| I highly recomend that you login via SSH. | |
| first remove any previous packages | |
| Code: | |
| sudo apt-get purge rtmpdump |
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
| You can now sync from svn -> git, using the following commands: | |
| git svn fetch | |
| git rebase trunk | |
| And to sync from git -> svn, use: | |
| git svn dcommit |
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
| var get_pass = function(callback) { | |
| console.info("Enter password:") | |
| var stdin = process.openStdin() | |
| stdin.setEncoding('utf8') | |
| var tty = require('tty') | |
| tty.setRawMode(true) | |
| var password = "" | |
| stdin.on("data", function (c) { |
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
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the ruby version | |
| # * the branch/status of the current git repository | |
| # * the branch of the current subversion repository | |
| # * the return value of the previous command | |
| # |
NewerOlder