I hereby claim:
- I am the-solipsist on github.
- I am sol (https://keybase.io/sol) on keybase.
- I have a public key whose fingerprint is D46F 31C3 C1EB 237D 6EFE DA03 48CE 87B3 B103 D391
To claim this, I am signing this object:
The Yale VPN uses Cisco AnyConnect. | |
If Cisco's Linux client works for you, congratulations. | |
If, like me, the official client leaves you stranded, then you need to install | |
OpenConnect and (assuming you are using Network Manager) the appropriate add-on for the NM applet. | |
On a Debian-based system, you can type the following command: | |
$ sudo apt-get install openconnect network-manager-openconnect network-manager-openconnect-gnome |
First of all, thank you very much for considering donating to the Centre for Internet and Society! | |
If you're an Indian national who wishes to support CIS with an individual donation, you can | |
do so by writing a cheque or a demand draft. | |
1. The cheque / demand draft should favour "Centre for Internet and Society". | |
2. Proof of Indian citizenship (photocopy/scan of your passport; photocopy/scan of your voter ID card). | |
3. These need to be mailed to us at: |
---------------------------------------------------- | |
52. Certain acts not to be infringement of copyright. | |
---------------------------------------------------- | |
(1) The following acts shall not constitute an infringement of copyright, namely — | |
(a) a fair dealing with a literary, dramatic, musical or artistic any work not being a | |
computer programme, for the purposes of — | |
(ii) criticism or review, whether of that work or of any other work; | |
(aa) the making of copies or adaptation of a computer programme by the lawful possessor |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# automated retrieval of pipermail mbox file with full headers, if subscribed | |
# else, retrieval of pipermail mbox file with partial headers, if not subscribed | |
# https://mail.python.org/pipermail/mailman-users/2004-May/036948.html & | |
# https://mail.python.org/pipermail/mailman-users/2012-October/074208.html | |
# | |
# To use this script, simply run the following commands: | |
# $ wget https://gist.github.com/the-solipsist/a8a68e3bfcad9a0f8372/raw/get-mailman-archive.sh | |
# $ chmod +x get-mailman-archive.sh | |
# $ ./get-mailman-archive.sh |
server { | |
listen 80; | |
server_name chat.cis-india.org; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
listen 8020; | |
listen 443 ssl; | |
server_name chat.cis-india.org; | |
error_log /var/log/nginx/HOST_error.log; |
People's Union for Civil Liberties | |
================================== | |
PUCL doesn't take money from governments, foundations, political parties, corporations, etc. | |
It only takes money from individuals. It is organized into state chapters, which provide | |
donations to the national unit. However, one can also donate directly to the national, | |
and the details provided below are for that. | |
From the latest PUCL Bulletin: | |
"PUCL is a voluntary organisation which has only 2 full time staff at the national office |
2019/07/01 Transfer Money to Maybank | |
Assets:Bank:Maybank USD 1,012.44 | |
Equity:Trading:Currency:USD:SGD USD -1,012.44 | |
Equity:Trading:Currency:SGD:USD $1,360.65 | |
Assets:Bank:DBS:Savings $-1,360.65 | |
2019/07/01 Maybank | Berkshire Hathaway | |
Assets:Stocks:Maybank:BerkshireHathaway 7.0000 BRKB | |
Equity:Trading:Stocks:BRKB:USD -7.0000 BRKB | |
Equity:Trading:Stocks:USD:BRKB USD 987.84 |
#!/bin/bash | |
cd $(dirname $0) | |
hledger --version | |
hledger-iadd --version | |
axel https://github.com/simonmichael/hledger/releases/download/$1/hledger-linux-x64.zip --output /tmp/hledger-linux-x64.zip # can rerun if interrupted | |
if [ $? -ne 0 ]; then | |
echo "not there" | |
else | |
axel https://github.com/hpdeifel/hledger-iadd/releases/download/v$2/hledger-iadd-$2-archlinux.tar.xz --output /tmp/hledger-iadd.tar.xz | |
oldversion=$(hledger --version | cut -d ' ' -f2 | cut -d',' -f1) |
# skip the headings line: | |
skip 1 | |
# use the following CSV fields: | |
fields date, desc, intermediary_charge, e_value, e_nav, e_units, c_value, c_nav, c_units, g_value, g_nav, g_units | |
# use the first date format if you have older CSV files | |
#date-format %d-%h-%y | |
date-format %d-%h-%Y |