

Oracle has filed a partial motion to dismiss our fraud claim. We’re now waiting on the USPTO to weigh in.
Our mission is to build one of the most powerful, beautiful, simple and open web rendering engines in the world. Today, web graphics and rendering hit the accelerator with the release of Babylon.js 8.0. https://youtu.be/kKaomUggipQ Babylon.js 8.0 r
Adding mutable heap numbers to script context
Tampermonkey redirect script
I don't know if anyone here uses [Tamper|Grease]monkey, but I asked my LLM to come up with a redirect from Xitter and it gave me this gem:
undefined
// ==UserScript== // @name Redirect x.com to xcancel.com // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://x.com/* // @grant none // ==/UserScript== (function() { 'use strict'; var url = window.location.href; url = url.replace("https://x.com/", "https://xcancel.com/"); window.location.replace(url); })();
Works like a charm.
Big Red accused of stalling or derailing legal fight by challenging fraud claim
Preface typia is a transformer library supporting superfast runtime validation, and JSON...
JavaScript Temporal is coming
A new way to handle dates and times is being added to JavaScript. Let's take a look at Temporal, what problems it solves, the current state, and what you'll find in the new documentation about it on MDN.
The title says it all. Let's talk about one of JavaScript's most underrated features:...
The title says it all. Let's talk about one of JavaScript's most underrated features: Object.freeze(). This powerhouse of immutability isn't just another method - it's your secret weapon for writing safer, more predictable code ✨.
I'll be honest, when I first discovered Object.freeze(), I mostly ignored it. "Just don't mutate your objects," I thought. But as my applications grew more complex, I started to see its true value. Now, it's an essential part of my toolkit.
can i add lemmy-api-client to my webpage (yes. me again.)
hello. I recently asked here for help with Lemmy HTTP API and someone said "why don't you use lemmy-js-client?". i tried to add it and...
first i searched the internet about this library and it turns out that it is an npm library... (I have github pages) i searched different variations of the library and found a cdn version of it. i tried to add it. it was a hell of a torture.... i added it the way I add cdn libraries, nothing. i searched all over the internet, but found null. i even asked chatgpt! to no avail. the library (and everything I tried to get out of it) turned into undefined!
what am I supposed to do? this is cdn version what i tried to add
\
if u want here is source code
help me with /user backend! (lemmy api v3)
hello! im developing lemmy client (on html5). i tried to do login function but... when i try to fetch /v3/user backend with auth-token it give me error:
json
{ "error": "no_id_given" }
but why? what im doing wrong? if you want here is my source file on github ( function: getLoggined() )
help me with /user backend! (lemmy api v3)
hello! im developing lemmy client (on html5). i tried to do login function but... when i try to fetch /v3/user backend with auth-token it give me error:
json
{ "error": "no_id_given" }
but why? what im doing wrong? if you want here is my source file on github ( function: getLoggined() )
Design decisions core to JavaScript have caused a multitude of problems for benchmarking. Is there a solution to this?
nano-queries - A database-agnostic Query Builder (work with SQLite, Postgres, GraphQL, Redis, PGlite, etc)
Simple and powerful query builder for any database (SQLite, Postgres, MySQL, etc). - vitonsky/nano-queries
The 2024 edition of the annual survey about the latest trends in the JavaScript ecosystem.
Bottom-up Javascript Storage Management
I'm working on creating something I can call "functional web components".
i wanted to see if we can create asynchronous bottom-up state management, we have the basics to put together a state management system. State management solutions in apps typically have ways to persist data.
I wanted to explore if there are any benefits to define and manage state in webcomponents with a bottom-up approach. I wanted to see if it could give a greater flexibility in developing a UI and not having to worry about persisted storage management.