Allgemein – Bitkorn Blog https://blog.bitkorn.de Developer Zeugz Wed, 08 Mar 2023 09:56:25 +0000 de-DE hourly 1 https://wordpress.org/?v=6.3.1 Tastenkombinationen https://blog.bitkorn.de/tastenkombinationen/ Wed, 08 Mar 2023 09:56:25 +0000 https://blog.bitkorn.de/?p=1220 Durchmesser AltGr + Shift + O

]]>
PostgreSQL FOR IN SELECT LOOP FUNCTION https://blog.bitkorn.de/postgresql-for-in-select-loop-function/ Thu, 01 Oct 2020 10:33:11 +0000 http://blog.bitkorn.de/?p=857 CREATE OR REPLACE FUNCTION lerp_get_order_summary(p_order_uuid uuid, OUT o_total_sum real, OUT o_total_sum_tax real, OUT o_total_sum_end real) as $$ DECLARE tmp_row RECORD; BEGIN o_total_sum := 0; o_total_sum_tax := 0; FOR tmp_row IN SELECT order_item_price, order_item_price_total, order_item_taxp FROM order_item WHERE order_uuid = p_order_uuid LOOP o_total_sum := o_total_sum + tmp_row.order_item_price_total; o_total_sum_tax := o_total_sum_tax + (tmp_row.order_item_price_total * (tmp_row.order_item_taxp / 100::float)); -- 100.0 or 100::float ...otherwise result is 0 END LOOP; o_total_sum := o_total_sum; o_total_sum_tax := o_total_sum_tax; o_total_sum_end := o_total_sum + o_total_sum_tax; END; $$ LANGUAGE plpgsql; alter function lerp_get_order_summary(uuid) owner to postgres; ]]> E-Perso mit Reiner SCT unter Ubuntu https://blog.bitkorn.de/e-perso-mit-reiner-sct-unter-ubuntu/ Wed, 23 Sep 2020 08:50:13 +0000 http://blog.bitkorn.de/?p=849 sudo apt install pcsc-tools sudo apt install libifd-cyberjack6 sudo apt install libccid

Und laut wiki.ubuntuusers.de/Elektronischer_Personalausweis noch:

sudo apt install libusb-dev libpcsclite-dev

und

sudo add-apt-repository ppa:misery/ppa

Das ppa bringt updates für: ausweisapp2 libccid libifd-cyberjack6

Die libccid ist bei Reiner SCT als Treiber nur in einer alten Version verfügbar.

Leider kann der Befehl pcsc_scan nicht die daten auslesen. Aber, es erkennt den DE Ausweis.

openecard.org

sudo apt install ausweisapp2

…damit funktioniert es.

]]>