summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-11-12 22:37:22 +0100
committermakefu <github@syntax-fehler.de>2011-11-12 22:37:22 +0100
commit61dba025637b9f26243311afdcc96cad1bb934d2 (patch)
treebf279e5be4d9aa95961751dc2e6a5f8354d77cff
parent4120ded2c85c82ab58d92ff922c50ed7ba19f22e (diff)
parent2a85942bb7b227b80275dfdf6ee88814b86f4dbb (diff)
Merge branch 'master' of github.com:krebscode/painload
-rw-r--r--cholerab/reports/Empera.txt53
-rwxr-xr-xpunani/tightnani/tightnani-web.py48
-rw-r--r--punani/tightnani/tightnani_db25
3 files changed, 126 insertions, 0 deletions
diff --git a/cholerab/reports/Empera.txt b/cholerab/reports/Empera.txt
new file mode 100644
index 00000000..e972c8c7
--- /dev/null
+++ b/cholerab/reports/Empera.txt
@@ -0,0 +1,53 @@
+Datum: 2011-11-11 22:13
+
+Zutaten:
+ - 250ml La Emperatriz 2006 CRIANZA RIOJA (13,5% VOL) EM No 825078 (EUR 11.5)
+ - 3mg b0463c6c9cc0ab65a467d620be5a40f1217f1038 Pulver
+ - 50mg d5fe8c3fc8ba214b334c6eb6cdae6b3dcc0d63e3 Gelantine-Kapsel
+ - 5mg Zink Gelantine-Kapsel
+ - 300mg C Gelantine-Kapsel
+ - 300mg Mg gepresst
+ - 100mg B6 gepresst
+ - 95.2mg Fe(II) Dragee
+
+Probanden:
+ 3x mit super-vollem Magen, ein Proband ohne Kapsel
+
+Start: 2011-11-11 22:35:09+01:00
+
+Farbe: Super-Schwarz-Rot
+
+Gerucht:
+ frisch und fruchtig
+ hat was von Brombeeren
+ Organisch
+ leicht gammelig (hat was von fauligen Pflaumen)
+
+Geschmack:
+ halb-trocken
+ fast bisschen zu fruchtig
+ finde ich nicht zu fruchtig
+ bisschen bitter
+ besser zu Nudelgericht (wir hatten dicke Nudelsuppe)
+ leichte Zitrusnote im Abgang
+ der hat das Ekelhafte, was auch andere schaebige Weine haben
+ fuer melancholische Sommerabende (man kann die letzten Sonnenstrahlen
+ rausspuehren)--da wurde doch einer gepanscht
+ Eine echte Emperatriz--eine Dame des Hasses.
+ Wuerde definitiv gut gehen mit was halbwegs herzhaften zu Essen.
+ ganz und garnicht lieblich.
+
+Fazit:
+ Trinkbar aber nicht der Beste.
+ Ich hatte auch schon Bessere.
+ ALDI-Weine sind billiger und besser.
+ Sie verspricht mehr als sie haelt.
+ Ich wuerd sie wieder tun.
+
+Checkpoint: 2011-11-11 23:05:24+01:00
+
+SpO₂: 98 96 97
+
+BPM: 71 75 73
+
+
diff --git a/punani/tightnani/tightnani-web.py b/punani/tightnani/tightnani-web.py
new file mode 100755
index 00000000..52f5004f
--- /dev/null
+++ b/punani/tightnani/tightnani-web.py
@@ -0,0 +1,48 @@
+#!/usr/bin/python
+
+import web
+import json
+
+urls = (
+ '/', 'Index',
+ '/dump','Dump',
+ '/reload','Reload',
+ '/(.+)/(.+)', 'ArchFinder',
+)
+
+
+PDB_FILE="tightnani_db"
+
+pdb= json.load(open(PDB_FILE))
+
+class Index:
+ def GET(self):
+ ret = """Welcome to the Tightnani API<br/>
+Retrieve a package name for your distribution with: /ARCH/PKG"""
+ return ret
+
+class Reload:
+ def GET(self):
+ pdb= json.load(open(PDB_FILE))
+ return "DB reloaded"
+
+
+class Dump:
+ def GET(self):
+ return json.dumps(pdb,sort_keys=True,indent=4)
+
+class ArchFinder:
+ def GET(self,packer,package):
+ if not packer or not package: web.BadRequest()
+ else:
+ packer = pdb['packer-symlinks'].get(packer,packer) #try to resolve similar packers
+ ret = pdb.get(package,{}).get(packer,False)
+ if not ret: web.NotFound()
+ else: return ret
+
+
+
+if __name__ == "__main__":
+ app = web.application(urls,globals())
+ app.internalerror = web.debugerror
+ app.run()
diff --git a/punani/tightnani/tightnani_db b/punani/tightnani/tightnani_db
new file mode 100644
index 00000000..d15a9ad4
--- /dev/null
+++ b/punani/tightnani/tightnani_db
@@ -0,0 +1,25 @@
+{
+ "packer-symlinks" : {
+ "packer" : "yaourt",
+ "aptitude" : "apt-get",
+ "bauerbill" : "yaourt"
+ },
+ "vim" : {
+ "apt-get" : "vim",
+ "pacman" : "vim",
+ "brew" : "vim",
+ "yum" : "vim"
+ },
+ "python" : {
+ "apt-get" : "python",
+ "pacman" : "python2"
+ },
+ "python2" : {
+ "apt-get" : "python",
+ "pacman" : "python2"
+ },
+ "python3" : {
+ "apt-get" : "python3",
+ "pacman" : "python"
+ }
+}