Skip to content

Instantly share code, notes, and snippets.

View giwiro's full-sized avatar
🌱
Try. Fail. Learn. Repeat.

Gi Wah giwiro

🌱
Try. Fail. Learn. Repeat.
  • CTO at @qempo
View GitHub Profile
@giwiro
giwiro / nvm_link
Last active August 5, 2018 08:46 — forked from MeLlamoPablo/nvmlink
Creates a symlink to /usr/bin/node after using nvm
@giwiro
giwiro / find_places.py
Created September 14, 2017 06:08
Python3 program to find near places to eat between 2 points using google maps
import math
from googlemaps import Client
from pprint import pprint
KEY = "xxxxxxxxxxxxxxxxxxxxxx"
FIRST_POINT = (-12.0923872,-77.0584926)
SECOND_POINT = (-12.09836024,-77.025732065)
# meters
RADIUS = 500
@giwiro
giwiro / apk-embed-payload.rb
Created October 24, 2016 00:21 — forked from skulltech/apk-embed-payload.rb
POC for injecting Metasploit payloads on arbitrary APKs
#!/usr/bin/env ruby
# apk_backdoor.rb
# This script is a POC for injecting metasploit payloads on
# arbitrary APKs.
# Authored by timwr, Jack64
#
require 'nokogiri'
require 'fileutils'