Skip to content

Instantly share code, notes, and snippets.

View felicedeNigris's full-sized avatar

Felice DeNigris felicedeNigris

  • San Francisco Bay area.
View GitHub Profile
@felicedeNigris
felicedeNigris / index.html
Last active August 5, 2016 22:58
felicedenigris.com_v2
<script src="https://use.fontawesome.com/0193bddf58.js"></script>
<div class="header">
<h1> Hi my name is Felice DeNigris</h1>
<h1>I'm a multi disciplinary designer & web developer</h1>
</div>
<!-- <div class="follow">Follow Me</div> -->
<div class="outlets">
<a class="fa fa-dribbble" href=""></a>
<a class="fa fa-flickr" href=""></a>
! [rejected] master -> master (non-fast-forward)
// convert 0..255 R,G,B values to binary string
RGBToBin = function(r,g,b){
var bin = r << 16 | g << 8 | b;
return (function(h){
return new Array(25-h.length).join("0")+h
})(bin.toString(2))
}
// convert 0..255 R,G,B values to a hexidecimal color string
RGBToHex = function(r,g,b){