Author: Ari Lerner.
AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:
- Module support
- DOM manipulation
- Animations
- Templating
#!/usr/bin/python2 | |
import sys | |
import numpy | |
from scipy.io import wavfile | |
from scipy.signal import fftconvolve | |
def usage(): | |
print >> sys.stderr, "Usage: wavgrep.py --like|--similar|--this needle.wav haystack.wav" |
jQuery(document).ready(function(){ | |
if (window.location.hash) { | |
var hashdata = new Object(); | |
jQuery.each(window.location.hash.replace(/^#/,'').split('&'), function(i, t){ | |
var s = t.split('='); | |
hashdata[s[0].toLowerCase()] = s[1].toLowerCase(); | |
}); | |
var $filters = jQuery('div[id^="Filters"]').find('li'); | |
/* ========================================================= | |
// jquery.innerfade.js | |
// Datum: 2008-02-14 | |
// Firma: Medienfreunde Hofmann & Baldes GbR | |
// Author: Torsten Baldes | |
// Mail: [email protected] |
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
from xml.dom import minidom | |
import json | |
config = { | |
'svg_file' : 'map.svg', | |
'js_file' : 'map.js', | |
'js_var' : 'svgMap' | |
} | |
svg = minidom.parse(config['svg_file']) |
function generateCode(){codeContainer.textContent=source.innerHTML}function generateFile(){var t="data:image/svg+xml;utf8,"+encodeURIComponent(source.innerHTML);downloadButton.setAttribute("href",t)}function getAngle(t){"semiCircle"==typeOfCircle&&gaps===!1?angle=180/t:"fullCircle"==typeOfCircle&&gaps===!1&&(angle=360/t),"semiCircle"==typeOfCircle&&gaps===!0?angle=180/t-180/t/gap:"fullCircle"==typeOfCircle&&gaps===!0&&(angle=360/t-360/t/gap)}function getPizzaCoordinates(t,e,i){var n=i.x,r=i.y,s=-t*Math.PI/180,a=n+e*Math.cos(s),o=r+e*Math.sin(s);pizzaCoordinates.x=a,pizzaCoordinates.y=o}function getCutCoordinates(t,e,i){var n=i.x,r=i.y,s=-t*Math.PI/180,a=n+e*Math.cos(s),o=r+e*Math.sin(s);pieCoordinates.x=a,pieCoordinates.y=o}function isOdd(t){return t%2}function rotateItems(t){for(var e=svg.querySelectorAll(".item"),i,n,r,s=0;s<e.length;s++){var a=e[s];gaps===!1&&(r=-angle*s),gaps===!0&&"semiCircle"==typeOfCircle&&(i=nbOfSlices*(180/nbOfSlices/gap),n=i/(nbOfSlices-1),r=-s*(angle+n)),gaps===!0&&"fullCircle"==ty |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <iostream> | |
#include <unistd.h> | |
#include <boost/thread.hpp> | |
#include <arpa/inet.h> | |
#include <sys/socket.h> |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <iostream> | |
#include <unistd.h> | |
#include <boost/thread.hpp> | |
#include <sys/mman.h> | |
#include <poll.h> | |
#include <arpa/inet.h> |
Author: Ari Lerner.
AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:
<?xml version="1.0" encoding="UTF-8" ?> | |
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd" https="true"> | |
<meta> | |
<sampleQuery>select * from {table} where url="www.yahoo.com" and username="username" and password="password"</sampleQuery> | |
</meta> | |
<bindings> | |
<select itemPath="" produces="JSON"> | |
<urls> | |
<url>{url}</url> | |
</urls> |