Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am cyberbitz on github.
  • I am cyberbitz (https://keybase.io/cyberbitz) on keybase.
  • I have a public key ASAhS1WNszR7gfqJam24YVq8hWHn1luNkG0xJQ7JP_5qSQo

To claim this, I am signing this object:

@CyberBitz
CyberBitz / home
Created September 29, 2017 01:47
this is my home
@CyberBitz
CyberBitz / ssid-sniffer-scapy-python.py
Created April 30, 2017 15:14 — forked from securitytube/ssid-sniffer-scapy-python.py
WLAN SSID Sniffer in Python using Scapy
#!/usr/bin/env python
from scapy.all import *
ap_list = []
def PacketHandler(pkt) :
if pkt.haslayer(Dot11) :
if pkt.type == 0 and pkt.subtype == 8 :

Keybase proof

I hereby claim:

  • I am ad5qa on github.
  • I am cyberbitz (https://keybase.io/cyberbitz) on keybase.
  • I have a public key whose fingerprint is F83A 34AC 316E 5B41 B8BA 9204 4DF3 67EA ADE5 B874

To claim this, I am signing this object:

@CyberBitz
CyberBitz / MapTwinkle.ino
Last active December 23, 2015 04:18 — forked from kriegsman/MapTwinkle.ino
MapTwinkle- randomly twinkle pixels up from a base color to a peak color and back down.
#include "FastLED.h"
// MapTwinkle
// Designed to illuminate a 'map' of pixels, each of which randomly
// sometimes twinkles brighter and then back down to it's base color again.
//
// Parameters include: background color, peak twinkle color, and speed
// of brightening and dimming.
//
// Mark Kriegsman, August 2015
@CyberBitz
CyberBitz / ColorTwinkles.ino
Created December 23, 2015 04:03 — forked from kriegsman/ColorTwinkles.ino
Twinkling 'holiday' lights that fade in and out.
#include "FastLED.h"
#define LED_PIN 3
#define LED_TYPE WS2811
#define COLOR_ORDER RGB
#define NUM_LEDS 50
CRGB leds[NUM_LEDS];
// Twinkling 'holiday' lights that fade up and down in brightness.
// Colors are chosen from a palette; a few palettes are provided.