Coding
    From Zero to Code: Installing Node.js & NPM on Debian 11
    If you're exploring JavaScript development on the backend, Node.js and NPM (Node Package Manager) are indispensable tools. Whether you're creating web servers, APIs, automation scripts, or CLI tools, Node.js and NPM make it all possible. But before you jump into coding, you'll need a proper setup—especially if you’re using Debian 11, a highly stable and secure Linux distribution. This guide explains how to install NPM on Debian, using the most reliable steps based on Vultr’s...
    By Heman Jone 2025-07-18 14:46:15 0 65
    Coding
    Workaround for MySQL’s “can’t specify target table for update in FROM clause” Error
    jOOQ workaround for "can't specify target table for update in FROM clause" In MySQL, you cannot do this: create table t (i int primary key, j int); insert into t values (1, 1); update t set j = (select max(j) from t) + 1; The UPDATE statement will raise an error as follows: SQL Error [1093] [HY000]: You can’t specify target table ‘t’ for update in FROM clause People have considered this to be a bug in MySQL for ages, as most other RDBMS can do this without any issues,...
    By Luka Matijević 2025-05-31 20:25:37 0 305
    Coding
    jOOQ 3.19’s new Explicit and Implicit to-many path joins
    jOOQ 3.19 offers many new and useful path based join features jOOQ 3.19 finally delivers on a set of features that will greatly simplify your queries further, after jOOQ 3.11 introduced implicit to-one joins: Explicit path joins To-many path joins Implicit join path correlation What are these features? Many ORMs (e.g. JPA, Doctrine, jOOQ 3.11 and others) support “path joins” (they may have different names for this concept). A path join is a join derived from a path where...
    By Luka Matijević 2025-05-31 20:25:37 0 282
    Coding
    A Hidden Benefit of Implicit Joins: Join Elimination
    Implicit path joins may now skip unnecessary tables in the join tree One of jOOQ’s key features so far has always been to render pretty much exactly the SQL that users expect, without any surprises – unless some emulation is required to make a query work, of course. This means that while join elimination is a powerful feature of many RDBMS, it isn’t part of jOOQ’s feature set, so far. This changes, to some extent, with jOOQ 3.19, and #14992, for implicit path joins only. So far, when...
    By Luka Matijević 2025-05-31 20:25:36 0 260
    Coding
    An Efficient Way to Check for Existence of Multiple Values in SQL
    What's faster, COUNT(*) or COUNT(*) with LIMIT in SQL? Let's check In a previous blog post, we’ve advertised the use of SQL EXISTS rather than COUNT(*) to check for existence of a value in SQL. I.e. to check if in the Sakila database, actors called WAHLBERG have played in any films, instead of: SELECT count(*) FROM actor a JOIN film_actor fa USING (actor_id) WHERE a.last_name = 'WAHLBERG' Do this: SELECT EXISTS ( SELECT 1 FROM actor a JOIN film_actor fa USING (actor_id)...
    By Luka Matijević 2025-05-31 20:25:35 0 262
    Coding
    Getting Top 1 Values Per Group in Oracle
    Oracle's way to get multiple values in a top 1 per group query I’ve blogged about generic ways of getting top 1 or top n per category queries before on this blog. An Oracle specific version in that post used the arcane KEEP syntax: SELECT max(actor_id) KEEP (DENSE_RANK FIRST ORDER BY c DESC, actor_id), max(first_name) KEEP (DENSE_RANK FIRST ORDER BY c DESC, actor_id), max(last_name) KEEP (DENSE_RANK FIRST ORDER BY c DESC, actor_id), max(c) KEEP (DENSE_RANK FIRST...
    By Luka Matijević 2025-05-31 20:25:34 0 282
    Coding
    Emulating SQL FILTER with Oracle JSON Aggregate Functions
    How to implement FILTER semantics with Oracle JSON aggregate functions A cool standard SQL:2003 feature is the aggregate FILTER clause, which is supported natively by at least these RDBMS: ClickHouse CockroachDB DuckDB Firebird H2 HSQLDB PostgreSQL SQLite Trino YugabyteDB The following aggregate function computes the number of rows per group which satifsy the FILTER clause: SELECT COUNT(*) FILTER (WHERE BOOK.TITLE LIKE 'A%'), COUNT(*) FILTER (WHERE...
    By Luka Matijević 2025-05-31 20:25:33 0 261
    Coding
    jOOQ 3.20 released with ClickHouse, Databricks, and much more DuckDB support, new modules, Oracle type hierarchies, more spatial support, decfloat and synonym support, hidden columns, Scala 3, Kotlin 2, and much more
    jOOQ 3.20 released with ClickHouse, Databricks, and much more DuckDB support, new modules, Oracle type hierarchies, more spatial support, decfloat and synonym support, hidden columns, Scala 3, Kotlin 2, and much more New dialects: jOOQ 3.20 ships with 2 new experimental dialects: ClickHouse in all editions, including the jOOQ Open Source Edition Databricks in the jOOQ Enterprise Edition ClickHouse is a fast-moving SQL dialect with a historic vendor-specific syntax that is...
    By Luka Matijević 2025-05-31 20:25:32 0 291
    Coding
    Resisting the Urge to Document Everything Everywhere
    Why I don't document quirks of a feature on the feature itself. Every product manager knows this situation: A user works with feature X1. They find a limitation / bug / quirk and want to work around it. The perfect workaround or alternative is feature X2, but without knowing that X2 exists, the user doesn’t find it and spends a lot of time looking for it. The user requests X2 be documented on X1, because that would have saved them a ton of time. This is such a common...
    By Luka Matijević 2025-05-31 20:25:32 0 299
    Coding
    Think About SQL MERGE in Terms of a RIGHT JOIN
    A SQL MERGE statement performs actions based on a RIGHT JOIN RIGHT JOIN is an esoteric feature in the SQL language, and hardly ever seen in the real world, because almost every RIGHT JOIN can just be expressed as an equivalent LEFT JOIN. The following two statements are equivalent: -- Popular SELECT c.first_name, c.last_name, p.amount FROM customer AS c LEFT JOIN payment AS p ON c.customer_id = p.customer_id -- Esoteric SELECT c.first_name, c.last_name, p.amount FROM payment AS p RIGHT...
    By Luka Matijević 2025-05-31 20:25:31 0 213
    Coding
    When SQL Meets Lambda Expressions
    A few modern SQL dialects have started introducing lambda expressions ARRAY types are a part of the ISO/IEC 9075 SQL standard. The standard specifies how to: Construct arrays Nest data into arrays (e.g. by means of aggregation or subqueries) Unnest data from arrays into tables But it is very unopinionated when it comes to function support. The ISO/IEC 9075-2:2023(E) 6.47 <array value expression> specifies concatenation of arrays, whereas the 6.48 <array value...
    By Luka Matijević 2025-05-31 20:25:30 0 250
    Coding
    Using Pages CMS for Static Site Content Management
    Using Pages CMS for Static Site Content Management | CSS-Tricks Friends, I’ve been on the hunt for a decent content management system for static sites for… well, about as long as we’ve all been calling them “static sites,” honestly. I know, I know: there are a ton of content management system options available, and while I’ve tested several, none have really been the one, y’know? Weird pricing models, difficult customization, some even end up becoming a whole ‘nother...
    By Luka Matijević 2025-05-31 20:21:47 0 255
More Blogs
Virtualbook
CDN FREE
Read More
Art
Pokémon TCG Pocket : Ho-Oh et Lugia, un retour douloureux après une grosse bourde
Pokémon TCG Pocket, erreur, Ho-Oh, Lugia, mise à jour, jeu mobile, cartes Pokémon, communauté...
By Chloé Anaïs 2025-08-11 05:05:24 1 41
Art
Wie wir die erste Animation unseres Studios in 60 Tagen gemacht haben
## Einführung In einer Welt, in der jeder von einem kreativen Genies träumt, stehen wir, ein...
By Luisa Amelie 2025-09-07 19:05:17 1 25
Shopping
USA Manufacturer of Sex Bolts, Shoulder Screws, Shafts, Fasteners – AMPG
AMPG is a trusted USA manufacturer of high-quality fasteners. We provide...
By Shabirkhan 7sk 2025-08-07 05:11:25 0 169
Art
Jackery Explorer 1000 特惠:电池银行立减 $350!
便携电池、折扣、充电、Jackery、移动电源、户外生活、节省开支 ## 引言...
By Dan Fu 2025-08-19 12:05:18 1 31
Art
Meta zweifelt am Erfolg seiner Hypernova-Brillen
## Ein Schatten über Hypernova: Metas stille Zweifel In der pulsierenden Welt der Technologie,...
By Katharina Laura 2025-08-29 11:05:19 1 30
Sponsored
Virtuala FansOnly https://virtuala.site