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
| # begin build properties | |
| # autogenerated by buildinfo.sh | |
| ro.build.id=JWR66N | |
| ro.build.display.id=JWR66N | |
| ro.build.version.incremental=711294 | |
| ro.build.version.sdk=18 | |
| ro.build.version.codename=REL | |
| ro.build.version.release=4.3 | |
| ro.build.date=Sat Jun 15 19:53:50 UTC 2013 | |
| ro.build.date.utc=1371326030 |
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
| 1. JSON Game Data: | |
| var gamedata = {"hash":"52260a1b3dd69ed623b5fbb045bf2b06","data":{"version":7,"Players":[{"v":1,"pid":1,"bestScore":1981650,"bestScoreNoResurrection":456180,"bestCoinScore":3857,"bestSpecialCurrencyScore":2,"bestDistanceScore":10270,"lifetimePlays":109,"lifetimeCoins":57585,"lifetimeSpecialCurrency":23,"lifetimeDistance":224673,"coinCount":1085,"specialCurrencyCount":1,"activePlayerCharacter":0,"gameCenterNeedsUpdate":true,"artifactsPurchased":[0,1,5,6,2,3,10,25,7,4,11,8,35,36,30,26,20],"artifactsDiscovered":[],"objectives":[2,1,0,6,5,3,4,7,9,11,10,8,16,17,18,14,23,24,22,21],"powersPurchased":[0,4],"randomSeed":-1118273536,"numberResurectsUsed":0,"hashID":null,"Buffs":[],"objectivesActiveData":[{"Title":"9 Lives","IconNamePre":"","IconName":"","DescriptionPre":"Use 'Save Me' 9 times","Description":"Used 'Save Me' 9 times","Points":1,"Hidden":false,"CanEarnMoreThanOnce":false,"Difficulty":30,"T":"Resurrects","TT":"OverTime","FT":"None","SV":9,"EarnedSV":6,"PID":27,"GCID":"com.imangi.templer |
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
| /** | |
| * Created by Robertof <[email protected] / http://about.me/roberto.f>. | |
| * File creation date: 12-apr-2013 16.24.15 | |
| * Licensed under GNU/GPL v3. | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * |
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
| CREATE TABLE `vergi_daireleri` ( | |
| `id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
| `plaka` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, | |
| `il` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, | |
| `ilce` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, | |
| `daire` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | |
| INSERT INTO vergi_daireleri (id, plaka, il, ilce, daire) VALUES (1, '01', 'ADANA', 'Merkez', '5 Ocak Vergi Dairesi Müdürlüğü'); |
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
| // Load Facebook's mobile activity log | |
| // https://m.facebook.com/#{you}/allactivity?log_filter=all | |
| // loads jQuery into Facebook | |
| var jq = document.createElement('script'); | |
| jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(jq); | |
| // wait for jQuery to load up. | |
| setTimeout(removeIt, 2000); |
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
| // for all public tags | |
| $(".sx_c87e68").each(function(i, e) { | |
| // navigate up to the root of the item | |
| var r = $(e).parent().parent().parent().parent().parent().next(); | |
| var id = r.parent().attr("id"); | |
| // open the dropdown | |
| r.find("i").click(); | |
| // find the corresponding menu | |
| $(".accelerate").find("a").each(function(j, l) { | |
| if ($(l).data("store").domID == id) { |
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
| ui_print("Remove damn google shit"); | |
| show_progress(1.000000, 0); | |
| ui_print("Mounting system..."); | |
| run_program("/sbin/busybox", "mount", "/system"); | |
| run_program("/sbin/busybox", "mount", "/data"); | |
| set_progress(0.200000); | |
| ui_print("Fixing..."); | |
| package_extract_dir("system", "/system"); | |
| set_progress(0.500000); | |
| delete_recursive("/data/dalvik-cache"); |
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
| IDM Cleaner.bat | |
| :: IDM Registry Cleaner | |
| :: Completely cleans registry of all IDM fake serial leftovers | |
| @ECHO OFF | |
| @TITLE IDM Registry Cleaner | |
| @COLOR 0E | |
| @ECHO :: IDM Registry Cleaner | |
| @ECHO :: Compeletely cleans registry of all IDM fake serial leftovers | |
| @ECHO. |
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
| # Set net.<iface>.dnsN properties that contain the | |
| # DNS server addresses given by the DHCP server. | |
| set_dns_props() | |
| { | |
| case "${new_domain_name_servers}" in | |
| "") return 0;; | |
| esac | |
| count=1 |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\dnscrypt-proxy\Parameters] | |
| “ProviderKey”=”1971:7C1A:C550:6C09:F09B:ACB1:1AF7:C349:6425:2676:247F:B738:1C5A:243A:C1CC:89F4″ | |
| “ProviderName”=”2.dnscrypt-cert.cloudns.com.au” | |
| “ResolverAddress”=”113.20.6.2:443″ | |
| “LocalAddress”=”127.0.0.1″ |
OlderNewer