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
<?php | |
/** | |
* Hackish transliteration rules for greek text. | |
* @author Alexandros Sigalas <[email protected]> | |
* @license Apache License 2.0 | |
*/ | |
class TransliterateGreek | |
{ |
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
<?php | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
define('BASE', str_replace('index.php', '', $_SERVER['SCRIPT_NAME'])); | |
define('DS', DIRECTORY_SEPARATOR); | |
define('WEBDIR', dirname(__FILE__)); | |
function cache($path, $output=null){ |
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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: skeleton | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: BaseX Server | |
# Description: Manage BaseX XML Database Server. | |
### END INIT INFO |
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 Events = function(){}; | |
Events.prototype = { | |
events: {}, | |
on: function(eventName, callback, context){ | |
if(!this.events[eventName]){ | |
this.events[eventName] = []; | |
} | |
this.events[eventName].push([callback, context || this]); | |
}, |
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
// Improved unset for multiple values. | |
unset: function(attr, options){ | |
var unset = {}, i, max; | |
if(typeof attr === 'string'){ | |
return Backbone.Model.prototype.unset.call(this, arguments); | |
} | |
if(attr instanceof Array){ | |
for(i = 0, max = attr.length; i < max; i++){ |
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
module namespace num = "http://thinking.gr/modules/numerals"; | |
declare variable $num:valid-greek := "^[ρστυφχψωϠϡͲͳ]?[ικλμνξοπϞϟ]?[αβγδεζηθςϜϝ]$"; | |
declare function num:to-greek($i as xs:integer) as xs:string | |
{ | |
if($i gt 0 and $i lt 1000) then | |
let $x100 := op:numeric-integer-divide($i, 100) | |
let $x10 := op:numeric-integer-divide($i mod 100, 10) | |
let $x1 := $i mod 10 |
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
node_modules/ |
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
MathJax.Hub.Register.MessageHook("End PreProcess", function () { | |
[].slice.apply(document.querySelectorAll("script[type^=math]")).forEach(function (s) { | |
var mml = MathJax.InputJax.TeX.Parse(s.innerHTML).mml(); | |
var math = document.createElementNS("http://www.w3.org/1998/Math/MathML", "math"); | |
math.setAttribute("xmlns", "http://www.w3.org/1998/Math/MathML"); | |
// tricks toMathML extension | |
mml.parent = {}; | |
var mathml = mml.toMathML() | |
math.innerHTML = mathml |
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
urlModule = angularModule "url", ["ngRoute"] | |
class Url | |
constructor: (@baseUrl) -> | |
absoluteUrl: (url) -> | |
unless url.match /^(\w+:)?\/\// | |
url = "/#{url}" unless url[0] is '/' | |
url = "#{@baseUrl}#{url}" | |
url |
OlderNewer