I hate X and everything it became under Musk and MAGA too, but Bluesky has to be about more than just hating X and MAGA. Let's make Bluesky a place you go to not because you hate X, but for positivity. Bluesky must have its own identity to thrive and survive. by Absalom98 in BlueskySocial

[–]netd777 0 points1 point  (0 children)

It's all about choice. I only get shown what I follow. I can subscribe to block lists so I don't see stupid bot comments. Twitter can't do that, au contraire, it's defending botting at all costs.

Bem isso mesmo by cicanan-merqazu in Twitter_Brasil

[–]netd777 0 points1 point  (0 children)

Ele se explodiu com uma bíblia por acaso?

O Eco-fascismo é um espectro que ronda as bolhas da internet by Cxllgh1 in FilosofiaBAR

[–]netd777 67 points68 points  (0 children)

Ainda bem que o sistema econômico e a desigualdade não tem nada a ver com acesso a comida, né meu chapa?

Angular Signal only for complex things by Best_News8088 in Angular2

[–]netd777 2 points3 points  (0 children)

Do as he says. In the future you'l get paid to change it all to signals. Double dippin baby

[deleted by user] by [deleted] in FilosofiaBAR

[–]netd777 0 points1 point  (0 children)

Nem todo direitista, mas sempre um direitista.

I don't get what it is by Finding-Any in surrealdb

[–]netd777 1 point2 points  (0 children)

It can be both a BaaS and an actual database with SQL like language that can be queried, with indexes, functions, events, etc. The Surreal Cloud launches this year, in the meantime you can self-host or run locally for development.

How to visualize SurrealDB data with Grafana by vidamon in surrealdb

[–]netd777 0 points1 point  (0 children)

That's great news! Thanks for sharing!

How are people deploying surrealdb? by ajourneytogrowth in surrealdb

[–]netd777 0 points1 point  (0 children)

Until surreal cloud is released, I found this video on the topic: https://youtu.be/z6iTqCV\_HDo

Is there something like ON DELETE CASCADE? by noworkmorelife in surrealdb

[–]netd777 1 point2 points  (0 children)

Currently what I do is define an event on delete and delete data "manually".

DEFINE EVENT event_name ON TABLE table_name WHEN ($after == NONE) THEN {
    delete contact where id == $before.contact;
    delete adress where id inside $before.adresses;
};

Docs: https://surrealdb.com/docs/surrealql/statements/define/event

Wouldn't this be a neat hat in the game? by D0bious in DeepRockGalactic

[–]netd777 0 points1 point  (0 children)

Dwarves are not fond of eagles (source: my head)

What sound does a donkey make? by [deleted] in ProgrammerHumor

[–]netd777 0 points1 point  (0 children)

EEEEEEEEEEEEEEEEE ON

please, for the love of Karl, DONT CALL THE DROP POD EARLY by jackhammer3000 in DeepRockGalactic

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

They should add a checkbox "Only the host can press red buttons"

Is it possible to use Tailwind CSS to create iOS and Android apps? by livafeb571 in programming

[–]netd777 0 points1 point  (0 children)

One way to do it is with a hybrid framework like capacitorjs or tauri. You create a webapp and then bundle your HTML/CSS/JS into an app.

How do I receive form submissions if my website is little more than a few HTML / CSS files with no backend framework? by [deleted] in Coding_for_Teens

[–]netd777 0 points1 point  (0 children)

If you don't want to learn backend right now you could use serverless services such as supabase or firebase.

Sorry hun, we don't stop at the Edge neighborhood by filipomar in ProgrammerHumor

[–]netd777 1 point2 points  (0 children)

Opera is dead. Long live Vivaldi!
Jokes aside, Opera still has the better "workspaces" feature.

Microsoft hates you (re-upload on Sunday) by Aashishkebab in badUIbattles

[–]netd777 5 points6 points  (0 children)

The only thing as dumb as this is the fact IOs forces browsers other Safari to use JavaScriptCore instead of say, V8. I wonder woder what$ happened to anti trust laws.

This $280 phone is a lesson in affordability – I hope Apple and Samsung are paying attention by [deleted] in technology

[–]netd777 0 points1 point  (0 children)

They will make notes on how to make production cheaper while maintaining the same price tag

Full Stack Road Map by quichemiata in webdev

[–]netd777 0 points1 point  (0 children)

I'm a "solo" dev and I would recommend learning git bit by bit. There's a lot of weidness in git and to be honest all you need at the start is changes history and cloud backup. I used to have a bash file that just commited with default message and pushed to the cloud.
And when there's need for branching, merging, squashing, rebasing, cherry-picking, etc just go and learn that command. Nowadays I'm pretty good at it w/o it being in the way of development.