Skip to content

Instantly share code, notes, and snippets.

View neomatrixcode's full-sized avatar
🏠
Working from home

Josué Acevedo (Neomatrix) neomatrixcode

🏠
Working from home
View GitHub Profile
version: '3'
services:
ms:
restart: always
image: metasploitframework/metasploit-framework:latest
environment:
DATABASE_URL: postgres://postgres@db:5432/msf?pool=200&timeout=5
links:
- db
ports:
<font color="#8AE234">www.twitter.com</font>
<font color="#8AE234">0.twitter.com</font>
<font color="#8AE234">2010.twitter.com</font>
<font color="#8AE234">2011.twitter.com</font>
<font color="#8AE234">2012.twitter.com</font>
<font color="#8AE234">2013.twitter.com</font>
<font color="#8AE234">2014.twitter.com</font>
<font color="#8AE234">2015.twitter.com</font>
<font color="#8AE234">6nations.twitter.com</font>
[-] Total Unique Subdomains Found: 4889
na.ads.yahoo.com
ed.answers.yahoo.com
ca.answers.yahoo.com
au.news.yahoo.com
lo0.tor88-119-pdb.ne1.yahoo.com
advertising.yahoo.com
lo0.tor183-350-pdb.ne1.yahoo.com
hk.7-eleven.yahoo.com
scsd.msg.yahoo.com
www.google.com
alt.aspmx.1.google.com
client.1.google.com
clients.1.google.com
gmail-smtp-mas.1.google.com
misc-anycast.1.google.com
104-cache-blicnet.google.com
119-cache-blicnet.google.com
216-239-45-10.google.com
31.google.com
123contactform
abacus
acquia
activecampaign
adobe
aerofs
airbnb
amazon
ancile
appcelerator
Computer Systems Engineer, with more than 8 years of professional experience. Member of the IEEE Computer Society and the ACM. He has made contributions to free software in addition to being interested in emerging areas of technology.
He learned to program at 16 in programming language C, an event that caused technology to become his biggest hobby. He currently works as an independent software developer and as a university teacher.
Freelancer in software development projects such as web frontend, web backend plus infrastructure in multiple languages ​​and technologies such as codeigniter, Ruby on rails, Django and laravel.
Knowledge in C, D, julia, java, assembler, c ++, c, javascript, perl, python, ruby, r, go, elixir, c, clojure, css, tex, matlab, swift, kotlin.
Database Managers: PostgreSQL, MySQL, MariaDB, MongoDB, RethinkDB
Others: Docker, Kubernetes, Quantum Computing, Blockchain, Graphql, GIT, Vim, React js, Vue js, Ruy on rails, Flask, Artificial Intelligence, Parallel and Distributed Computing, Re
// Wifi Credentials
const WIFI_NAME = "YOURSSID";
const WIFI_PASS = "YOURPASS";
// Your location latitude and longitude
const lat = 'YOURLAT';
const lon = 'YOURLON';
// Required libs
@neomatrixcode
neomatrixcode / .colores_ansi
Created August 3, 2018 19:00 — forked from vratiu/.bash_aliases
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@neomatrixcode
neomatrixcode / migrator.sh
Created May 30, 2018 06:34 — forked from vigneshwaranr/migrator.sh
Script to convert SQLITE dumps into PostgreSQL compatible dumps
#! /bin/sh
usage_error () {
echo 'Usage: sh migrator.sh <path to sqlite_to_postgres.py> <path to sqlite db file> <an empty dir to output dump files>'
echo
echo 'Example:'
echo '>sh migrator.sh sqlite_to_postgres.py ~/reviewboard.db /tmp/dumps'
echo
echo 'Tested on:'
echo 'Python 2.7.3'