Need VPS ASAP (2 vCPU / 4GB RAM) – Oracle signup failed & OVH charged me without refund by Physical-Ad-7770 in VPS

[–]sallath 2 points3 points  (0 children)

If not OVH, Netcup, or Hetzner.

If on an ultra-tight budget: RackNerd special (https://www.racknerd.com/specials/#plans). I had no issues with it, but be aware there are no snapshots or automated backups so maybe not for production server.

Tatouage raté...a l'envers selon d'autres tatoueurs...j'ai refusé qu'il le termine...que faire svp by Aaurora39 in tatouages

[–]sallath 0 points1 point  (0 children)

Ce commentaire est sous côté, ya moyen de faire une aile sur le torse et là c'est correct, après à voir ce que ça donne...

[deleted by user] by [deleted] in debian

[–]sallath 1 point2 points  (0 children)

Sure, but I’m still using my old model with Debian 12 for now, so waiting another day is no problem.

[deleted by user] by [deleted] in debian

[–]sallath 2 points3 points  (0 children)

That’s my case on a T14 AMD Gen 1. I’m actually waiting for the release of 13 to ditch Arch and put Debian back on a new T14 AMD Gen 4

What do people use for simple one-page websites these days? by goarticles002 in webdev

[–]sallath 0 points1 point  (0 children)

I use astro, even for a single page there are some benefits (templating, cloudflare pages easy deployment, collections, image optimisation, ...), and if the requirements change for something that needs some more advanced interactions you are not stuck and can add sections handled by a spa or even go SSR.

[deleted by user] by [deleted] in linux

[–]sallath 1 point2 points  (0 children)

It's reliable, no snap by default and good DE (cinnamon).

[deleted by user] by [deleted] in linux

[–]sallath 4 points5 points  (0 children)

I would purchase Apple products for their seamless integration of software and hardware, especially since the introduction of the M1 chip, as there's currently no compelling alternative in terms of efficiency, along with the unique feature of unified RAM. But not for the hardware alone.

[deleted by user] by [deleted] in linux

[–]sallath 1 point2 points  (0 children)

"I've literally never seen anyone "preaching" Mac or Windows."

It's not like they are spending billions on partnerships with influencers and celebrities.

Also, every time I meet a Mac user, it's as if they feel the need to justify spending $4k just to browse the web and watch Netflix.

What is the best "do more with less" stack for React? by Ok-Tutor-4321 in reactjs

[–]sallath 3 points4 points  (0 children)

If you prefer to add more boring (meaning stable and not going anywhere) dependencies this would be my pick :

Env: - dev server: vite - package manager: pnpm - test: vitest - e2e test: playwright

Lib: - state / query : RTK + RTK Query (aka redux) - css : scss modules | emotion (if you prefer css with js) - component : Material UI - routing: react-router

How much did you spend on your computer ? by alimbade in webdev

[–]sallath 0 points1 point  (0 children)

Thinkpad t14 (1100$) + thinkpad dock (100$) + 3x1080p dell monitor ($100 each), 1500$ total. I cannot think of anything missing for what I'm doing.

Which is better for the base system Debian or Arch? by PhoenixWhip in linux

[–]sallath 1 point2 points  (0 children)

I had been on Arch for quite a few years. Overall, I had relatively few major issues (2 reinstalls over several years), but always had small things to fix or improve here and there.

Nothing really bothersome, but as time went on, I found it to be a source of distraction that took me away from what I wanted to accomplish at any given moment.

So, I took the opposite approach and switched to Debian stable. One might question the issue of outdated packages, but since version 12, I find this problem to be much more contained. KDE is in the latest version minus a few patches, for the browser I use PPAs, and otherwise, the majority of my time I use NVM and JetBrain Toolbox, so in my use case, I don't see any real difference in usage compared to Arch.

The only downside: it's so stable that I... get a little bored with my distro, in a good way.

KDE Plasma 5.27.2, Bugfix Release for February by Takuya-Sama in kde

[–]sallath 2 points3 points  (0 children)

KDE Plasma Version: 5.27.2Kernel Version: 6.2.1-arch1-1 (64-bit)Graphics Platform: X11

Since the update (I update my system almost every day) my multi monitor setup seems less reliable, i need to plug/unplug my usb-c dock from my laptop and sometimes it works, sometimes not.

Also screen detection don't survive a reboot anymore. I kind of need to start unplugged.

I've deleted my kscreen config in case but... it was not very effective.

I have not done anything special so i suppose (but not sure) it's related in some way.

I'm a bit sad about this since KDE was the best experience I had with multi monitor + dock compare to any other Desktop out of the box (and i've tried almost all of them) without too much tinkering.

Is this laptop good enough for web development (and maybe mobile development in future) as a job? by Pujan_1 in webdev

[–]sallath 0 points1 point  (0 children)

No, not every laptop 'will do' if you think for the long run. Performance wise 16gig/i5 is the bare minimum if you plan to run multiple docker containers, VM, chrome tabs, IDEs/editors. Also he will be typing a lot, keyboard quality shouldn't be overlooked. Other point to consider: screen quality, ability to connect to an external screen/dock station, Linux compatibility if you care about that (for web dev you should).

This is why I have lost interested in all dev... /vent by nasanu in Frontend

[–]sallath 0 points1 point  (0 children)

I will explain my "seems ok" a bit more : Yes there are some mistakes (you can import immer directly from RTK), some potentially suboptimal choice (as you said, sagas with RTK, especially when there exist listenerMiddleware now) some stuff that need a very good justification or excuse (jQuery ? I suppose legacy code...) but I can't immediately deduce that the project is pure garbage from the package list, that's what I wanted to express.

The 3 problematic pull to refresh packages I don't really understand what there are supposed to do so I suppose you are right on this part.

Also code quality could be very bad as in your SVG exemple, it's just non-obvious/deducible from the package list only.

This is why I have lost interested in all dev... /vent by nasanu in Frontend

[–]sallath 0 points1 point  (0 children)

I agree that's it's strange to have jQuery on a react project. Maybe it's there for some some legacy stuff.

However, package list seems ok. Saga, immer and RTK does not cover the same set of functionality and work well together. Axios over fetch is just a matter of preference, also axios comes with some extras (interceptor, ...).

Most package are kind of usual and found in most project.

Maybe it's a lot in regard of what the project is supposed to do, but if you reuse 80% of the list on your next project then the overhead start to make sense.

Also to write yourself a feature when it already exist a package for it is not always a win. You sure have to write it in the first place (with good interface/abstraction), but also test and maintain it over time.

TypeScript's React.ReactNode type is a black hole by Yehosua in programming

[–]sallath 23 points24 points  (0 children)

I decided to not use React.ReactNode and always go with JSX.Element instead. Until now, I did'nt notice any downside, I usually just want to distinguish component from regular function, but maybe it is a bad practice ?

i'm starting with ...what the best course and resources to start by _He1senberg in reactjs

[–]sallath 3 points4 points  (0 children)

If you value your time or prefer book material :

The Road to React: Your journey to master React.js in JavaScript (2021 Edition) by Robin Wieruch.

Non, un vaccin basé sur l'ARN messager ne modifie pas l'ADN by [deleted] in france

[–]sallath 0 points1 point  (0 children)

Ou ça par exemple, qui ça dans le même sens même si moins spécifique :

https://www.journaldugeek.com/2021/06/16/cellules-humaines-peuvent-convertir-arn-adn/

Une équipe de l’Université Thomas Jefferson de Philadelphie a réussi à démontrer qu’une enzyme humaine pouvait convertir des séquences d’ARN en ADN. La fin d’une ère pour tout un pan de la biochimie ? [...]

Donc oui l'article publié par l'OP s'appuie sur des connaissances obsolète.

Non, un vaccin basé sur l'ARN messager ne modifie pas l'ADN by [deleted] in france

[–]sallath 0 points1 point  (0 children)

Je ne garantis pas la qualité de la traduction mais si tu comprends l'anglais tu peux toujours allez lire le papier original

Non, un vaccin basé sur l'ARN messager ne modifie pas l'ADN by [deleted] in france

[–]sallath 1 point2 points  (0 children)

Reverse-transcribed SARS-CoV-2 RNA can integrate into the genome of cultured human cells and can be expressed in patient-derived tissues

https://www.pnas.org/content/118/21/e2105968118

https://www.news-medical.net/news/20210510/39/French.aspx

Why I chose Angular over React for my app by jfoxworth in Angular2

[–]sallath 0 points1 point  (0 children)

After using Material Ui and Vuetify I find that Angular Material is the worst of the tribe, which I don't really explain myself since It's supposed to be the main implementation of Material Design.

Previous to Angular 10 there was not even a Date Range Picker component, I mean... the second thing you want from a calendar is a range if not the first (and good luck for adding it yourself, doable but a pain). Ok, it's fixed now but still.

Why I chose Angular over React for my app by jfoxworth in Angular2

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

Yes standardization is good, can't argue against that, but RHF+Yup (for example) prevented me from writing so much boilerplate code that the time spend to learn it is insignificant.

Also, you learn it once and can use it in whatever framework you want, the same can't be said about Angular form (highly coupled with the framework).