Skip to content

Instantly share code, notes, and snippets.

View full-sized avatar
💬
Building Hoojah

Rudzainy Rahman rudzainy

💬
Building Hoojah
View GitHub Profile
@rudzainy
rudzainy / box-shadow.html
Created April 28, 2017 10:48 — forked from ocean90/box-shadow.html
CSS3 Box Shadow, only top/right/bottom/left and all
View box-shadow.html
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;
@rudzainy
rudzainy / timestamp.js
Created January 29, 2017 02:37 — forked from hurjas/timestamp.js
Print out a nicely formatted timestamp in JavaScript.
View timestamp.js
/**
* Return a timestamp with the format "m/d/yy h:MM:ss TT"
* @type {Date}
*/
function timeStamp() {
// Create a date object with the current time
var now = new Date();
// Create an array with the current month, day and time
View js-the-weird-parts-notes.md
@rudzainy
rudzainy / Gemfile
Last active August 9, 2020 21:40 — forked from stevebourne/Gemfile
Add facebook auth to a Clearance app, using omniauth-facebook
View Gemfile
gem 'omniauth'
gem 'omniauth-facebook'
gem 'clearance'