Host | Expires | Maximum file size | Other info |
---|---|---|---|
uguu.se | 24 Hours | 100 MiB | |
teknik.io | Permanent | 100 MiB | All files are encrypted |
0x0.st | 30 days, up to a year (see on site) | 64 MiB | |
HNNG | Permanent | 25 MiB | |
pomf | Permanent(depending on host) | 50 MiB (depends on host) | No official host anymore just many clones |
mixtape | Permanent | 100 MiB | Fork of pomf |
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
setInterval(function() { | |
if ($("#yt-frame").length) { | |
time = API.getTimeElapsed(); | |
if (time > 0) { | |
start = "--start=" + time | |
} else { | |
start = "" | |
} | |
var cid = API.getMedia().cid; | |
if (API.getMedia().format == 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
@-moz-document url-prefix("https://hummingbird.me") { | |
* { | |
font-family:'Comic Sans MS'; | |
} | |
h1, h2, h3 { | |
font-family:'Comic Sans MS' !important; | |
} | |
.overlay-panel{ | |
background: url("http://i.imgur.com/J6mPoju.png") !important; | |
background-size: cover !important; |
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
* { | |
font-family:'Comic Sans MS'; | |
} | |
h1, h2, h3 { | |
font-family:'Comic Sans MS' !important; | |
} | |
.overlay-panel{ | |
background: url("http://i.imgur.com/J6mPoju.png") !important; | |
background-size: cover !important; | |
} |
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
var username = prompt("Enter your hummingbird username:") | |
var followerspage = 1; | |
var followers = []; | |
var a = false; | |
var getFollowers = setInterval(function () { | |
$.get( "https://hummingbird.me/users?followers_of=" + username + "&page="+ followerspage, function(data){ | |
console.log(data); | |
if(data.users.length === 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
#!/bin/bash | |
if [ $# -lt 1 ]; then | |
echo "Syntax: $_ USER[ USER[ ...]]" >&2 | |
exit 1 | |
fi | |
exit_code=0 | |
for user in "$@"; do | |
home="/home/$user" |
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
import logging | |
import clr | |
clr.AddReference("Tobii.Interaction.Net") | |
clr.AddReference("Tobii.Interaction.Model") | |
clr.AddReference("EyeXFramework") | |
clr.AddReference("System") | |
from Tobii.Interaction import * | |
from Tobii.Interaction.Framework import * | |
from System import * |
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
using CRplc.Ics.Pi.Data; | |
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; |
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 delay(time) { | |
return new Promise(resolve => setTimeout(resolve, time)); | |
} | |
var page = 0; | |
var pageContents = []; | |
while (true){ | |
await delay(200); |