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 Uint8ArrayListWriter(contentSize, filename) | |
{ | |
var output, that = this, offset, errored; | |
function init(callback) | |
{ | |
output = []; | |
offset = 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
/** | |
* @class custom Writer; zipjs one breaks in chrome for large binary files | |
*/ | |
function ArrayBufferWriter(contentSize, filename) | |
{ | |
var output, that = this, offset, errored; | |
function init(callback) | |
{ | |
output = new Uint8Array(contentSize); |
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
/** | |
* @author Nahid Akbar | |
* @date 19/10/14 | |
*/ | |
"use strict"; | |
var singleton = function(BaseClass, instanceParent, instanceVarName) | |
{ | |
instanceParent = instanceParent !== undefined ? instanceParent : BaseClass; | |
instanceVarName = instanceVarName !== undefined ? instanceVarName : 'instance'; | |
return function() |
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 dx = 10; | |
var dy = 10; | |
var dz = 3; | |
var decode = function(v) | |
{ | |
var z = v % dz; | |
var xy = (v - z) / dz; | |
var y = xy % dy; | |
var x = (xy - y) / dy; |
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
import os | |
import random | |
# INSERT INTO `dataset_album` (`pic_id`, `pic_cat_id`) VALUES | |
dataset_album = [ | |
(1, 1), | |
(2, 1), | |
(3, 1), | |
(4, 1), | |
(5, 1), |
NewerOlder