Skip to content

Instantly share code, notes, and snippets.

@comentarinformal
comentarinformal / >.css
Last active July 24, 2019 11:59
Discord blockquotes -> meme arrows
blockquote { color:rgb(120, 153, 34); border-left: 0px !important; padding: 0px !important; margin: 0px 0 !important}
blockquote::before {content: ">"}
@comentarinformal
comentarinformal / Google_Analytics_ASSessment.js
Last active March 16, 2017 20:47
Google Analytics does some nice courses, with assessments and all. But their answers are not even hidden. Cheating is trivial. Come on... This is Google... You can do better.......
//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++){
@comentarinformal
comentarinformal / GObfuscatorVals.js_php
Created March 19, 2016 20:21
Grabs a list of all(?) the (obfuscated) variables/objects in Google's services and prints them all in a specified page.
//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';};
// ==UserScript==
// @name Facepunch Snowdog
// @namespace 156
// @description Makes dog-shaped snowmen.
// @include https://facepunch.com/*
// @version 1
// @grant none
// ==/UserScript==
var img = new Image();
@comentarinformal
comentarinformal / teamscrap.php
Created June 20, 2014 18:54
Steam Summer Sale Team Scrapper
<?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();