Þetta eru glósur sem varða þýðingu Git á íslensku.
Grunnhugtök í Git eru þessi:
The SHASumma, t.d. "summan er deadbeef"
| # To check if this is up-to-date with the tax rates go to | |
| # http://www.expatax.nl/tax-rates-2016.php and see if there's anything | |
| # newer there. | |
| # | |
| # I make no guarantees that any of this is correct. I calculated this | |
| # at the time and have been updating it when new tax rates come along | |
| # because people keep finding this useful. | |
| # | |
| # There's also an interactive JS version of this created by | |
| # @stevermeister at |
| #!/usr/bin/env perl | |
| # Check if a Tor exit can exit to a given IP/port with TorDNSEL | |
| # Usage, e.g.: | |
| # for exit in $(wget -q -O- "https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$(myip)" | grep -v ^#); do echo $exit; done | perl /tmp/gist-523328/tor-exit-to-ip-port.pl 173.194.37.104 80 | |
| use strict; | |
| use warnings; | |
| chomp(my @tor_exits = <STDIN>); |
| #!/bin/sh | |
| cd ~/g/perl | |
| git clean -dxf >/dev/null | |
| rm -rf /tmp/perl | |
| echo "Making perl" | |
| ./Configure -des -Dprefix=/tmp/perl -Dusedevel >/dev/null | |
| make >/dev/null 2>&1 |