This file contains 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
FROM debian:sid | |
RUN apt-get update | |
RUN apt-get install -y git make emacs | |
RUN git clone --depth 1 --branch release_9.5.5 https://git.savannah.gnu.org/git/emacs/org-mode.git org955 | |
RUN git clone --depth 1 --branch release_9.6 https://git.savannah.gnu.org/git/emacs/org-mode.git org96 | |
RUN cd org955 && make autoloads | |
RUN cd org96 && make autoloads |
This file contains 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
FROM debian:sid | |
RUN apt-get update | |
RUN apt-get install -y git emacs | |
RUN git clone --depth 1 --branch 0.4 https://github.com/toshism/org-super-links.git org-super-links-04 | |
RUN git clone --depth 1 --branch fix-time-format https://github.com/akirak/org-super-links.git org-super-links-fix | |
ADD org-sl-test-04.el . | |
ADD org-sl-test-fix.el . | |
CMD ["bash"] |
This file contains 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
import requests | |
# via https://whatsmychaincert.com/?webportal.stromnetz-graz.at | |
# "Generate the Correct Chain" + "Include Root Certificate" | |
# --> https://whatsmychaincert.com/generate?include_leaf=1&host=webportal.stromnetz-graz.at&submit_btn=Generate+Chain&include_root=1 | |
CUSTOMSTORE='/tmp/webportal.stromnetz-graz.at.chained+root.crt' | |
print('without chain:') | |
try: | |
requests.get('https://webportal.stromnetz-graz.at/login') |
This file contains 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
// using https://github.com/transmute-industries/did-key.js | |
// via https://www.npmjs.com/package/@transmute/did-key-ed25519 | |
const main = async function() { | |
const k = await require('@transmute/did-key-ed25519').Ed25519KeyPair.generate({ | |
secureRandom: () => { | |
return Buffer.from( | |
require('crypto').randomBytes(32), | |
'hex' |
This file contains 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
import json | |
import sys | |
import requests | |
import codecs | |
from requests.utils import get_netrc_auth | |
TMP_FILE = '/tmp/pinboard.json' # May not exist in all platforms | |
default_params = {'format': 'json'} |
This file contains 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 [[ -d $PASSED ]]; then | |
# echo "$PASSED is a directory. Let's convert it." | |
# elif [[ -f $PASSED ]]; then | |
# echo "$PASSED is a file. Try md2org instead?" | |
# exit 2 | |
# else | |
# echo "$PASSED is not valid?" | |
# exit 1 |
This file contains 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
<?php declare(strict_types=1); | |
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; | |
$j = json_decode($json); | |
var_dump($j); | |
var_dump($j->a == NULL); |
We can't make this file beautiful and searchable because it's too large.
This file contains 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
id,title,other_uni | |
BEA.01001PH,"Ästhetik, Kunst und visuelle Kultur (STEOP)",PH_Stmk | |
BEA.02001PI,Introduction to the subject specific professional field of ARTS Education,PPH_Graz | |
BEA.03001PH,Grundlagen bildnerischen Gestaltens I,PH_Stmk | |
BEA.04001PH,Wahrnehmungspsychologie,PH_Stmk | |
BEA.05001PH,Grundlagen der Fachdidaktik,PH_Stmk | |
BEA.06001PH,Grundlagen bildnerischen Gestaltens II,PH_Stmk | |
BEA.07115UB,Introduction to Iconography,Uni Graz | |
BEB.01001PH,Grafik I,PH_Stmk | |
BEB.02001PI,Painting I,PPH_Graz |
NewerOlder