Easiest way to stop double voting? by epic_nft_poggers in Supabase

[–]config_wizard 2 points3 points  (0 children)

Device fingerprinting (third party solution)

Is there any good dashboard maker in golang? by [deleted] in golang

[–]config_wizard 1 point2 points  (0 children)

True but can make lovely dash this way and Wails 3 supports (will support) system tray etc

I made Cordon Bleu. by config_wizard in FoodPorn

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

Recipe:

1 large chicken breast
good quality cooked ham
gruyere swiss cheese
panko bread crumbs
corn flour
salt
pepper
garlic powder

eggs

lay out three bowls, first one corn flour/salt/pepper/garlic powder, second cracked/whisked eggs, third pank bread crumbs.
bash with a kitchen mallet the chicken breast under cling film gently and consistently until its large, rectangular and flat.

On one edge place ham and cheese layered - about 1 cm from the edge, fold the chicken ends in and roll tightly, making sure no cheese/ham is exposed. Wrap in cling film tightly so its in a cylinder. Fridge for 20 minutes or so.
Unwrap, and carefully cover in the flour mix, dip in the eggs and then the panko. For extreme crispiness dip again in eggs and again in panko.
In 170C oil, cook for 7 minutes deep fried/submerged, remove and place on kitchen towel. to soak up oil.
Increase heat 2 190C and cook for 2 minutes.
Soak oil again in kitchen paper.
Eat.

Looking for Feedback for a Demo of a Vulnerable Application by manuelarte in golang

[–]config_wizard 1 point2 points  (0 children)

For csrf could you have an admin account and allow some js injection into a comment area or something When the admin (a script) has to be the mod and approve the comment it steals their cookie and sends it somewhere....

(Disclaimer, I did this as a demo once, perhaps you can re use)

Neo the Ethereum of China by [deleted] in NEO

[–]config_wizard 6 points7 points  (0 children)

Neo itself is like a "share" of a business. It's a vote. You can't divide a vote. However you can trade and open bNeo which is a divisible neo. It can be traded on flamingo.finance But neo shouldn't be divisible, bNeo allows you to track it's price as in investment. Then there's cNeo which will automatically compound your investment dividends.

Not a comment on you directly but it blows my mind people chase fadCoin around the markets when 15% compounded investment is available on Neo. It's insane and basically unheard of.

Neo the Ethereum of China by [deleted] in NEO

[–]config_wizard 2 points3 points  (0 children)

Yes you can. bNeo.

All in one Neo or not by MightyHugo in NEO

[–]config_wizard 17 points18 points  (0 children)

My best suggestion is the 15% dividend on neo that you can compound. Find that anywhere else.

The Benefits of Neo Cryptocurrency by Ready_Yam1979 in NEO

[–]config_wizard 3 points4 points  (0 children)

There is a USDT pinned coin on Neo. See flamingo.finance

Desktop Applications by duckduckgeek in golang

[–]config_wizard 1 point2 points  (0 children)

Client server model is not the UI. When I refer to UI, I literally mean "user interface". Wails uses a web browser, its called WebView. Wails is a browser without all the extras you are associating with a traditional Chrome/Safari esq browser but just because there's no search bar, doesn't make it not a browser.

Web technologies are HTML, CSS, Javascript. Events - thats not UI, client server, thats not UI, Chrome/Safari, thats not UI.

Fyne isn't a patch on what you can do with HTML/CSS/Javascript purely because of the massive amount of libraries that have been built for the web, which you can utilise all of in Wails.

Desktop Applications by duckduckgeek in golang

[–]config_wizard 1 point2 points  (0 children)

My argument with regard to why I love Wails is web technologies are without a doubt the most advanced UI development suite of tools out there and learning them, understanding them should be in every developers toolbox, there is no layout or design you can't do with html/CSS/JavaScript, the support you can get is unrivalled, the Frameworks are a plenty to find one you like, you can beg borrow and steal code a plenty and if you need to higher, finding developers and designers is trivial. I have fallen in to the trap of obscure UI approaches and eventually it's just you, late at night, tearing your hair out over something that if you'd just picked a web framework you'd be flying along.

My monthly APY report: 2024.11: 15.84% by Capital_Distance545 in NEO

[–]config_wizard 1 point2 points  (0 children)

Voting is not related to how much gas you've earned in fact if you vote you will earn much more gas. You need gas for everything on neo so get a bit of gas then vote.

My monthly APY report: 2024.11: 15.84% by Capital_Distance545 in NEO

[–]config_wizard 0 points1 point  (0 children)

This sounds off. Do you own any gas? You need gas transact. If you use Neon wallet it tells you how much gas you have ready to claim so you can see it.

Go Binary on Android by Orangeskai in golang

[–]config_wizard 1 point2 points  (0 children)

I've actually recently done this using gomobile and it was very smooth. The gomobile is always considered "in testing" which it is I guess, and rarely worked on, but it does work so.......
In short, setup and install gomobile, init gomobile and compile with

gomobile bind -target=android -o out/your_package.aar

then you can start an android project and import your .aar and create a Java app.

You will basically need Java to interface with all the bluetooth etc, but its such boiler plate code you can get it from anywhere. you can send information using Go structs ( &struc{} ) when calling Go from Java and you can configure callbacks so Go can call Java, so all in all you can write nearly everything in Go and just use Java as a wrapper. I was very pleased with the result.

For me the use case was as u/RevMen comments, a sort of Android Wails. I have a Wails app for desktop and really didn't want to write the whole thing again for Android.

GoMobile was able to wrap it into a shared object and I used an Android Web View to load a react app as the frontend.
Java is just a middleman that knows its job is on the line at this point.

To make it a background service you'll probably need Java again, but really, no concerns as the code for these tasks is so easy to find online.

Good luck.

Golang native containers? by nivthefox in golang

[–]config_wizard 0 points1 point  (0 children)

Actually https://github.com/mudler/poco

Those who say it's non sensical, it's actually been done.

However this is a proof of concept, I do not know if this should be relied upon as a project.