Entries tagged as financeRelated tags austria android fail fun german internet language machine learning phone public transport crypto rant software sustainability antenna anti-spam automobile ballooning cw debian education event gnucash perl programming bash bug hardware history image processing career google cloud mathematicsThursday, June 14. 2018Bank für Gemeinwohl - Der Anfang vom Ende![]() Aus dem aktuellen Newsletter und in Anspielung auf mein „Ende vorm Anfang“:
Darüber bin ich ja eh nicht ganz unglücklich.
War eh quasi eine Spende.
Na na, das geht jetzt aber doch ein bisschen schnell: Plötzlich ist eine strategische Neuausrichtung vollzogen und ein alternativer Weg bekannt? Wie soll das aussehen, was sind die Möglichkeiten, und wieso wird das plötzlich funktionieren? Meine Bereitschaft für Experimente ist irgendwie gesunken. Vermutlich geht es aber um diese Gemeinwohlprüfung von Projekten Dritter. Ich sehe mir das mal an, habe aber eher die Tendenz, mich auszuklinken. Monday, April 16. 2018My anti crypto coins rant![]() My experiment with crypto coins is over. (No, these are no currencies.) Last summer, when the crypto hype started taking off, I decided to get my hands dirty and to learn what’s up with this stuff. I decided to spend around €50 on each of a few established crypto coins and expected to lose them all. My take-away now is: I’m so glad I got everything back into real money. Crypto coins are a fad and will not revolutionize anything in this shape but scam. Crypto coins only work in times of (relative) stability and working infrastructure. Crypto coins are no way to protect wealth from disasters such as weather, government, nuclear meltdown or financial system meltdown. Crypto coins need way too much energy, they live in a world of busily buzzing networks and heated-up CPUs and GPUs. All this crypto stuff is not ready for prime time (or has its prime time already passed?), it’s much too complicated, you have to have too much and too deep technical knowledge to be able to handle your funds. Here are some examples I experienced myself:
It might well be that blockchain and smart contracts reach a plateau of productivity one day, but I downright hope that crypto coins will not. Mining rigs are placed in containers next to power plants! Finance portals publish crypto reports as if these were a regular asset class! For the times ahead, better invest into something tangible or into capital that cannot be raided, like social capital or knowledge capital. I want to know something, be able to do and rely on something that does not depend on a running and ever-consuming industrial infrastructure. Sunday, January 7. 2018Bank für Gemeinwohl - Das Ende vorm Anfang![]() Kurz nach meiner Analyse bin ich ja tatsächlich Genossenschafter geworden (wenn auch zunächst nur mit minimalem finanziellen Aufwand). Nun lese ich im aktuellen Newsletter (Hervorhebungen von mir):
Danke, genügt. Sehen wir uns mal kurz ein paar Stichworte zur GLS Gemeinschaftsbank an. Wie hieß es doch gleich zu den Alternativbanken:
Und was lesen wir zu Anthroposophie bei Wikipedia:
Danke, genügt! Aber der Fairness halber schauen wir auch direkt zum Artikel zur GLS Gemeinschaftsbank:
Danke, genügt, aber sowas von! Je nach Ausgang der außerordentlichen Generalversammlung am 20. Jänner 2018 wird sich zeigen, ob ich aus der Genossenschaft austreten muss, weil ich meinen Namen nicht auf der Liste aktiver Mitglieder einer esoterisch orientierten Vereinigung sehen will. Das von mir eingebrachte Kapital soll von mir aus dann drin bleiben, ich betrachte es gemäß meiner Analyse als Spende, und von mir aus bleibt auch die Nachschusspflicht für mich weiterhin aufrecht. Hauptsache, sie gehen ihren Weg in dem Fall ohne mich weiter. Nichtsdestotrotz ist es schade, dass sich eine weltliche Alternative zu einem ethisch bewussten Finanzwesen in Österreich nur schwer etablieren kann. Aber wir sind nun mal nur so groß wie ein Bundesland von Deutschland, in diesem kleineren Gewässer lässt sich offenbar auch schwerer nach den nötigen Ressourcen angeln. Thursday, December 14. 2017Working around the Yahoo Finance API shutdown disaster![]() A roaring went through the tech-savvy finance community when Yahoo suddenly shut down its Finance API on Nov 1, 2017. Dozens of libraries and scripts that had parsed HTTP output from this API for years ceased to work. No longer could libraries such as Finance::Quote query prices of stocks, funds and currencies and hand these over to other applications such as GnuCash. By using Finance::Quote—I even wrote an extension module for it—I was affected as well, and finally I stumbled upon a solution: Version 1.41 recently introduced an Alpha Vantage module, and querying this source instead of Yahoo is straightforward. Unfortunately, using Debian or Ubuntu one has to install this version from source, but it's not that hard to do. And for using Alpha Vantage, you have to register for an API key, but that's also no issue. One of the things that still don't work is currency conversion, as that module is still tied to Yahoo's interface. Alpha Vantage does provide currency conversion through its API, though. Looking at AlphaVantage.pm I recreated a simple Perl logic to perform currency conversion. Note that I haven't packed it into a real Finance::Quote module, it's just a simple Perl script that Works For Me™. For simplicity, I don't do any error handling. It relies on an environment variable that contains the API key. Here's how I did it: #!/usr/bin/perl -w
use lib '/home/user/lib/perl'; #not needed#use Finance::Quote; #debug#use Data::Dumper; use JSON qw( decode_json ); use HTTP::Request::Common; my $pair = $ARGV[0]; # e.g. "XAU:EUR" for gold price in Euro @curr = split( /:/, $pair ); my $API_KEY = $ENV{'ALPHAVANTAGE_API_KEY'}; $url = "https://www.alphavantage.co/query" . "?function=CURRENCY_EXCHANGE_RATE" . "&from_currency=" . $curr[0] . "&to_currency=" . $curr[1] . "&apikey=" . $API_KEY; $ua = LWP::UserAgent->new; $reply = $ua->request(GET $url); #debug#my $code = $reply->code; #debug#my $desc = HTTP::Status::status_message($code); my $body = $reply->content; my $json_data = JSON::decode_json $body; #debug#print Dumper(\$json_data); my %fx = %{$json_data->{'Realtime Currency Exchange Rate'}}; my $last_refresh = $fx{'6. Last Refreshed'}; $last_refresh = substr($last_refresh, 0, 10); # remove time my $isodate = substr($last_refresh, 0, 10); my $rate = $fx{'5. Exchange Rate'}; print $isodate . ' ' . $rate . "\n"; Tuesday, August 9. 2016Bank für Gemeinwohl – Risiken![]() Ich habe mir vor kurzem den Kapitalmarktprospekt der in Gründung befindlichen Bank für Gemeinwohl AG durchgelesen. Hier besteht eine Genossenschaft, deren Anteile man zeichnen kann, und diese wird Eigentümerin der AG sein – eigentlich eine alte Idee. Für diese AG soll dann eine Banklizenz bei der FMA beantragt werden, sofern das nötige Stammkapital zustande kommt. Die Frist hierfür ist (zunächst) der 31. Dezember 2017. Ich habe mir mal die nicht so offensichtlichen Risiken (wie es die operativen etc. wären) herausdestilliert:
Das Ganze läuft also definitiv unter dem Thema Wohltätigkeit und ist kostenmäßig irgendwie das Doppelte von dem, weswegen ich vor einigen Jahren zu einer Direktbank gewechselt bin. Andererseits hat unser Finanzsystem dringend Änderungen nötig, und für diese können nicht immer nur „die anderen“ sorgen. Außerdem sind die Ethikbanken/Alternativbanken im deutschsprachigen Raum ausgerechnet von Kirchen dominiert, also wäre hier mal ein Gegengewicht angebracht. Ich werde also sehr wahrscheinlich Anteile zeichnen. Tuesday, February 28. 2012How to add new quote sources to GnuCash![]() ... or, actually, to Perl’s Finance::Quote, under Ubuntu 11.10:
Your new quote source should now be available to GnuCash:
(Page 1 of 1, totaling 6 entries)
|
AboutCalendar
ArchivesCategoriesShow tagged entriesandroid antenna anti-spam apache astronomy austria automobile bash bluetooth bug career cloud collecting comic cooking cw debian diy dreams education electronics fail fashion finance flickr fun gentoo geography german gnu-linux gnucash google google earth graphics guitar hardware history image processing internet kernel kids language lifestyle linkroll literature ltd machine learning making mallorca mathematics matlab microsoft migration movies munich music nautilus numismatics octave pdf perl philately philosophy phone photo gear photography physics podcast politics postfix private programming public transport rant religion review salzburg samsung science security shtf social web software statistics storage sustainability symbian tablet time lapse transceiver tv usenet venice video virtualization wordplay work www yahoo youtube
Syndicate This BlogFollow meBookmarks
Powered by |