/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

in.relation.to
| | php.watch
4.8 parsecs away

Travel
| | PHP 8.0: Attributes
| | modern-sql.com
5.4 parsecs away

Travel
| | LISTAGG is the new SQL standard version of GROUP_CONCAT or STRING_AGG. LISTAGG supports DISTINCT and provides an ON OVERFLOW clause to control the behavior when exceeding the maximum string length.
| | blog.jooq.org
8.1 parsecs away

Travel
| | Everyone knows the SQL SUM() aggregate function (and many people also know its window function variant). When querying the Sakila database, we can get the daily revenue (using PostgreSQL syntax): WITH p AS ( SELECT CAST (payment_date AS DATE) AS date, amount FROM payment ) SELECT date, SUM (amount) AS daily_revenue, SUM (SUM (amount)) OVER
| | alexop.dev
45.9 parsecs away

Travel
| Learn how to implement visual regression testing in Vue.js using Vitest's browser mode. This comprehensive guide covers setting up screenshot-based testing, creating component stories, and integrating with CI/CD pipelines for automated visual testing.