Skip to content

Instantly share code, notes, and snippets.

View aveao's full-sized avatar
🤔
delete this feature

ave aveao

🤔
delete this feature
View GitHub Profile
@aveao
aveao / GAME_MASTER_v0_1.protobuf
Created July 17, 2016 02:39 — forked from anonymous/GAME_MASTER_v0_1.protobuf
Pokemon Go decoded GAME_MASTER protobuf file v0.1
Result: 1
Items {
TemplateId: "BADGE_BATTLE_ATTACK_WON"
Badge {
BadgeType: BADGE_BATTLE_ATTACK_WON
BadgeRanks: 4
Targets: "\nd\350\007"
}
}
Items {
@aveao
aveao / OtherAccounts.md
Last active September 12, 2017 17:14
Other Accounts
@aveao
aveao / steamidiot.txt
Last active August 29, 2016 13:15
Aim your scams properly.
http://steamcommunity.com/profiles/76561198093419085/
Never tell your password to anyone.
Monday, August 29, 2016
2:58 PM - ardaozkal: Uhmm, hi?
2:58 PM - SiliconnH0use [JWKTEAM]: Wazzup bro
2:58 PM - ardaozkal: fine, you?
2:58 PM - SiliconnH0use [JWKTEAM]: fine thanks
2:58 PM - SiliconnH0use [JWKTEAM]: I search partner
2:58 PM - SiliconnH0use [JWKTEAM]: for roulette
@aveao
aveao / dmca.txt
Created September 2, 2016 11:07
GameJolt DMCA Extractor: 2016-09-02-nintendo.md
the legend of zelda shattered worlds
mario editor
super mario fatal error
flappy mario
mario 4
sonic vs mario
zelda ii thanksgiving editon
bowser gets clever
normal super mario bros
mario challange
@aveao
aveao / VacBanCheck.cs
Last active September 3, 2016 08:42
Simple VAC Ban checker. You can give custom url (ardaozkal) or steamid64 (76561198034299068) to it and it'll return true if the user is vac banned (or if the account is unable to be found).
static bool IsVacBanned(string steamID)
{
var wc = new WebClient();
string ProfileLink = "http://steamcommunity.com/";
ProfileLink += (steamID.StartsWith("765")) ? "profiles/" : "id/";
ProfileLink += steamID + "?xml=1";
var ProfileData = wc.DownloadString(ProfileLink);
return !ProfileData.Contains("<vacBanned>0</vacBanned>");
}
@aveao
aveao / chathide.css
Last active December 17, 2016 19:48
UserStyles I use
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("chat.stackexchange.com"), domain("chat.stackoverflow.com"), domain("chat.meta.stackexchange.com")
{
#roomdesc, #room-tags {display: none !important;}
}
@aveao
aveao / toplay.md
Created September 16, 2016 19:15
The list of games I plan to play.
@aveao
aveao / app.js
Created January 17, 2017 19:20
geliyoo app.js
/*
-----------------------------------------------------------------------
Geliyoo
-----------------------------------------------------------------------
*/
$(document).ready(function(){
app_name = "Arama Motoru Geliyoo"; //
@aveao
aveao / darkuserstyles.md
Last active April 15, 2017 19:44
Dark Userstyles Collection

Disclosure

I do not own-ish any of the skins here. The ones hosted on my github gists are modified by me, NOT developed by me. All credits go to original developers.

Supported sites:

If you want anything added comment it down

  • userstyles editor
  • Global Dark Scrollbar
  • Hacker News -- news.ycombinator.com
  • Amazon.com
  • Stackexchange/stackoverflow chat -- chat.stackexchange.com -- chat.stackoverflow.com
@aveao
aveao / calibreupdater.sh
Created March 6, 2017 04:13
Calibre linux update script
#!/bin/sh
# Really basic script to update calibre. Set as alias in .bashrc or .zshrc (or whatever) to make updating calibre more than easy!
sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.py | sudo python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main()"