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
#!/bin/sh | |
kill -s HUP `pidof opentracker` |
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
application/x-bittorrent .torrent |
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 | |
/** | |
* Converts a specified structure into its bencoded form. Acceptable values | |
* include: integers, strings, arrays, and assoc. arrays. | |
* Note that associative arrays are encoded into dictionaries while | |
* non-associative arrays are encoded into lists. | |
* | |
* This was copied from http://drupal.org/project/bittorrent |
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
#include <QDateTime> | |
#include <QTime> | |
#include <QTextStream> | |
#define NUM_CALLS 1000 | |
int main(int argc, char *argv[]) { | |
QTextStream cout(stdout); | |
QTime timer; |
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
#------------------------------------------------- | |
# | |
# Project created by QtCreator 2010-11-20T18:00:03 | |
# | |
#------------------------------------------------- | |
QT += core | |
QT -= gui |
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
function handler($errno, $errstr, $errfile, $errline) { | |
throw new Exception($errstr, $errno); | |
} | |
set_error_handler('handler'); |
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
#!/bin/sh | |
LOGFILE=/data/logs/dps-seedbox1-rsync/$(date "+%Y-%m").log | |
EXCLUDES_COMMON="--exclude lost+found --exclude .ssh --exclude .bash_history" | |
EXCLUDES_MORE="--exclude other --exclude BASE --exclude applications" | |
# Append a header first, so we know when this script was run. | |
date "+%n%n=====%nSyncing DriverPacks to seedbox1 at %Y-%m-%d %H:%M:%S" > $LOGFILE | |
# Sync the DriverPacks themselves to the seedbox' 'data' folder. However, we |
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
I was (finally!) creating the final release for one my modules (the CDN module). I had typed quite a bit in the release notes field. So I wanted to verify that those release notes looked ok, by clicking the Preview button. Unfortunately, that's where things went wrong. | |
It seems Drupal.org created a *completely* messed up project release node: no version number in the node title (just 'cdn'), no version number in the file name (just 'cdn-.tar.gz'), linked to the correct CVS tag (which I can also not select again when creating a new project release), with a (seemingly) valid tarball, but no release notes. See it for yourself at http://drupal.org/node/985576. | |
Screenshots attached (fortunately, Google Chrome has an excellent backward cache, which included the form in its full glory). | |
So: | |
1) could you please delete that messed up project release node or edit it to have version number 2.0 and the following release notes: | |
<code> | |
The goal for 2.0 is simple: make the CDN module kick ass. This will be done in three |
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 .gitignore .gitignore | |
index ad522c6..2a0e079 100644 | |
--- .gitignore | |
+++ .gitignore | |
@@ -19,6 +19,9 @@ build/ | |
# Untracked plugins | |
plugins/* | |
+!plugins/MantisCoreFormatting | |
+!plugins/MantisGraph |
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
--( ~/Work/redbot (master) )-- git remote add upstream https://github.com/mnot/redbot.git | |
--( ~/Work/redbot (master) )-- git fetch upstream | |
From https://github.com/mnot/redbot | |
* [new branch] gh-pages -> upstream/gh-pages | |
* [new branch] master -> upstream/master | |
--( ~/Work/redbot (master) )-- git fetch upstream master:har-postData | |
From https://github.com/mnot/redbot | |
* [new branch] master -> har-postData | |
--( ~/Work/redbot (master) )-- git checkout har-postData | |
Switched to branch 'har-postData' |