Þetta eru glósur sem varða þýðingu Git á íslensku.
Grunnhugtök í Git eru þessi:
The SHA
Summa, t.d. "summan er deadbeef"
#!/bin/bash | |
# Assuming Mailpile is current directory | |
# Basic 32-bit Python-in-Wine environment | |
sudo add-apt-repository ppa:ubuntu-wine/ppa | |
sudo apt-get update | |
sudo apt-get install wine1.6 | |
wget -N http://python.org/ftp/python/2.7.5/python-2.7.5.msi | |
wine msiexec /i python-2.7.5.msi /quiet |
__author__ = 'cdumitru' | |
from Crypto.Cipher import PKCS1_OAEP | |
from Crypto.PublicKey import RSA | |
import gmpy | |
import base64 | |
#tup (tuple) - A tuple of long integers, with at least 2 and no more than 6 items. The items come in the following order: | |
#RSA modulus (n). |
#!/bin/sh | |
#remove current bus stops | |
osmosis --read-pbf file="iceland.osm.pbf" --tag-filter reject-nodes highway=bus_stop --write-pbf file="iceland-no-busstops.osm.pbf" | |
#generate change file | |
osmosis --read-pbf file="iceland-no-busstops.osm.pbf" --read-pbf file="iceland.osm.pbf" --derive-change --write-xml-change file="iceland-no-busstops.osc" |
#/bin/bash | |
wget --timestamping http://download.geofabrik.de/osm/europe/iceland.osm.pbf | |
osmosis --read-pbf file=iceland.osm.pbf --way-key-value keyValueList=source.lukr --used-node --write-xml lukr.osm | |
osmosis --read-xml file=lukr.osm --way-key keyList=highway --used-node --write-xml lukrhighways.osm | |
xmllint --xpath '/osm/way/@user' lukrhighways.osm | grep -o user=\"[^\"]*\" > users.txt | |
echo "Skipting þeirra sem síðust breyttu lukr vegum:" | |
sort users.txt | uniq -c | sort -nr | |
echo "Fjöldi lukr vega sem búið er að staðfesta: `wc -l users.txt`" |
#!/usr/bin/perl | |
# Author: Björgvin Ragnarsson | |
# License: Public Domain | |
use OSM::osm; # PERL osm module by gary68 | |
openOsmFile('Iceland.osm'); | |
skipNodes(); |
Ride the city .po |