It's not rug pulling, it's simple price anchoring. They'll degrade when it makes financial sense for them. You will pay for it. There's no way around it besides self hosting or using reality metered endpoints like…
That's exactly what happens. The algo does not judge how hurtful a rabbithole may be - it optimizes for engagement with some moderation sprinkled on top. I've tried to make my facebook feed palatable for a couple months…
No pen a and paper? Compile it on fleshware. It's not a question of what you can do, but where the comfort level reduction outweighs the project importance/pay.
Is this true? I'm getting a feeling that most of this is adding external stucture when coding agents already provide a framework for it. I've had moderate success in throwing a braindump at the llm, asking it to do a…
Nope, hug of death is seems: Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML…
Banks like that exist. mBank from Poland does in-app approve/reject - similar to what you get on an Android phone when you try logging in on a new PC. They also send phishing warnings when they find active campaigns.…
Weren't these TIL's about hearing an imaginated voice VS imagining the meaning?
This is an issue with CSV numerical values stored as strings, for numbers it's a bit better. Libraries sometimes allow for a raw import that preserves the internal data type of the format, then you get proper numbers,…
There was an AMA with Emad yesterday on discord. He got asked this. The promise is that 1.5 will be released in the following week. The slowdown has numerous issues. They got legal threats, death threats, and threats…
Or so you may think. Working with diffs / merge conflicts already exposes you to internals. Knowing that committing big binary blobs is a bad idea also could be categorized as "knowing internals". Knowing why LF/CRLF…
You could consider publishing it on GitHub and pinging squoosh guys: https://github.com/GoogleChromeLabs/squoosh/issues/1084
For client-side stuff like that, there is sheetjs which has support for XLSX but there are file size limitations. XLSX is a glorified zip file and to parse it you 1st have to unzip it and then build the XLSX file. I…
This uses WebAssembly so it can preserve PNG transparency for example, which the canvas method loses.
> added in sound for ambiance The actual noise levels may have been higher. Regardless, I think the main reason is ventilation. With coal and wood heating streets were designed to act as valleys pushing air through.…
I got the same message. Still, having faster builds with one additional plugin without configuration needs on projects locked on 4 or waiting out the transition is a plus in my book :).
Yes, but... chances are your backend dev will have a system-provided or just plain outdated Node version so they'll get a cryptic exception and will have to reach for assistance. Ideally you would have a pipeline…
Depends on what packages you use and how well they do semver. Chances are you will get major version bumps for most of your dependencies after 1-2 years of development. What works well then is to do upgrades partially.…
That works until your team doesn't decide to eject because they want to play around with webpack...
Caching was a major dissapointment for me. DllPlugin is a nightmare to setup and other caching plugins I tried don't really speed things up. What eventually worked for me is HardSourceWebpackPlugin [1] - two lines added…
You may want to read https://developer.mozilla.org/en-US/docs/Web/JavaScript/Even... Note that it does not mention promises and async/await but it does include it. Promises are essentially syntactic sugar for a…
You're welcome. I avoid runaway loops like fire because the crashes tend to be problematic to debug. Consider the timeout thing from SO. Generally working with events in JS is easier than central run loops.
Depends a lot. Debugging is awesome when you have source maps and good devtools in a modern browser but the code itself is not editable. That said it's possible to open a plain html file from disk with devtools and save…
SO has runnable snippets, there are services like CodePen too and some articles are using it, but there's one simple trick making your point moot. F12 or Ctrl+Shift+i and Ctrl+c Ctrl+v and you're executing code in the…
> One of the biggest problems I consistently run into is that printing to the screen is a slow operation, every learns this day one of any graphics work, but things like console.log or Node.appendChild are the primary…
The only viable way to avoid an endless while loop or overly heavy operations is to have a worker do the eval(), though it would defeat the meta-programming aspect and isolate execution making it pretty much useless.…
It's not rug pulling, it's simple price anchoring. They'll degrade when it makes financial sense for them. You will pay for it. There's no way around it besides self hosting or using reality metered endpoints like…
That's exactly what happens. The algo does not judge how hurtful a rabbithole may be - it optimizes for engagement with some moderation sprinkled on top. I've tried to make my facebook feed palatable for a couple months…
No pen a and paper? Compile it on fleshware. It's not a question of what you can do, but where the comfort level reduction outweighs the project importance/pay.
Is this true? I'm getting a feeling that most of this is adding external stucture when coding agents already provide a framework for it. I've had moderate success in throwing a braindump at the llm, asking it to do a…
Nope, hug of death is seems: Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML…
Banks like that exist. mBank from Poland does in-app approve/reject - similar to what you get on an Android phone when you try logging in on a new PC. They also send phishing warnings when they find active campaigns.…
Weren't these TIL's about hearing an imaginated voice VS imagining the meaning?
This is an issue with CSV numerical values stored as strings, for numbers it's a bit better. Libraries sometimes allow for a raw import that preserves the internal data type of the format, then you get proper numbers,…
There was an AMA with Emad yesterday on discord. He got asked this. The promise is that 1.5 will be released in the following week. The slowdown has numerous issues. They got legal threats, death threats, and threats…
Or so you may think. Working with diffs / merge conflicts already exposes you to internals. Knowing that committing big binary blobs is a bad idea also could be categorized as "knowing internals". Knowing why LF/CRLF…
You could consider publishing it on GitHub and pinging squoosh guys: https://github.com/GoogleChromeLabs/squoosh/issues/1084
For client-side stuff like that, there is sheetjs which has support for XLSX but there are file size limitations. XLSX is a glorified zip file and to parse it you 1st have to unzip it and then build the XLSX file. I…
This uses WebAssembly so it can preserve PNG transparency for example, which the canvas method loses.
> added in sound for ambiance The actual noise levels may have been higher. Regardless, I think the main reason is ventilation. With coal and wood heating streets were designed to act as valleys pushing air through.…
I got the same message. Still, having faster builds with one additional plugin without configuration needs on projects locked on 4 or waiting out the transition is a plus in my book :).
Yes, but... chances are your backend dev will have a system-provided or just plain outdated Node version so they'll get a cryptic exception and will have to reach for assistance. Ideally you would have a pipeline…
Depends on what packages you use and how well they do semver. Chances are you will get major version bumps for most of your dependencies after 1-2 years of development. What works well then is to do upgrades partially.…
That works until your team doesn't decide to eject because they want to play around with webpack...
Caching was a major dissapointment for me. DllPlugin is a nightmare to setup and other caching plugins I tried don't really speed things up. What eventually worked for me is HardSourceWebpackPlugin [1] - two lines added…
You may want to read https://developer.mozilla.org/en-US/docs/Web/JavaScript/Even... Note that it does not mention promises and async/await but it does include it. Promises are essentially syntactic sugar for a…
You're welcome. I avoid runaway loops like fire because the crashes tend to be problematic to debug. Consider the timeout thing from SO. Generally working with events in JS is easier than central run loops.
Depends a lot. Debugging is awesome when you have source maps and good devtools in a modern browser but the code itself is not editable. That said it's possible to open a plain html file from disk with devtools and save…
SO has runnable snippets, there are services like CodePen too and some articles are using it, but there's one simple trick making your point moot. F12 or Ctrl+Shift+i and Ctrl+c Ctrl+v and you're executing code in the…
> One of the biggest problems I consistently run into is that printing to the screen is a slow operation, every learns this day one of any graphics work, but things like console.log or Node.appendChild are the primary…
The only viable way to avoid an endless while loop or overly heavy operations is to have a worker do the eval(), though it would defeat the meta-programming aspect and isolate execution making it pretty much useless.…