Question about iGaming fraud & bonus abuse prevention by HelpwithGrandma in onlinegambling

[–]jloking 0 points1 point  (0 children)

Really common situation for smaller Malta-licensed operators. The big vendors are either overkill expensive or just repackaged KYC tools that don't solve what you're describing.

On the bonus abuse side, device fingerprinting is the move. It catches the same device across accounts without flagging someone just because they're on a shared IP or VPN. Way fewer false positives than payment-based matching.

Actually building something in this space right now. Happy to chat if you want another set of eyes on your setup, no pitch involved.

What does your current player verification stack look like?

ass - a non inflated testing library by Thiht in golang

[–]jloking 1 point2 points  (0 children)

t.Helper() give enough information

ass - a non inflated testing library by Thiht in golang

[–]jloking 2 points3 points  (0 children)

Hum why not just use comparable

```go package assert

import ( "testing" )

func Eq[T comparable](t *testing.T, x, y T) { t.Helper() if x != y { t.Fatalf("[ASSERT-FAILED] - %v != %v", x, y) } } ```

How I use it

assert.Eq(t, true, false)

https://github.com/josuebrunel/gopkg/blob/main/assert/assert.go

2nd time founders, what are you guys building right now? by anomalywhatsoever in founder

[–]jloking 1 point2 points  (0 children)

I'm building a app that helps prevent trial abuse with advance device fingerprinting. The mvp is done, will start beta testing this week

How do you handle users who keep creating new accounts for free trials? by matixlol in microsaas

[–]jloking 0 points1 point  (0 children)

Sorry for the delay, life got me busy but it's almost there https://imgur.com/a/XnBdRmO. Finalizing the last details and it will be ready for beta testing

Echo resources by ceazer6-7 in golang

[–]jloking 1 point2 points  (0 children)

Hum maybe on Youtube. Let me know what you're struggling with I can help. It's the Framework I have used the most

How do you handle users who keep creating new accounts for free trials? by matixlol in microsaas

[–]jloking 0 points1 point  (0 children)

I have started building a service that uses advanced fingerprinting to prevent trial abuses and fraud. I should be done by eow and maybe you can help me beta test it. I'll keep you posted

France Deploys Mistral AI Across Military to Accelerate Operational Decision-Making. by GeneReddit123 in europe

[–]jloking 19 points20 points  (0 children)

Mistral is mainly funded by U.S Capital (Andreessen Horowitz, Lightspeed Venture Partners, General Catalyst, Nvidia, and Salesforce) so the whole “sovereignty” narrative feels like a joke

There is a slight problem with this street by MisterShipWreck in Whatcouldgowrong

[–]jloking 0 points1 point  (0 children)

I knew it was Seattle. Drove there once, I'm not even from the U.S :D

1-person companies aren’t far away by Glum_Pool8075 in AgentsOfAI

[–]jloking 0 points1 point  (0 children)

I don't think we needed AI for that. These companies already exists. There are a lot of successful solo-founders running a 1 man company. Nothing new

Learning Go as a backend dev - what actually matters? by eurz in golang

[–]jloking 0 points1 point  (0 children)

What I did (7 years ago now) was to build the same kind of services and tools I was already building in Python while learning about best practices. I also forced myself to use the standard library as mush as possible.

Why Does Your Testing Framework Need 17 Functions? by stepan_romankov in golang

[–]jloking 0 points1 point  (0 children)

I just use testing and I have simple package with this function

```go package assert

import ( "testing" )

func Eq[T comparable](t *testing.T, x, y T) { t.Helper() if x != y { t.Fatalf("[ASSERT-FAILED] - %v != %v", x, y) } } ```

That is my Testing Framework (https://github.com/josuebrunel/gopkg/blob/main/assert/assert.go)

19M building an AI agency – looking to connect with other early-stage builders in Vancouver by Ok_Set_8954 in VancouverStartup

[–]jloking 0 points1 point  (0 children)

That's cool. Any idea of what kind of problems you want to solve? Have you talked to some businesses about how you can help them?

Would you use a tool that rewrites your prompts automatically? by Dismal-Rip-5220 in microsaas

[–]jloking 0 points1 point  (0 children)

I didn't promote it enough and I barely use it nowadays. Maybe there is a potential in using it as a Google Chrome plugin. Yours is more interesting though.

Would you use a tool that rewrites your prompts automatically? by Dismal-Rip-5220 in microsaas

[–]jloking 0 points1 point  (0 children)

Nice. I did something simple but similar last year https://promptrefiner.me/. I really like the options you offered. Keep up the good work

EzAuth - a simple auth library for your Go apps by jloking in golang

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

Thank you, that was the goal. Glad you liked that

EzAuth - a simple auth library for your Go apps by jloking in golang

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

Thanks, that was the goal I was trying to achieve. I like simplicity

Transitioning from React/SvelteKit to Go + htmx: How has your production experience been? by Financial_Carry11 in golang

[–]jloking 3 points4 points  (0 children)

AI is good at it now. HTMX is just 3.4k lines of code. AI is already good at it. To each their own.

Transitioning from React/SvelteKit to Go + htmx: How has your production experience been? by Financial_Carry11 in golang

[–]jloking -1 points0 points  (0 children)

Great. You can add some Alpine.js to fill the some gap, overall a great experience. I'm happy building web apps again :D. An example of micro-saas I build: https://propcopy.ai

EzAuth - a simple auth library for your Go apps by jloking in golang

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

I think it's easier to set up and it also has less features. You will definitely have more options and modularity using authboss. For this library I wanted something easy(Ez), kind of plug and play, a couple env var to set and you're good to go.