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
#include <poly/Log.h> | |
#include <TestFboChangeBuffer.h> | |
using namespace poly; | |
TestFboChangeBuffer::TestFboChangeBuffer() | |
:fbo(0) | |
,dx(0) | |
{ | |
tex[0] = 0; |
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 EventEmitter = require('events').EventEmitter, | |
util = require('util'); | |
// TODO: | |
// * tags (BEGIN somehashhere\nsomehashhere data) | |
// * line numbers (begin somehash\nsomehash:12 data) | |
var Buffer = exports.Buffer = function (o) { | |
o = o || {}; |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 George Stagas https://github.com/stagas | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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() { | |
var $body = $('body') | |
, $book = $('#book') | |
;(function animate_background() { | |
$body.animate({ backgroundColor: "#abcdef" }, 1000, function(){ | |
$body.animate({ backgroundColor: "#000" }, 1000, animate_background) | |
}) | |
}()) |
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
$(document).ready(function() { | |
var $book = $('#book') | |
// wrapping the function in a closure | |
;(function display_icon() { | |
$book.hide(1000, function() { | |
$book.show(1000, function() { | |
setTimeout(function() { | |
display_icon(); | |
}, 0); | |
}); |