Sheldon is a curious little critter that is very sociable. Most people love him from the start. I adopted him on May 7th, 2016. Every since that day he's been my best friend. His favorite food is grapes and he loves tea every once and awhile. Everyone in my family adores Sheldon and spoils him!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<SCRIPT language="JavaScript"> | |
<!-- | |
//Quadratic Calculator, by Taydron | |
//http://www.taydron-domain.net | |
//Visit JavaScript Kit (http://javascriptkit.com) for script | |
function quadData1() { | |
var valA = document.quadCalc.valA.value; | |
var valB = document.quadCalc.valB.value; |
A Pen by Clark Weckmann on CodePen.
I hereby claim:
- I am clarkhacks on github.
- I am clarkhacks (https://keybase.io/clarkhacks) on keybase.
- I have a public key whose fingerprint is AE87 52F2 1C83 B6EE AE52 00E7 898D 4826 41B8 6FF6
To claim this, I am signing this object:
u/SlowCrates
I put my 5 year old daughter, Emily, in the elevator, and waited until the doors closed before running down the hall to the stairs. I'd done this trick before, and seeing my daughter's 5 year old face light up filled me with an unforgettable sense of joy.
I heard the 'ding' just as I dismounted from the staircase on the first floor, and with no time to spare I haulted myself in my best casual pose just as the doors opened. Normally I'd hear her giggles before the door opened, then I'd see her soul-saving smile.
But that's not what happened this time.
"Hello Dad," an adult woman said. "We have a lot to talk about."
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs') | |
var logger = fs.createWriteStream('log.txt', { | |
flags: 'a' // 'a' means appending (old data will be preserved) | |
}) | |
// logger.write('some data') // append string to your file | |
// logger.write('more data') // again | |
// logger.write('and more') // again |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Created by Rui Santos | |
Visit: http://randomnerdtutorials.com for more arduino projects | |
Arduino with Ethernet Shield | |
*/ | |
#include <SPI.h> | |
#include <Ethernet.h> | |
#include <Servo.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function encodeHTML(s) { | |
return s.replace(/&/g, '&').replace(/</g, '<').replace(/"/g, '"'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* ===================================================== | |
* Ratchet v2.0.2 (http://goratchet.com) | |
* Copyright 2014 Connor Sears | |
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE) | |
* | |
* v2.0.2 designed by @connors. | |
* ===================================================== | |
*/ |
OlderNewer