badcommandorfilename

joined 1 year ago
[–] [email protected] 2 points 9 hours ago (1 children)

Connections Puzzle #438 🟦🟦🟦🟦

🟩🟩🟩🟩

πŸŸͺπŸŸͺπŸŸͺπŸŸͺ

🟨🟨🟨🟨

You got yellow last too! Seemed too obvious 😁

[–] [email protected] 5 points 9 hours ago

MissingNo is evolving!

[–] [email protected] 2 points 1 day ago* (last edited 1 day ago)

Wordle 1,159 3/6

πŸŸ©β¬›β¬›πŸŸ¨β¬›

πŸŸ©β¬›β¬›β¬›πŸŸ©

🟩🟩🟩🟩🟩

[–] [email protected] 6 points 1 day ago

Thank you, mouthy American child. Please to take my hockey tree. πŸ˜‚

[–] [email protected] 7 points 1 day ago (2 children)

Ah! Is it the hockey "tree" that has termites?

[–] [email protected] 7 points 1 day ago* (last edited 1 day ago) (4 children)

Hmm.. Homer is hanging something up on Lisa's wall because she is better at something than Bart...

The one where Lisa is moved up and Bart get held back a grade?

Edit: I feel like it might be a sports thing though. Lisa plays ice hockey?

[–] [email protected] 5 points 5 days ago (2 children)

A few things to note:

JavaScript is not a "batteries included" language - if you need math functions or cryptography or any kind of utility, you need to load it along with your script (usually from npm).

Loading a lot of small files is slower than streaming one big combined file, so tools like webpack will stitch all the files in your node_modules directory and minify it, so it's not unusual to have big files like this.

Does the site actually need all this code? Probably not! The ridiculous part is that every one of those npm dependencies has it's own list of dependencies, so just grabbing a small handful of libraries can result in huge trees of files!

Even more insane is that many of these probably have shared dependencies, but very slightly different versions, so multiple almost identical packages get downloaded.

Worst of all is that is most packages probably don't use 90% of the code in the dependencies that they do need - e.g. if you want a "sin" function from a math library then you'll be downloading "cos" and "tan" too.

There are tools like tree-shaking and pruning that help to remove unused packages during the bundler step, but I rarely see them used. It's a lot of extra configuration and setup when mostly the products aren't affected by a few extra KB or MB.

Anyway that's why js and node and npm suck to both work with and to use. The site probably doesn't need all that extra code, but there is no easy way to prove it so you get everything "just in case".

[–] [email protected] 5 points 1 week ago

I shall ponder this thoroughly

[–] [email protected] 46 points 1 week ago

Well, that answers that question.

[–] [email protected] 6 points 1 week ago

Too bad all the pros moved to the Corgitech scene

[–] [email protected] 2 points 1 week ago

I think it might be a riser or part of a sprue from a larger cast part

[–] [email protected] 35 points 1 week ago (3 children)

Andy B,, - good first name for a tester

 

When I copy some long string like json from a debugger, and want to look at it properly formatted it starts off encoded with /n and /t characters, etc.

I usually go:

  • Replace (Normal) /n -> qqqq
  • Replace (Extended) qqqq -> /n

Is there some trick to do this in one step?

 
 

Had a long series of failed prints, tried levelling, replacing parts, nothing worked.

Finally by chance I noticed that the LED matrix had burnt out/broken LEDs.

But where can I get a replacement? Can you do one module at a time or do I need a whole new unit?

 

Hi, the other day our 2010 M1 xDrive diesel made a loud pop - sounded like a backfire - and the "reduced engine capacity" warning came up on the console. Car still drives, but it has way less power.

Someone suggested it could be the intercooler connection to the turbo. Has anyone else had this happen, and how expensive is it to replace?

view more: next β€Ί