Skip to content

Instantly share code, notes, and snippets.

View Mackaber's full-sized avatar
🚂
I like trains

Mackaber (Miguel Bravo) Mackaber

🚂
I like trains
View GitHub Profile
@Mackaber
Mackaber / gist:61fe339d3da5dc02e669
Created August 15, 2014 15:40
Http bot example
# Gets the first 10 results of the query without using google API
# And then prints them as a JSON
# Usage google.rb [your search]
require "net/https"
require "uri"
require "nokogiri"
require "json"
q = URI::encode(ARGV[0])
/* THIS IS ONLY A PROOF OF CONCEPT PLEASE DON'T USE IT FOR EVIL,
I'M NOT RESPONSIBLE FOR YOUR ACTIONS, THIS IS ONLY FOR EDUCATION
PURPOSES ONLY!!!!*/
.usertext-buttons button {
font-size: 0px;
right: 0px;
top: 33px;
width: 44px;
position: absolute;
@Mackaber
Mackaber / parser.rb
Created September 23, 2016 16:55
Quick script for parsing the new_fields file
f = File.open("nuevos_campos.txt")
f.each_line do |line|
unless line == "\n"
text = line.chomp.split(",")
field_name = text[1].downcase.gsub(" ","_")
case text[2]
when "Select"
field_type = "numeric"
field_test = "`1`"
@Mackaber
Mackaber / autopaint.js
Last active April 1, 2017 20:44
Place a pixel at /r/place automatically
function postPixel(timeout) {
setTimeout(function() {
$.getJSON('https://www.reddit.com/api/me.json', function(response){
var modhash = response.data.modhash;
$.ajax({
url: "https://www.reddit.com/api/place/draw.json",
type: 'post',
data: {
x: 634,
y: 354,
def test
print "Test"
end
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
var elements = document.querySelectorAll('*[style="display:none"]');
elements.forEach(function(el){
el.style.display = "block";
})
@Mackaber
Mackaber / mexico_interest_dataset.json
Created September 5, 2018 22:49
Intereses tomados de facebook
[
{
"raw_name": "Business and industry",
"name": "Business and industry",
"path": [
"Interests"
],
"key": "Interests > Business and industry",
"parent": "Interests"
},
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Mackaber
Mackaber / fyfacebook.js
Last active March 17, 2019 16:18
Facebook Block Infinitescroll
// ==UserScript==
// @name Facebook Block Infinitescroll
// @namespace https://mackaber.me/
// @version 0.1
// @description Blocks Facebook to infinite scroll
// @author Mackaber
// @match https://m.facebook.com/
// @grant none
// ==/UserScript==