This file contains hidden or 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 htmlparser = require("htmlparser2"); | |
let spaces = 0; | |
const nodes = { | |
'dom-loop': function(name, attribs) { | |
return `for(const current of ${ attribs.items.trim().slice(2, -1).trim() }) {`; | |
}, | |
'dom-if': function(name, attribs) { | |
return `if(${ attribs.test.trim().slice(2, -1).trim() }) {`; | |
}, |
This file contains hidden or 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
# texlive.profile written on Sun Nov 30 13:02:13 2014 UTC | |
# It will NOT be updated and reflects only the | |
# installation profile at installation time. | |
selected_scheme scheme-custom | |
TEXDIR /home/travis/build/helloIAmPau/curriculum-vitae/tl | |
TEXMFCONFIG ~/.texlive2014/texmf-config | |
TEXMFHOME ~/texmf | |
TEXMFLOCAL /home/travis/build/helloIAmPau/curriculum-vitae/texmf-local | |
TEXMFSYSCONFIG /home/travis/build/helloIAmPau/curriculum-vitae/texmf-config | |
TEXMFSYSVAR /home/travis/build/helloIAmPau/curriculum-vitae/texmf-var |
This file contains hidden or 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
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |
This file contains hidden or 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
Math.random().toString(36).replace('0.','') |
This file contains hidden or 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/bash | |
function scimark { | |
echo "downloading scimark" | |
mkdir -p ./benchmarks | |
curl http://math.nist.gov/scimark2/scimark2lib.zip > ./benchmarks/sci.zip | |
cd ./benchmarks | |
unzip sci.zip | |
echo "ready to run: 3" | |
sleep 1 |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
$INSTALL_MONGO = <<SCRIPT | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
sudo apt-get update |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
$INSTALL_REDIS = <<SCRIPT | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install -y redis-server |
This file contains hidden or 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/bash | |
if [ `uname` == "Darwin" ]; then | |
VIM=/Applications/MacVim.app/Contents/MacOS/Vim; | |
else | |
VIM=vim; | |
fi | |
echo "Going to tmp folder..." | |
cd /tmp |
This file contains hidden or 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
require 'formula' | |
class Depot < Formula | |
homepage 'https://sites.google.com/a/chromium.org/dev/developers/how-tos/depottools' | |
url 'https://chromium.googlesource.com/chromium/tools/depot_tools.git' | |
sha1 '' | |
def install | |
prefix.install Dir['*'] | |
end |
This file contains hidden or 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
114 | |
1) La modellazione dei processi gestionali avviene sui tre livelli architetturali nell'ordine: | |
-aziendale, di processo, di attivita' | |
-funzionale, di processo, di attivita' | |
-aziendale, di attivita', di elementi funzionali | |
2) Gli indici sono i dati: | |
-aggregati | |
-le chiavi di accesso | |
-anagrafici | |
3) Un Extends indica che: |
NewerOlder