Skip to content

Instantly share code, notes, and snippets.

View kobeBigs's full-sized avatar

Kobe kobeBigs

View GitHub Profile
@kobeBigs
kobeBigs / givemepassword.pl
Created February 8, 2024 14:11
A simple perl program that creates random 16 character password strings from alphanumeric characters (0-9, a-z, A-Z)
#!/usr/bin/perl
=pod
A simple perl program that creates random 16 char password strings from alphanumeric characters (0-9, a-z, A-Z)
=cut
use strict;
use warnings;
my @ranstr = ('0'..'9', 'a'..'z', 'A'..'F');
my $pwdstr = join '' => map $ranstr[rand @ranstr], 0 .. 15;
/**
* temperature & humidity logger
*
* @kobebigs Thu Mar 20, 2014 15:14:30
*/
#include <Time.h>
#include <DHT.h>
//define connected pin
@kobeBigs
kobeBigs / makehub
Created March 20, 2014 22:59
Temperature Monitoring System / Logger
# Title
Temperature Monitoring System / Logger
# Picture
media: http://www.deviantsart.com/e6gtc1.jpg
# Objective
The project is a simple monitoring system that records temperature, analyse recorded data visually(plots on graph), and send notification messages(SMS) via twilio.
# Duration
4 hours minimum
# Age Group
all
@kobeBigs
kobeBigs / makehub
Last active May 6, 2024 08:11
SimonSays Game
# Title
SimonSays Game
# Picture
media: http://www.deviantsart.com/fddvrk.jpg
# Objective
The goal of this project is to replicate the SimonSays Game for kids. The project employs few modifications to the Simon Says Arduino Game; implements an LCD and uses local native audio/tones.
# Duration
8 hours
# Age Group
all
@kobeBigs
kobeBigs / serial_RGB_LED.ino
Created May 24, 2013 15:09
Serial Interface & RGB LED a simple sketch to randomly change colors of RGB LED and write out Serial output.
/**
* a simple sketch to randomly change colors of RGB LED
* and write out Serial output.
*/
int redPin = 11;
int bluePin = 10;
int greenPin = 9;
//setup
@kobeBigs
kobeBigs / accelerometer_test.ino
Last active December 17, 2015 12:09
arduino sketch to test ADXL3xx Accelerometer and LED
// these constants describe the pins. They won't change:
const int xpin = A3; // x-axis of the accelerometer
const int ypin = A2; // y-axis
const int zpin = A1; // z-axis (only on 3-axis models)
const int x_max = 512;
int ledPin = 8; //pin for led
//setup