>net user Administrator | findstr "active"
Account active Yes
@echo off | |
:loop | |
echo \ | |
timeout 1 > nul | |
cls | |
echo ^| | |
timeout 1 > nul | |
cls |
:: Run with full administrator rights | |
netsh wlan export profile folder=. key=clear |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy | |
import csv | |
def get_all_tweets(screen_name): | |
consumer_key = "" | |
consumer_secret = "" |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy #https://github.com/tweepy/tweepy | |
import csv | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" | |
access_key = "" |
import os | |
import re | |
import time | |
from collections import namedtuple | |
import codecs | |
import tweepy | |
import json | |
from datetime import datetime | |
from requests.exceptions import Timeout, ConnectionError | |
from requests.packages.urllib3.exceptions import ReadTimeoutError, ProtocolError |
telegram-scripts.js
into JS consoleshowContacts()
or showDialogs()
to get the list of contacts with ids or the 20 last conversations in the same order of the client viewsaveChat(userId)
where userId
is the id from step 3 (inside the [] )Process can take a while, check console for progress. Occasionall FLOOD_WAIT
errors are expected. Once done, browser will download the JSON file.
Parental Level,Game Title,File Offset,PlayStation PRO Support,Current Version,Instant Download,Package Size,PlayStation VR,Piece,SHA1 Hash,Title ID,Play Together | |
3,THE PLAYROOM,0,No,1.07,http://gs2.ww.prod.dl.playstation.net/gs2/ppkgo/prod/CUSA00001_00/9/f_ef965b581d35637dabc96366f29f1f0ece58c8fa9158b0eb7de9407ae72272e8/f/IP9100-CUSA00001_00-PLAYROOM00000000-A0107-V0100.pkg,34.9MB,No,0,22774b6c655f47dffce0eb7e15c5e865dce6a849,CUSA00001_00, | |
9,KILLZONE SHADOW FALL,0,No,1.81,http://gs2.ww.prod.dl.playstation.net/gs2/ppkgo/prod/CUSA00002_00/58/f_0882efa770fbf5b9a03b4decce248e8f07fd9585cbe43c44791799952c62fd14/f/EP9000-CUSA00002_00-KZ4RELEASE000041-A0181-V0100.pkg,2.9GB,No,0,552b7127dac3ee8ab5ce2ae051f6436c3ec605fc,CUSA00002_00, | |
7,inFAMOUS Second Son,0,Yes,1.07,http://gs2.ww.prod.dl.playstation.net/gs2/ppkgo/prod/CUSA00004_00/28/f_2881c3732328a643917aeb4c1e73b916c1d6baa7ea09e2e81f33d5f139ea9449/f/EP9000-CUSA00004_00-SECONDSONSHIP000-A0107-V0100.pkg,3.7GB,No,0,0538bdff843286013877ab92e5dc936b1407ddcb,CUSA00004_00, |
// ==UserScript== | |
// @name DlPSgame.org Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Reflow the website header after adblock hides the ads! | |
// @author Hosamn | |
// @match *://*.dlpsgame.org/* | |
// @exclude https://dlpsgame.org/home/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=playstation.com | |
// ==/UserScript== |