Skip to content

Instantly share code, notes, and snippets.

View gigocabrera's full-sized avatar

Luis Cabrera gigocabrera

View GitHub Profile
@gigocabrera
gigocabrera / 2017-01-03-02
Last active January 5, 2017 23:34
Responsive Image Gallery in Jekyll 2017-01-03-02
<div class="galleryWrap">
<div class="pictureBox">
<div class="innerBox">
<img src="/assets/posts/2017-01-03-responsive-image-gallery-for-your-site/Gallery_Image_01.png">
<div class="titleBox">Image 1</div>
</div>
</div>
<div class="pictureBox">
<div class="innerBox">
<img src="/assets/posts/2017-01-03-responsive-image-gallery-for-your-site/Gallery_Image_02.png">
@gigocabrera
gigocabrera / 2017-01-03-01
Created January 5, 2017 23:28
2017-01-03
/* Responsive Tiled Photo Gallery */
.galleryWrap
{
overflow: hidden;
margin: 10px;
}
.pictureBox
{
float: left;
position: relative;
@gigocabrera
gigocabrera / keybase.md
Created January 2, 2017 03:24
keybase.md

Keybase proof

I hereby claim:

  • I am gigocabrera on github.
  • I am gigocabrera (https://keybase.io/gigocabrera) on keybase.
  • I have a public key whose fingerprint is 9CC4 117E 0E25 7C1D FCB3 304E B6E9 68F5 DAFF 66AB

To claim this, I am signing this object:

@gigocabrera
gigocabrera / firebase_copy.js
Created August 5, 2016 20:57 — forked from katowulf/firebase_copy.js
Move or copy a Firebase path to a new location
function copyFbRecord(oldRef, newRef) {
oldRef.once('value', function(snap) {
newRef.set( snap.value(), function(error) {
if( error && typeof(console) !== 'undefined' && console.error ) { console.error(error); }
});
});
}