Skip to content

Instantly share code, notes, and snippets.

View OmegaMaxy's full-sized avatar
💻
Becoming a coding legend..

Dazzy OmegaMaxy

💻
Becoming a coding legend..
View GitHub Profile
@ThzeTerminator
ThzeTerminator / nitty.js
Last active September 28, 2020 06:15
Nitty.js | turn Alerts from UIKit into notifications.
try{
$(document).ready(function() {
$('<div id="NittyContainer" class=""></div>').prependTo("body");
$("#NittyContainer").css({
"top": 0,
"left": 0,
"position": "fixed",
"width": "100%",
"height": "100%",
"z-index": "1000",
@jgamblin
jgamblin / domains.sh
Created December 20, 2017 20:37
Open Websites In Firefox from List.
#!/bin/bash
filename="domains.txt"
while read -r line
do
name="$line"
open -a "Firefox" https://$name
done < "$filename"
#!/bin/python
#
# Connects to a Wifi network
#
import os
def commandExists(command):
def canExecute(file):
return os.path.isfile(file) and os.access(file, os.X_OK)
@jgamblin
jgamblin / commonssids.txt
Created November 28, 2016 02:00
5000 most of common SSID names from https://wigle.net/stats#ssidstats
ssid
xfinitywifi
linksys
<no ssid>
BTWiFi-with-FON
NETGEAR
Ziggo
dlink
BTWifi-X
default
@Nilpo
Nilpo / Using Git to Manage a Live Web Site.md
Last active April 26, 2024 19:09
Using Git to Manage a Live Web Site

Using Git to Manage a Live Web Site

Overview

As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.

Contents

@tejastank
tejastank / Python-Exploit-Server.py
Created November 6, 2012 06:38
Python Exploit Server
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import socket
import cPickle
class ExploitServer():
def run(self):
HOST = '127.0.0.1'
PORT = 8080