Skip to content

Instantly share code, notes, and snippets.

View azendal's full-sized avatar

Fernando Trasviña azendal

View GitHub Profile
<div class="unit elastic-gallery">
<div class="container horizontal-center" style="width:395px; border:solid 1px grey; padding:5px;">
<div class="unit">
<div class="container" style="padding:10px;">
<div class="unit">
<div class="container horizontal-center image-container" style="width:400px; height:240px; position:relative">
<div class="unit image">
<img src="1.jpg" width="375" height="234" title="" />
</div>
</div>
.elastic-gallery .thumbnail
{
float:left;
padding:1px;
}
.elastic-gallery .image
{
position:absolute;
top:0;
jQuery(function($){
$('.elastic-gallery').each(function(){
var gallery = this;
$('.right', this).click(function(){
$('.thumbnails-display-container', gallery).animate({
'scrollLeft' : ( $('.thumbnails-display-container', gallery).attr('scrollLeft') + $('.thumbnails-display-container', gallery).width() )
}, 500, 'linear');
});
$('.left', this).click(function(){
$('.thumbnails-display-container', gallery).animate({
@azendal
azendal / gist:118327
Created May 26, 2009 22:14
Elastic < 2.0 Example
<div class="unit two-columns same-height" style="background:#ffa500;">
<div class="column">
<div class="container" style="height:200px;">
first column with
</div>
</div>
<div class="column">
<div class="unit">
some content
</div>
@azendal
azendal / gist:1080511
Created July 13, 2011 15:22
porque no puedo mandar llamar un metodo privado con self
class A
#defining static methods
instance_eval do
def x
'x'
end
instance_eval do
private
def private_m
@azendal
azendal / Questions
Created July 14, 2011 21:46
Magma Rails Give-away
Day Job: Project Manager @ freshout
Open Source contribution (if any): Elastic, Argon, Neon, Tellurium, Dysprosium, and some more i cant remember
Tell me about your experience with Ruby/Rails: Coding on many different projects for several years going from fast several hours project, to long project that go for several years of continuous development
How do you use GitHub: open source and closed source project, sharing gists and sharing code with the world
Favorite luchador(es): aluche
@azendal
azendal / TreeWalker.js
Created June 5, 2012 22:04 — forked from shawndumas/TreeWalker.js
A JavaScript Implementation of TreeWalker
var NodeFilter = {
FILTER_ACCEPT: 1,
FILTER_REJECT: 2,
FILTER_SKIP: 3,
SHOW_ALL: -1,
SHOW_ELEMENT: 1,
SHOW_ATTRIBUTE: 2,
SHOW_TEXT: 4,
SHOW_CDATA_SECTION: 8,
SHOW_ENTITY_REFERENCE: 16,
@azendal
azendal / example
Created October 10, 2012 01:36
CustomEventSupport
# Example CustomEvent
class Dispatcher
include CustomEventSupport
include BubblingSupport
def set_property(value)
dispatch 'property_change', {:value => value}
end
end
@azendal
azendal / Object.defineProperties.js
Created December 4, 2012 14:06 — forked from Mr0grog/Object.defineProperties.js
Object.defineProperties modeled in JS
Object.defineProperties = function(O, Properties) {
// 1. If Type(O) is not Object throw a TypeError exception.
if (typeof(O) !== "object" || O == null) {
throw TypeError("Object.defineProperties called on non-object");
}
// 2. Let props be ToObject(Properties)
var props = Object(Properties); // not *exactly* the same, but similar enough
// 3. Let names be an internal list containing the names of each enumerable own property of props.
@azendal
azendal / Nitrogen Server
Last active December 10, 2015 14:49 — forked from anonymous/gist:4448997
Small CORS JSON Server
var express = require('express');
var app = express();
app.use(express.bodyParser());
app.get('/:model', function (req, res) {
res.json(data[req.params.model]);
});
app.get('/:model/:id', function (req, res){
var record = data[req.params.model].filter(function (entry) {