Readit News logoReadit News
3nt3 commented on My Ed(1) Toolbox   aartaka.me/my-ed.html... · Posted by u/mooreds
hejira · 6 months ago
Is there really an advantage to using Ed instead of vim in any situation whatsoever? (Assuming you're totally comfortable with vim)
3nt3 · 6 months ago
when you're using a teletype terminal
3nt3 commented on React is winning by default and slowing innovation   lorenstew.art/blog/react-... · Posted by u/dbushell
hbrn · 6 months ago
> React feels natural because it never asks you to stop writing JavaScript

I want to increment some counter on the webpage. Which approach feels natural?

  increment = () => {
    this.setState((prevState) => ({ count: prevState.count + 1 }));
  };

  const increment = () => setCount((count) => count + 1);

  function increment() {
    count += 1;
  }
No one wakes up saying "please let me mutate simple state with function calls".

3nt3 · 6 months ago
Haskell devs do ;)
3nt3 commented on Linux phones are more important now than ever   feddit.org/post/18353777... · Posted by u/wicket
stronglikedan · 6 months ago
> Maybe a PAYG phone which stays at home on my network for particular needs like banking.

If you're only doing banking at home, why would you do it on such a tiny little device?

3nt3 · 6 months ago
They probably mean for TAN apps
3nt3 commented on We need a new theory of democracy – because this version has failed   salon.com/2025/08/24/we-n... · Posted by u/hkhn
dmitrygr · 7 months ago
> But now an extremist group, the Alternative for Germany or AfD, may become that nation’s biggest political party,

It is is supported by most, it is, by definition, not extremist. The word has a meaning, and it was not "something I happen to dislike"

3nt3 · 7 months ago
it's not supported by most, it has 25% max.
3nt3 commented on EU parliament passes law on user replaceable batteries   europarl.europa.eu/news/e... · Posted by u/kiesewetter
throwaway81523 · 3 years ago
And to debunk the canard about replaceable batteries preventing phones from being waterproof: the Samsung S5 was waterproof and had a replaceable battery, as did decades of police and marine walkie talkies and GPS, and a century of outdoor flashlights. I would accept that it costs a little bit of space inside the phone, interfering with Steve Jobs' dream of a paper thin phone the size of a cigarette lighter. But today, Jobs is gone and people like big phones, so it is fine. I would even be happy with a thick phone powered by a couple of 18650's instead of a pouch cell.

Note that per the article, it is ok for replacing the battery to require simple tools (e.g. a small screwdriver). So that makes weather sealing even easier, since you can put a gasket around the battery door and tighten the door down with a screw. That is how my old AA-powered Garmin GPS works, more or less, though you don't need tools to undo the screw.

3nt3 · 3 years ago
> thick phone powered by a couple of 18650

that _would_ be too thick for most people I think (think of average pocket sizes), but a little bit of extra thickness would probably be accepted judging by the thickness of some phone cases

3nt3 commented on HDR QR Code   notes.dt.in.th/HDRQRCode... · Posted by u/fdb
fodkodrasz · 3 years ago
It is already an antipattern, it hurt my eye as it was too bright.

Once again webdevs creating another UX nightmare.

3nt3 · 3 years ago
it's useful for QR codes though so they can actually be scanned somewhat reliably from a phone screen
3nt3 commented on BlueJ – A Lightweight Java IDE   bluej.org/about.html... · Posted by u/saikatsg
jackpeterfletch · 4 years ago
See it through. I know sometimes at university it can feel like your having your wings clipped, or that your not getting the 'real' experience.

But it won't last forever, and what it does well - conveying often unintuitive OOP concepts - it does do well.

Your course conveners job its to teach the fundamentals, tooling is for you to shake out as you gain experience and scale up, and from their perspective - imagine trying to wrangle random IntelliJ/Eclipse issues with a cohort of 120+ students, for many whom this might be their first introduction to programming!

Scaling things back probably genuinely allows them to provide a better learning on ramp.

3nt3 · 3 years ago
I'm still in high school so the scale of everything would probably not be an issue although I see your point of maintainability and showing the relations between classes graphically is probably also helpful when you're still wrapping your head around OOP concepts
3nt3 commented on BlueJ – A Lightweight Java IDE   bluej.org/about.html... · Posted by u/saikatsg
JeanMo · 4 years ago
We were forced to use this ide back in the days when I went to school. I never encountered something more worse to use then this "IDE". Not to mention we were told to use notepad in the beginning... Can't make this sh* up.

From my perspective its very confusing for beginners to switch to a proper IDE after using this. And I will not mind the argument that "proper" IDE are overwhelming. If you are new to programming most likely everything, including BlueJ, is overwhelming. And with a good teacher and a good introduction I don't think its too much for beginners to use something like IntelliJ.

Just use the "correct" tools right away.

//edit: The IDE might improved a lot since the last time I used it. Didn't wanted to talk bad on BlueJ itself.

3nt3 · 4 years ago
I am currently being forced to use it for my compsci class and it really is horrible from a UI/UX standpoint (doesn't even have dark mode lol). It does not enforce any syntax style or proper formatting which makes beginners learn that "it doesn't matter" which is wrong imo and leads to horrible looking code.

u/3nt3

KarmaCake day41May 15, 2021View Original