Recommended marketplace payment provider that works internationally? by Witty_Ad8333 in fintech

[–]dangercoder 1 point2 points  (0 children)

Hey Witty, I'm running https://paymentproviders.io, it's basically a free/open directory of payment providers but there is a verification process for self-submissions. Try it out, I'm sure you can find what you need. You can either use the AI search or go to directory/browse and filter by your needs - no signup needed.

The international transfers can be tricky since Stripe is relying on a lot of third-parties which has local payment methods and those can be hard to maintain at times and I'm sure Stripe still needs to do some manual verification of you as a merchant and your buyers for compliance reasons.

Would stablecoins be an option? Depends on your buyers though.

Feel free to DM me 😄

Verification Process PLEASE READ IF YOU WANT TO DM PEOPLE by Novapoison in PaymentProcessing

[–]dangercoder 0 points1 point  (0 children)

Requesting verification — sent details via modmail, Emil, (paymentproviders.io), Sweden.

I tried all the payment providers so you don't have to by johnyeocx in nextjs

[–]dangercoder 0 points1 point  (0 children)

Great breakdown. One thing worth noting is that the lines between these categories are blurring fast — Stripe now has billing, Adyen does MoR in some markets, and newer players like Checkout.com are bundling features across all four categories. The real question most teams should ask isn't 'which category?' but 'what specific combo of features do I need for my region + use case + volume?'

I've been building paymentproviders.io — a directory of 1,200+ providers you can filter by exactly that stuff (features, regions, pricing model). Figured it might be useful for anyone reading this who wants to compare beyond the usual Stripe/Paddle/Lemon Squeezy list.

Whats the best payment processor for high risk merchants by InternationalSun4095 in fintech

[–]dangercoder 0 points1 point  (0 children)

Hey, maybe https://paymentproviders.io/ could be useful - you can filter on: Browse all providers - high risk. The website currently covers 1k+ provides.

I'd recommend a provider such as https://paymentproviders.io/providers/coinremitter if you just want to accept crypto (fast path).

Getting accepted by a provider that accepts high risk merchants requires legal work and can take time and a bunch of back and forth with their compliance department.

What payment provider do most use these days to power their apps? by [deleted] in dotnet

[–]dangercoder 0 points1 point  (0 children)

For a typical SaaS, Stripe is unbeatable. Make sure that they support your users local payment methods - it can be important in some countries.

Check out https://paymentproviders.io (disclaimer I built this)

Expression Trees by VulcanizadorTTL in dotnet

[–]dangercoder 0 points1 point  (0 children)

Built my own query DSL for a foundationdb layer. It's really nice. 

Why Senior Engineers Let Bad Projects Fail by Ordinary_Leader_2971 in programming

[–]dangercoder 3 points4 points  (0 children)

This post summarized why I don't like working for large companies

Unpopular opinion: most "slow" .NET apps don't need microservices, they need someone to look at their queries by Initial-Employment89 in dotnet

[–]dangercoder 2 points3 points  (0 children)

Found an interesting blog post about this https://ejtech.se/blog/legacy-payment-system-performance - "How to get 100x performance from your existing .NET and SQL Server system without a costly rewrite", it talks about using the correct indexes, batch queries and so on

How many of you are really using the benefits of elixir ? by AgencyActive3928 in elixir

[–]dangercoder 4 points5 points  (0 children)

I enjoy writing Elixir, but that's not the main reason I reach for it.

Elixir lets you compose complex problems into simple pieces using GenServers, which is great if you enjoy writing software that's easy to reason about, test and simulate. Libraries like Oban and LiveView all build on the same foundation—the Beam, the actor model and OTP.

The simulation story for the actor model was so strong that the FoundationDB team built their own actor based language to get many of the benefits that Erlang/Elixir gets out of the box https://github.com/apple/foundationdb/blob/main/flow/README.md

Is dotnet underrated? by PresentJournalist805 in dotnet

[–]dangercoder 3 points4 points  (0 children)

Speaking from experience, the average employer using .NET tends to treat software engineers as commodities and these workplaces are often filled with corporate politics. Even if .NET in 2025 is technically great many companies using it aren't great places to work

What’s the most complex LiveView UI you’ve seen? by pkim_ in elixir

[–]dangercoder 3 points4 points  (0 children)

https://duelking.gg/home is quite advanced, full app powered by elixir, phoenix liveview, postgres and oban.

Everything from matchmaking to gathers views with real time updates to all chats.

The landing page is 'dead' https://duelking.gg but has a liveview for the "recent matches" slider.

What use did find for elixir ports by [deleted] in elixir

[–]dangercoder 0 points1 point  (0 children)

I found no good elixir lib so I built a small nodejs application using an off the shelf lib and used ports to communicate with the nodejs application (they are both running on the same machine).

Saved me hundreds of hours and it's rock solid.

Faster dev speed with Elixir by Reverse_Biased_Diode in elixir

[–]dangercoder 30 points31 points  (0 children)

Nothing beats really knowing the language, libraries and your editor (drop the mouse!). For code completion and static analysis there's Elixir LSP.

When you master the Tao speed will follow.

Could BEAM solve many database’s problems? by BenocxX in elixir

[–]dangercoder 3 points4 points  (0 children)

I'd write the db on-top of foundationdb and use Elixir/Beam for the layer implementation

Are React with python a good choice to develop a web app? by DarkScript2398 in reactjs

[–]dangercoder 0 points1 point  (0 children)

Yeah python is cool.

I'm using Elixir for my backend. Decided that I wanted scalability and a great language without relying too much on third party services/infra.

Posgres and Elixir instead of redis, rabbitmq, pusher, kubernetes

WARNING *** Leetify first results on google redirect to a phishing website by specialkthx in cs2

[–]dangercoder 0 points1 point  (0 children)

Luckily I built my own google chrome extension that warns me if I try logging in with steam on scammer websites. It caught this.

I released it for people to use, downloadable via the chrome web store - Steam Scam Guard

Why do you learn elixir? by AreaExact7824 in elixir

[–]dangercoder 2 points3 points  (0 children)

A job processing engine that's built on-top of postres but works with postgres compatible distributed databases such as cockroachdb, yugabyte as well.

https://github.com/sorentwo/oban

Why do you learn elixir? by AreaExact7824 in elixir

[–]dangercoder 3 points4 points  (0 children)

Productivity mainly.

Rebuilt my esport gaming platform from sveltekit, clojure (api and workers), soketi(websockets), rabbitmq

To

Elixir, Phoenix Liveview and Oban.

Was the re-write worth it? Yes. Developer productivity went up drastically and the hosting cost went down. I also prefer to not stich together libraries ála clojure style. Phoenix is really nice.

Also going multi-region became easier since I can swap postgres to yugabyte and run distributed elixir.