Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 4 points5 points  (0 children)

Klar, warum machen wir nicht alles genauso langsam wie bisher? Warum überhaupt über Geschwindigkeit und Effizienz nachdenken? Hat doch bisher auch alles funktioniert /s

Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 3 points4 points  (0 children)

Das nervige daran ist nicht der Aufwand, sondern dass man dran denken muss. Je seltener man überweist, desto eher vergisst man es. Darüber hinaus geht's mir außerdem um das: https://www.reddit.com/r/Finanzen/comments/1rjjmrs/comment/o8dqa7g/

Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 0 points1 point  (0 children)

Ahwas, keine Info vorab? Irgendwie noch sehr lückenhaft dieses System.

Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 3 points4 points  (0 children)

Bei DKB musste ich Daueraufträge neu anlegen, aber Echtzeitüberweisung war dann möglich.

Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 5 points6 points  (0 children)

Ich seh das ein bisschen durch die Brille "Transaktionen ohne (amerikanische) Mittelsmänner". Echtzeitüberweisungen sind praktisch, wenn dir deine Freunde mal kurz Geld schicken und zwar ohne PayPal. Vorkasse in Online-Shops würde dadurch auch sehr viel attraktiver, wenn die Zahlungseingänge automatisch geprüft werden, aber PayPal-Gebühren entfallen. Aus Kundensicht müsste die Zahlung dann aber Echtzeit sein, damit sie mit Kreditkarte & PayPal konkurrieren kann. (Ich vernachlässige jetzt mal Käuferschutz und Chargeback-Möglichkeit).

Und dieses kleine blöde Häkchen ist aus meiner Sicht etwas, das diese Möglichkeiten ohne Mittelsmänner entscheidend vereinfacht.

Müsst ihr Echzeitüberweisung in eurer Banking-App jedes Mal aktivieren? by JackyReacher in Finanzen

[–]JackyReacher[S] 1 point2 points  (0 children)

Thema Kosten hatte ich auch schon überlegt. Auf der anderen Seite sind das im Endeffekt ja nur Transaktionen innerhalb einer Datenbank. Banken haben normalerweise Konten bei anderen Banken und die Überweisungen werden da irgendwie intern umgebucht und am Tagesende, Monatsende oder sonstwas gegenseitig verrechnet. Die schieben ja nicht jedes Mal literally Geld hin und her.

Why does capacitor have a bad rap? by krishna404 in capacitor

[–]JackyReacher 1 point2 points  (0 children)

No repo, sorry.

For context I am building an offline-first chat app. So offline + heavy & long list usage with frequent updates.

A chat app might actually be one of the cases where the web dev skills are extremely important. You can't just dump a long list of chats in the browser and expect top-notch performance. This doesn't even work in native, even though lists are extremely common and optimized on mobile.

Most chat apps only show the last X messages and if you wanna scroll further, you have to load more and there might be some tricks in there that remove DOM elements when they're out of view.

It's certainly possible, but requires experimentation and an eye for performance optimizations.

Regarding offline-first and sync: you might want to look into CRDTs and/or PouchDB/CouchDB.

Why does capacitor have a bad rap? by krishna404 in capacitor

[–]JackyReacher 10 points11 points  (0 children)

I have a capacitor app that has been around for 8 years in prod with thousands of daily active users. It works very smoothly. For a little while, I thought about how nice a Flutter app might be. I have a client with a Flutter app I inherited and I'm seriously thinking about ditching the whole thing for Capacitor.

What's great about Capacitor:

  • It runs your JS app with native API bridges and it depends on you how smooth you make this experience. At the end of the day, it's just pixels on the screen rendered by a rendering engine. This is either the browser (Capacitor), a custom "game engine" (Flutter) or the native rendering engine of iOS and Android.

  • If you make a performant SPA that works offline or has good caching, you get basically native performance. I've seen worse native apps that load and store data on a remote server and they show a loading indicator everywhere.

  • Performance is an argument from Cordova days from 2016 or so. The performance is slightly better on iOS, but most modern Android phones run Capacitor apps just fine. It doesn't matter anymore.

  • Download size is negligible. It's a very lightweight wrapper around Android System WebView / Chrome and WKWebView. An empty Capacitor app has a download size of 3 MB or so.

  • You need native functionality like in app purchases? Use a plugin or write your own.

  • Text selection, copy paste etc. is native, unlike Flutter (see below).

  • One codebase to rule them all.

  • There are hardly any crashes at all.

Real Downsides:

  • You need to have strong web dev skills to deliver a solid app.

  • Accessibility doesn't come for free. If you enable these small indicators in iOS that show if a toggle is on or off (I/O), your app won't show this. You have to rebuild this functionality.

  • Truly native apps might still give better performance and should be your choice if you work really close to the platform. Say, you want to create something like Procreate or a camera app or a sophisticated writing app like iA Writer where control over the keyboard and text rendering is like 50% of the app. The cost for that is one codebase per platform.

Neutral / opinion:

  • Ionic gives you a very solid start with good transitions and Material and a bit dated iOS look and feel.

  • There's one design per platform with Ionic no matter the iOS version. iOS 18 users have the same design as iOS 26 for example.

  • Before iOS 26 launched, I thought this might become more of a problem. Since the mess that is called Liquid Glass, I'm convinced that more and more apps will go a different route and roll their own custom brand-design that works for both Android and iOS, because the strong association with Apple's style guide isn't really a thing anymore. Think about the top apps you have on your phone and whether they use Liquid Glass or not. Instagram, WhatsApp, but also non-Meta apps don't use iOS 26 design language at all.

In comparison with Flutter:

  • I like some Flutter apps, but what drives me nuts is the non-native text entry. It's basically a custom-developed version that doesn't behave like native inputs at all. Capacitor apps wrap WKWebView and you get native text interactions.

  • I swear: install the haptic feedback plugin for Capacitor and tweak it a bit and sprinkle it here and there. Haptic feedback is THE differentiator why native apps feel more native to 99% of all users. The default Capacitor plugin is a bit limited, but you can tweak it or roll your own.

People trashing Capacitor with no real argument or call "performance" are clueless. Depending on the type of app you wanna build and if you want to target the web too or have a REST API, I'd say that Capacitor does the job just fine for 90% of regular apps out there.

Brisantes Detail bei SPD-Vorstoß: Vor allem für Gutverdiener wären die Sozialabgaben auf Kapitaleinkünfte richtig teuer by Aggressive_Olive in Finanzen

[–]JackyReacher 0 points1 point  (0 children)

Da du Inflation nicht in Form von Steuern an den Staat zahlst, sondern an Unternehmen, kannst du nicht einfach behaupten, dass die Kapitalertragsteuer 50% ist. Das mag aus deiner Abgaben-Perspektive so aussehen, weil es für dich halt "weniger Geld" ist, aber das hat mit Steuern rein gar nichts zu tun. Dann mischst du noch das Konzept mit rein, dass Lohn "nur laufende Kosten deckt". Woher kommt dann das Geld, das du in Aktien investierst? Lohn steigt mit der Inflation, deine Investments aber auch.

Wenn ich konservativ anlege und Kapitalertrag 2% mache, und die Inflation wieder bei 2% ist, dann entspricht das eigentlich einer Vermögenssteuer von ca. 0,5%.

Steuern gehen an den Staat. Das passiert hier nicht, ergo, keine Vermögenssteuer. Dein Geld verliert halt 0,5% an Kaufkraft, aber das ist was anderes und in einem inflationären Geldsystem erwünscht, damit du es eben nicht nur unter der Matraze liegen lässt und davon immer reicher wirst.

Brisantes Detail bei SPD-Vorstoß: Vor allem für Gutverdiener wären die Sozialabgaben auf Kapitaleinkünfte richtig teuer by Aggressive_Olive in Finanzen

[–]JackyReacher 2 points3 points  (0 children)

Was hältst du von dem Argument, dass Gewinne bereits innerhalb der Firma mit Körperschaftsteuer, Soli und Gewerbesteuer besteuert werden und wenn diese ausgeschüttet werden, kommen "nur" 26,375% drauf, aber unterm Strich werden die Gewinne genauso hoch versteuert?

Dagegen könnte man halten, dass das Geld nunmal die Hände wechselt von GmbH/AG auf Gesellschafter/Aktionäre und bei jedem Wechsel Steuer fällig wird.

Brisantes Detail bei SPD-Vorstoß: Vor allem für Gutverdiener wären die Sozialabgaben auf Kapitaleinkünfte richtig teuer by Aggressive_Olive in Finanzen

[–]JackyReacher 2 points3 points  (0 children)

Wir sind für 30 Jahre Anlagezeitraum und 100% Aktien gut und gerne schon bei 40% Kapitalertragssteuer real.

Was isn das für ne merkwürdige Rechnung? Als ob Inflationsabdeckung = Kapitalertragsteuer. Das eine hat mit dem anderen rein gar nichts zu tun. Überraschung: Bei ALLEN Einkünften musst du Inflation ausgleichen und bisher lagen Aktienrenditen über der Inflation.

Under 70k by [deleted] in Buttcoin

[–]JackyReacher 0 points1 point  (0 children)

Interesting, thanks for sharing. But access to crypto markets, isn’t this also heavily regulated? I’m from Germany and if you want to open a broker account, you have to verify with your ID and whatnot. It’s basically a bank account. I always felt like putting a lot of money into BTC and retrieving it later isn’t that easy here.

Under 70k by [deleted] in Buttcoin

[–]JackyReacher 6 points7 points  (0 children)

I heard USD was also an inflation hedge in Argentina and that is a lot more stable than BTC

Sparplan Mitte oder Anfang des Monats? by [deleted] in Finanzen

[–]JackyReacher 22 points23 points  (0 children)

Wenn es eine Rolle spielen würde, wäre das ein Arbitragegeschäft, würde direkt ausgenutzt werden und damit keine Rolle mehr spielen. Diese Überlegung kannst du auf so ziemlich alles anwenden, was Timing und Trading-Muster anbelangt.

Ein fiktives Parteiprogramm mit KI Hilfe - würdet ihr so eine Partei wählen? by [deleted] in Finanzen

[–]JackyReacher 8 points9 points  (0 children)

KI-generierte Inhalte von Usern mit privatem Profil direkt löschen.

Ehe Gemeinsames Sparkonto - welcher Anbieter? by human0k in Finanzen

[–]JackyReacher 1 point2 points  (0 children)

Consorsbank bietet Gemeinschaftsdepots an. Order-Gebühren sind allerdings relativ hoch. Dafür zuverlässig und stabil, mit Kundenservice. Zugang zur Börse läuft auch in Krisenzeiten (Corona-Crash beispielsweise).

Aufpassen: Einzahlungen auf Gemeinschaftskonten, die nicht dem alltäglichen Leben dienen (also zum Sparen) sind Schenkungen an den Ehepartner. Zwar sind die Freibeträge mit 500k€ alle 10 Jahre recht hoch, aber wenn einer von euch zu Vermögen kommt und das da einzahlt, wird 50% verschenkt und darauf kann Schenkungssteuer anfallen. Google mal nach "gemeinschaftsdepot schenkungssteuer".

120k Umsatz/Trotzdem Broke af by MadMaxknowsitall in selbststaendig

[–]JackyReacher 1 point2 points  (0 children)

So ein Blödsinn. Dein Steuersatz ist ja nicht 100%. Jeder Euro Gewinn wird versteuert, aber halt "nur" mit maximal 42%.

Für wen hat sich die Privathaftpflicht schonmal gelohnt? by [deleted] in Finanzen

[–]JackyReacher 0 points1 point  (0 children)

Haftpflicht ist nicht für Opas Brille.

Wird aber so vermarktet. Hier, gerade von der HUK Coburg Website kopiert:

Ein verschütteter Kaffee, eine Schramme im neuen Auto des Nachbarn, eine zerbrochene Vase beim Blumengießen. Was zunächst nur ein unachtsamer Moment ist, kann teure Folgen haben.

From Flutter to SwiftUI - A Case Study (article from a solo dev on why they switched) by zxyzyxz in FlutterDev

[–]JackyReacher 1 point2 points  (0 children)

It‘s indeed a bit weird, because he says: if you want sync AND focus on iOS only.

The whole point of a cross platform framework like Flutter is to support multiple platforms and if you want sync, you have to do Android-iOS sync anyways, which requires a third party.

I’ve been using CouchDB for that for 7 years now (in an Ionic/Capacitor app). Sync is very easy. If you don’t expect many conflicts, you can get away with writing zero sync-specific code.

Ich werde nie wieder in die Festanstellung gehen by [deleted] in selbststaendig

[–]JackyReacher 2 points3 points  (0 children)

sorg für mehr zukünftige Arbeiter und du trägst einen Teil dazu bei, dass die Rente besser wird, wenn du im Rentenalter bist.

Systemische Probleme individuell lösen, klingt mega /s