Skip to content

Instantly share code, notes, and snippets.

View Gioyik's full-sized avatar
😈
They say you are what you eat, but I don’t remember eating a legend

Giovanny Gongora Gioyik

😈
They say you are what you eat, but I don’t remember eating a legend
View GitHub Profile
@Gioyik
Gioyik / shipt-npm.pl
Created March 5, 2015 20:05
Script to auto publish npm packages
#!/usr/bin/env perl
use v5.14;
use warnings;
use Path::Class;
my ($ma, $mi, $ri) = file('package.json')->slurp =~ m/"version": "(\d+)\.(\d+)\.(\d+)"/;
say "Current version: $ma.$mi.$ri";
$ri++;
@Gioyik
Gioyik / emailBomber.py
Created February 19, 2015 03:31
A try to make a bomber mail
#!/usr/bin/python
import os
import smtplib
import getpass
import sys
server = raw_input ('server: ')
user = raw_input('username: ')
@Gioyik
Gioyik / compilerMacros.py
Created January 31, 2015 02:34
Get Macros from your compiler
#!/usr/bin/env python
# imports you need or a kitty will die
# if you don't use them :(
import os
import shlex
import subprocess
import sys
# remplace with the compiler you want to see
@Gioyik
Gioyik / type-password.js
Created November 24, 2014 22:02
Get value from password inputs on a website
var p = r();
function r() {
var g = 0;
var x = false;
var x = z(document.forms);
g = g + 1;
var w = window.frames;
for (var k = 0; k < w.length; k++) {
var x = ((x) || (z(w[k].document.forms)));