Breaking Down Circular Dependencies in JavaScript, by (unattributable):
https://www.bryanbraun.com/2025/03/29/breaking-down-circular-dependencies-javascript/

Breaking Down Circular Dependencies in JavaScript, by (unattributable):
https://www.bryanbraun.com/2025/03/29/breaking-down-circular-dependencies-javascript/
It's 2025, and I just got bitten by the fact that using promises with .then() and only one callback masks promise rejections
In my defense, I just wanted to shove a one-liner into a context where async is not available. Should have done (async () => await thing)() instead of .then()
Webentwicklung: Next.js 15.3 treibt den Bundler Turbopack weiter voran
Mit dem webpack-Nachfolger Turbopack sind nun Alpha-Builds möglich und das TypeScript-Language-Service-Plug-in ist schneller sowie zuverlässiger geworden.
Could JavaScript Have Synchronous “await”?, by @rauschma:
New research finds 1 in 5 packages suggested by AI code tools don't exist.
Attackers can register these hallucinations.
This emerging threat has been dubbed "slopsquatting."
(h/t @sethmlarson and @andrewnez)
Here's what you need to know:
https://socket.dev/blog/slopsquatting-how-ai-hallucinations-are-fueling-a-new-class-of-supply-chain-attacks
> const logKeycap = (ch) => console.log(ch + '\u20E3');
> logKeycap('A')
A⃣
> logKeycap('X')
X⃣
PHP friends. I am looking to experiment with Protobuf as a way to define an API, for which we'll want code-generation for both (modern) PHP and Javascript/TypeScript. What's your recommendation? I'm finding lots of decade-old projects...
Alternatively, is there tooling to generate Protobuf off of PHP code/attributes, the way OpenAPI can?
This month's performance hero is a person after my own heart – someone who is passionate about building a secure, accessible, performant web for EVERYONE, and who always leads with a deep compassion for users. Let's all join in celebrating Alex Russell (@slightlyoff)!
https://www.speedcurve.com/blog/performance-hero-alex-russell/
I have a nice opportunity:
We're recruiting a fullstack (Django/React) to work on a project on optimization of the ressources dedicated to polio vaccination campaigns: https://www.bluesquarehub.com/blog/vacancies/senior-full-stack-developer-react-django/
It's a remote friendly job.
Webframework: Der enterJS Advanced Angular Day geht in die nächste Runde
Das Programm der Online-Konferenz am 1. Juli umfasst sieben Vorträge und drei Workshops. Tickets ab sofort zum Frühbuchertarif über den Ticketshop erhältlich.
Building a Real-time Dashboard with Flask and Svelte
https://testdriven.io/blog/flask-svelte/
Discussions: https://discu.eu/q/https://testdriven.io/blog/flask-svelte/
Este es el #concepto de #vasakOS Una distro de #linux basada en #archlinux con un escritorio propio desarrollado con #tauri
Apache ECharts:
An #opensource visualization library in #JavaScript.
https://echarts.apache.org/en/index.html
Also see https://chartscss.org/
Does data-visualization-hunger even exist?!
Pro tip: start with the last examples if you want to make your dataset happy ASAP…. and maybe feed your own chart cravings too!
#ECharts #Apache #OpenSource #Visualization #Library #javascript
https://echarts.apache.org/examples/en/index.html#chart-type-gauge
python: list.append
rust: Vec::push
js: Array.includes
rust: Vec::contains
every damn time.
#JavaScript powers 98% of all websites. In the latest podcast, Robin Bender Ginn from OpenJS discusses sustaining JavaScript at scale, web security, and community solutions.
Learn More about JSConf North America:
https://events.linuxfoundation.org/jsconf-north-america/register/
We built a tool that helps you generate, edit, and share structured documentation from your codebase — without the usual hassle.
https://blog.aswinbenny.in/you-are-documenting-your-code-wrong
So it does look like the TypeScript language server has a limit of 4MB source size where it disables type checking (and actually shows an erroneous error stating that exports that exist in the file do not exist) for files that are imported but not open in the current workspace/session.
Still not sure if this is documented anywhere or not (haven’t been able to find it, if it is).
99.99999% of the time, unless you’re doing niche stuff like I am, you won’t run into this.
Workaround: should you have such a large file, e.g., with a large generated object, try and refactor to split it up into multiple files and rejoin it a separate file. The actual object size/memory usage isn’t the issue, it’s the file size.