Please refer to this blogpost to get an overview.
Replace *-INSTANCE
with one of the public instances listed in the scrapers section. Replace CAPITALIZED
words with their corresponding identifiers on the website.
// Original script: https://gist.github.com/leodevbro/2987e8874a18b2086ea6cc1aa3c494e8 | |
// v2.5 | |
// Google Apps Script is a coding language based on JavaScript. | |
// This Apps Script code helps us to sort addresses by most threads. | |
// A thread is a group of messages, as a conversation. | |
const modes = { | |
inbox: "inbox", // to analyze threads in the "Inbox" folder | |
outbox: "outbox", // to analyze threads in the "Sent" folder |
Please refer to this blogpost to get an overview.
Replace *-INSTANCE
with one of the public instances listed in the scrapers section. Replace CAPITALIZED
words with their corresponding identifiers on the website.
0815.ru | |
0wnd.net | |
0wnd.org | |
10minutemail.co.za | |
10minutemail.com | |
123-m.com | |
1fsdfdsfsdf.tk | |
1pad.de | |
20minutemail.com | |
21cn.com |
How to install windows on digital ocean, | |
use this tutorial : | |
https://milankragujevic.com/how-to-install-windows-10-on-digitalocean | |
or if you want to create own image : | |
https://glitchwitch.io/blog/2018-09/windows-10-on-digitalocean/ | |
this image .gz mirror got from whatuptime : | |
try first if it working>> | |
[Microsoft Windows Server 2012] |
javascript:void(function(){eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('N 2V=1a.6g("ao")[0].2p;N 1n=1a.fM.5p(/fJ=(\\d+)/)[1];N 2L="fI-fH";N 3M=8;N 2P="fD";N 3h="fC";fB.v={1n:1n,2x:[],2a:[],2G:[],1m:[],1Y:[],ad:R(a){N b="",i,3L;2E(i=0;i<32;i++){3L=1x.3L()*16|0;C(i==8||i==12||i==16||i==20){b+="-"}b+=(i==12?4:(i==16?(3L&3|8):3L)).a9(16)}C(!a){b=b.1Q(/-/gi,"")}1v b},a3:R(d,e){N a=2B 2v(),b=[a.fi(),a.6i(),a.6j(),a.6m(),a.6n(),a.6o(),a.f9()];C(e){b=v.4A(b)}N c=b.f8("");C(d){c=c+d}1v c},6q:R(a){1v a[1x.1P(1x.3L()*a.1s)]},4A:R(a){N b=a.1s,c,d;7F(0!==b){d=1x.1P(1x.3L()*b);b-=1;c=a[b];a[b]=a[d];a[d]=c}1v a},9U:R(h,n){N a=h.1s%n,b=a,c=1x.1P(h.1s/n),d=[];2E(N e=0;e<h.1s;e+=c){N f=c+e,g=2j;C(a!==0&&b){f++;b--;g=2b}d.4i(h.6t(e,f));C(g){e++}}1v d}, |
#!/bin/bash | |
# Script to copy files based on filetypes, eg. from lost+found | |
# | |
# Usage: | |
# Edit SOURCE and TARGET folders below, then | |
# ./find.sh filetype | |
# | |
# where to copy from (SOURCE) and copy to (TARGET). TARGET will be created if non existing | |
SOURCE="/home/rasarab/lost+found" |
<?php | |
class rasarab{ | |
private $key; | |
private $userId; | |
private $dir=false; | |
private $rewrite; | |
function __construct($userId, $key, $dir, $rewrite){ | |
$this->key=$key; | |
$this->userId=$userId; | |
$this->dir=$dir; |