Skip to content

Instantly share code, notes, and snippets.

View ekapujiw2002's full-sized avatar

Eka Puji Widiyanto ekapujiw2002

View GitHub Profile
74.125.136.113 www.google-analytics.com
64.12.79.143 www.dailyfinance.com
80.239.137.139 www.slate.com
104.16.13.8 static.adzerk.net
80.239.137.88 bc.ctvnews.ca
198.41.209.146 a.thumbs.redditmedia.com
174.129.222.180 redditgifts.com
198.41.209.140 i.reddit.com
185.31.19.193 imgur.com
88.221.134.160 www.reuters.com
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4 col-md-offset-4">
<h1 class="text-center login-title">Sign in to continue to Bootsnipp</h1>
<div class="account-wall">
<img class="profile-img" src="https://lh5.googleusercontent.com/-b0-k99FZlyE/AAAAAAAAAAI/AAAAAAAAAAA/eu7opA4byxI/photo.jpg?sz=120"
alt="">
<form class="form-signin">
<input type="text" class="form-control" placeholder="Email" required autofocus>
<input type="password" class="form-control" placeholder="Password" required>
@ekapujiw2002
ekapujiw2002 / readme.md
Last active August 29, 2015 14:11 — forked from mcfadden/readme.md

Making an IP camera with the Raspberry Pi

Requirements

  • Raspberry Pi (512MB rev2 recommended)
  • Raspberry Pi Camera board
  • SD Card (min 2BG, 8GB recommended for good measure. Class 10)

Optionally, a wifi adapter verified to work with raspberry pi ( I used Edimax Wireless Nano USB Adapter - http://www.amazon.com/gp/product/B005CLMJLU/ )

@ekapujiw2002
ekapujiw2002 / piboard.md
Created October 6, 2015 01:45 — forked from andrewvaughan/piboard.md
Create a Raspberry Pi Rotating Dashboard

These instructions were performed on a RaspberryPI 2 with a proper heatsink.

Install NOOBS

  1. Follow these instructions to install NOOBS with a Mac.
  2. Choose "Raspbian" from the selected options when installing.

Configure the Pi

@ekapujiw2002
ekapujiw2002 / sideBySide.sh
Created December 1, 2015 09:52 — forked from jetsonhacks/sideBySide.sh
Gstreamer two MJPG Webcams
#!/bin/sh
# Run two video webcam feeds in two different windows
# Script assumes that:
# Microsoft LifeCam Studio is video0
# Logitech c920 is video1
# Both cameras run max 1920x1080 MJPG, but two have both on a USB bus they can run @ 1280x720 max
# MS is made a little smaller
# text overlay and clockoverlay may be added to the pipeline, but render poorly
VELEM="v4l2src device=/dev/video0 do-timestamp=true"
VCAPS="image/jpeg, width=640, height=480, framerate=30/1"
@ekapujiw2002
ekapujiw2002 / vhost-wildcard-subdomain.conf
Created January 11, 2016 07:24 — forked from ofus/vhost-wildcard-subdomain.conf
Apache Virtual Hosts with wildcard subdomain matching
UseCanonicalName Off
<VirtualHost *:80>
ServerAdmin [email protected]
ServerAlias *.example.com
VirtualDocumentRoot /var/www/%1/public
DirectoryIndex index.php index.htm index.html
<Directory /var/www/*/public/>
AllowOverride All
</Directory>
@ekapujiw2002
ekapujiw2002 / 0_reuse_code.js
Created February 26, 2016 02:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@ekapujiw2002
ekapujiw2002 / counting-millis.c
Created February 27, 2016 07:18 — forked from adnbr/counting-millis.c
Counting the passing of milliseconds using Timer1 on AVR.
/* Counting Milliseconds with Timer1
* ---------------------------------
* For more information see
* http://www.adnbr.co.uk/articles/counting-milliseconds
*
* 620 bytes - ATmega168 - 16MHz
*/
// 16MHz Clock
#define F_CPU 16000000UL
@ekapujiw2002
ekapujiw2002 / crc16.c
Created March 8, 2016 05:16 — forked from jlamothe/crc16.c
CRC16 checksum calculator
#include <stdint.h>
#define CRC16 0x8005
uint16_t gen_crc16(const uint8_t *data, uint16_t size)
{
uint16_t out = 0;
int bits_read = 0, bit_flag;
/* Sanity check: */
@ekapujiw2002
ekapujiw2002 / AVRserial.c
Created March 12, 2016 01:29
This ready-to-use code is written for any AVR microcontroller to add some basic UART functions.
/****************************************************************************
Title: AVR UART library
Author: Robert-Maarten Schuurman <[email protected]> http://rms95.nl/
Date: 28-06-2013
Software: AVR-GCC 3.3
Target: Any AVR device with a single UART and the registers named like
the ATmega32 (UCSRA-C, UBRRH and UBRRL). By modifying the code
a bit it is usable for any AVR UART.
DESCRIPTION