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 iconFeature = new ol.Feature({ | |
geometry: new ol.geom.Point([0, 0]), | |
name: 'Null Island', | |
population: 4000, | |
rainfall: 500 | |
}); | |
var iconFeature2 = new ol.Feature({ | |
geometry: new ol.geom.Point([-1000000, -1000000]), | |
name: 'Island 2', |
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 | |
# rationale: Interfaz eth1 de vagrant no auto inicia | |
# link: https://glud.org/2017/01/09/interfaz-eth1-de-vagrant-no-auto-inicia/ | |
sudo tee /usr/local/bin/ifupeth1.sh << 'EOF' | |
#!/bin/bash | |
sleep 10 && ifup eth1 | |
EOF | |
sudo chmod +x /usr/local/bin/ifupeth1.sh | |
sudo tee /usr/lib/systemd/system/ifupeth1.service << 'EOF' | |
[Unit] |
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
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"net/http" | |
"net/url" | |
//"time" | |
"crypto/aes" |
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 | |
pip install "$1" & | |
easyinstall "$1" & | |
brew install "$1" & | |
npm install "$1" & | |
yum install "$1" & dnf instal "$1" & | |
docker run "$1" & | |
pkg install "$1" & | |
apt-get install "$1" & |
NewerOlder