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
{ | |
"name": "flarum/flarum", | |
"description": "Delightfully simple forum software.", | |
"type": "project", | |
"keywords": ["forum", "discussion"], | |
"homepage": "http://flarum.org", | |
"license": "MIT", | |
"authors": [ | |
{ | |
"name": "Toby Zerner", |
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
#!/usr/bin/env bash | |
$CLIENTID="YOUR_CLIENT_ID" | |
function reload_tor() { | |
echo "Reloading Tor" | |
service tor reload | |
sleep $[ ( $RANDOM % 5 ) + 20 ] | |
} |
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
<?php | |
if (count($bonus_users)) { | |
foreach ($bonus_users as $user_id => $bonus_user) { | |
$torrents = count($bonus_user['torrents']); | |
if ($torrents < 10) { | |
$bonus = max(0.1, (0.05 * $torrents)); | |
} else { | |
$bonus = min(2, 1 + (0.01 * $torrents)); | |
} | |
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
<table class="table table-striped table-bordered" id="form_fields_data"> | |
<thead> | |
<tr> | |
<th>Key</th> | |
<th>Value</th> | |
<th> </th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |