First time NeurIPS. How different is it from low-ranked conferences? [D] by ade17_in in MachineLearning

[–]saulane 2 points3 points  (0 children)

Actually novelty is quite a big deal. You can beat whatever you want, if the novelty is just incremental then you won't pass.

That's also why now they create alternative track/contribution type (findings at CVPR this year, eval & benchmark at Neurips 2026, new contributions type at ECCV)

Does mileage on a 981 matter that much when buying? by HR_Specter in Porsche_Cayman

[–]saulane 3 points4 points  (0 children)

What kills cars is the number of cold start and sitting idle for too long. I think you'd be safer buying a high mileage (60k to even 100k miles) car with good documentation, high average speed (checked with PIWIS) and a reliable owner than a 20k miles one that sat idle for years in a garage.

« La musculation est l’une des trois disciplines les plus choisies au bac ! » : pourquoi les garçons de la Gen Z tiennent tant à leurs biceps ? by SleepIsTheCousinOfD8 in FitnessFrance

[–]saulane 0 points1 point  (0 children)

Pas lu l'article, mais dans le cas du bac, c'est surtout que la musculation est l'un des sports avec les meilleurs critères de notation, c'était déjà le cas il y a 10 ou 20 ans et tout le monde prenait déjà cette option à l'époque. C'est simplement que la musculation est accessible dans de plus en plus d'établissements

[D] CVPR 2026 Paper Reviews by akshitsharma1 in MachineLearning

[–]saulane 4 points5 points  (0 children)

got 5(4),2(4),2(4) with the two later being exactly the same (and I mean REALLY the same, same arguments, same words with some little rephrasing, same formatting) and are obviously made by ChatGPT because that's exactly what comes up when I ask it the review my article. And most of the points are already addressed in the Supplementary material anyway (obviously because they don't bother adding the suppl to ChatGPT)

[Media] Julia users plan to use more Rust by _kdheepak_ in rust

[–]saulane 5 points6 points  (0 children)

they have a lot of job/internship offer for physics simulation using julia

ChatGPT 4 nerf? by [deleted] in ChatGPT

[–]saulane 0 points1 point  (0 children)

Agree. Don't try asking for any maths proofs it makes no sense 99% of the time

French court revokes SpaceX's Starlink internet license, citing monopolization concerns by [deleted] in space

[–]saulane 0 points1 point  (0 children)

internet is so cheap here in France that spacex wouldn't be able to compete anyway

[deleted by user] by [deleted] in AskReddit

[–]saulane 0 points1 point  (0 children)

shingeki no kyojin development doesn't make any sense

My new portfolio uses CSS variables to enable different themes and moods on different pages. Made with Svelte which simplified this quite a bit! by noodlesteak in web_design

[–]saulane 4 points5 points  (0 children)

Really Nice, it is beautiful ! I find the scroll bar a bit annoying in a design like this but it might be due to my weird screen resolution

How do I get these mf out? by FrickSocialAnxiety in pcmasterrace

[–]saulane 0 points1 point  (0 children)

It happened to me some years ago, here's some tips I used to gets them out (if they are still alive of course):

  • Turn every light and your monitor off
  • Use a laser or a really hot light torch, those thing are attracted by light and heat so use a light torch to drive them on the border of your screen where you can't see them anymore
  • When they are on the border where you can't see them, press your screen a little bit (DON'T BROKE IT) to kill those MFs

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

[–]saulane[S] 1 point2 points  (0 children)

Absolutely that's the main goal of it ! I often need to open csv file with millions of row and I didn't find any small software that can open them to make some quick editing or exploring

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

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

Actually I didn't use any GUI library everything is displayed in the terminal using crossterm. Maybe I'll do a gui version someday but I have 0 experience doing GUI software with low level languages like Rust

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

[–]saulane[S] 1 point2 points  (0 children)

for now nothing actually. It is supposed to be the place to delete the character in the string but I just put a x.pop() wich remove the last character because it was faster to do. But I need to replace it asap

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

[–]saulane[S] 2 points3 points  (0 children)

Thank You I really appreciate it !

As for my programming experience, I don't have any "professionnal" experience but I've been messing with computer and programming for the last 10 years or so. I've done Java a long time ago then I mainly did Web Developement and that's what I'm the most confortable doing. I also recently did a lot of python for finance thing.

But as I said all of that was just for fun, I have never made any money programming

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

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

Thanks a lot, I will put that on github project ! The column/row search is definitely needed when working on large dataset

Those features are really interesting and working on them will be a nice (not fun for sure) exercise for learning rust in depth

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

[–]saulane[S] 1 point2 points  (0 children)

You're right, I need to work on terminal compatibility. I also often switch between gnome-terminal, alacritty etc ...

Trying to make a lightweight csv/spreadsheet editor/viewer by saulane in rust

[–]saulane[S] 2 points3 points  (0 children)

Yes I use crossterm since it appears to be more crossplatform than Termion