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
blockquote { color:rgb(120, 153, 34); border-left: 0px !important; padding: 0px !important; margin: 0px 0 !important} | |
blockquote::before {content: ">"} |
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
//INSTRUCTIONS: | |
//--Go to https://ssl.gstatic.com/analytics/20170315/academy/static/course06/assets/js/assessment-Assessment_1.min.js | |
//---Or https://ssl.gstatic.com/analytics/20170315/academy/static/course06/assets/js/assessment-Assessment_2.min.js | |
//---Or https://ssl.gstatic.com/analytics/20170315/academy/static/course06/assets/js/assessment-Assessment_3.min.js | |
//---Or https://ssl.gstatic.com/analytics/20170315/academy/static/course06/assets/js/assessment-Assessment_4.min.js | |
//Copy and paste the page's content inside your favorite Browser Console | |
//After that, paste the code below | |
//ggwp | |
for(i=0;i<a.questions.length;i++){ |
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
//CODE GENERATED WITH (php): | |
$a = Array("A","E","F","G","H","I","J","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"); | |
$d = Array(); | |
for($b=0;$b<count($a);$b++){ | |
for($c=0;$c<count($a);$c++){ | |
array_push($d,$a[$b].$a[$c]); | |
} | |
} | |
print " | |
window.onbeforeunload = function(){return 'nop';}; |
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
// ==UserScript== | |
// @name Facepunch Snowdog | |
// @namespace 156 | |
// @description Makes dog-shaped snowmen. | |
// @include https://facepunch.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var img = new Image(); |
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
<?php | |
$url = ''; | |
//Get his steam community ID any way you want. Just be sure that $url points to a steam profile. | |
// is cURL installed yet? | |
if (!function_exists('curl_init')){ | |
$scrap_web = @file_get_contents($url); | |
} else { | |
$ch = curl_init(); |