# Videos

Published articles for Videos.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Thanks for participating in APNIC 62

DevFeed: [Thanks for participating in APNIC 62](<https://devfeed.tech/articles/thanks-for-participating-in-apnic-62-10865.md>)

Original publisher: [Read original article](<https://blog.apnic.net/2026/09/10/thanks-for-participating-in-apnic-62/>)

Author: Timothy Hildred

Published: 2026-09-10T13:16:58Z

Content type: article

Language: en

Sources: [APNIC Blog](<https://devfeed.tech/sources/apnic-blog.md>)

Topics: [Internet](<https://devfeed.tech/topics/internet.md>), [networking](<https://devfeed.tech/topics/networking.md>), [NIXI](<https://devfeed.tech/topics/nixi.md>)

Tags: [apnic-62](<https://devfeed.tech/tags/apnic-62.md>), [blog](<https://devfeed.tech/tags/blog.md>), [community](<https://devfeed.tech/tags/community.md>), [conference](<https://devfeed.tech/tags/conference.md>), [conferences](<https://devfeed.tech/tags/conferences.md>), [event](<https://devfeed.tech/tags/event.md>), [events](<https://devfeed.tech/tags/events.md>), [india](<https://devfeed.tech/tags/india.md>), [industry](<https://devfeed.tech/tags/industry.md>), [internet](<https://devfeed.tech/tags/internet.md>), [keynote](<https://devfeed.tech/tags/keynote.md>), [learn](<https://devfeed.tech/tags/learn.md>), [linkedin](<https://devfeed.tech/tags/linkedin.md>), [networking](<https://devfeed.tech/tags/networking.md>), [nixi](<https://devfeed.tech/tags/nixi.md>), [september-2026](<https://devfeed.tech/tags/september-2026.md>), [speakers](<https://devfeed.tech/tags/speakers.md>), [survey](<https://devfeed.tech/tags/survey.md>), [transcripts](<https://devfeed.tech/tags/transcripts.md>), [updates](<https://devfeed.tech/tags/updates.md>), [videos](<https://devfeed.tech/tags/videos.md>), [youtube](<https://devfeed.tech/tags/youtube.md>)

### AI overview

APNIC 62 brought together 583 in-person and remote attendees from 54 economies in Mumbai from 4 to 10 September 2026. The article thanks participants, speakers, sponsors, and organizers, and points readers to the conference report, recordings, presentations, transcripts, and survey.

### Source excerpt

Thank you to everyone who participated in person and remotely at APNIC 62, hosted by the National Internet Exchange of India (NIXI) and co-hosted by ISPAI, from 4 to 10 September 2026 in Mumbai, India.

## Examining the artifacts job of a Playwright GitLab CI / CD pipeline

DevFeed: [Examining the artifacts job of a Playwright GitLab CI / CD pipeline](<https://devfeed.tech/articles/examining-the-artifacts-job-of-a-playwright-gitlab-ci-cd-pipeline-22416.md>)

Original publisher: [Read original article](<https://www.tjmaher.com/2026/08/examining-artifacts-job-of-playwright.html>)

Author: T.J. Maher (noreply@blogger.com)

Published: 2026-08-29T23:19:22Z

Content type: tutorial

Language: en

Sources: [T.J. Maher](<https://devfeed.tech/sources/t-j-maher.md>)

Topics: [Playwright](<https://devfeed.tech/topics/playwright.md>), [GitLab](<https://devfeed.tech/topics/gitlab.md>), [CI/CD Pipeline](<https://devfeed.tech/topics/ci-cd-pipeline.md>), [CI/CD](<https://devfeed.tech/topics/cicd.md>), [test](<https://devfeed.tech/topics/test.md>)

Tags: [bun-create-playwright](<https://devfeed.tech/tags/bun-create-playwright.md>), [ci-cd](<https://devfeed.tech/tags/ci-cd.md>), [ci-cd-pipeline](<https://devfeed.tech/tags/ci-cd-pipeline.md>), [gitlab](<https://devfeed.tech/tags/gitlab.md>), [playwright](<https://devfeed.tech/tags/playwright.md>), [screenshots](<https://devfeed.tech/tags/screenshots.md>), [test](<https://devfeed.tech/tags/test.md>), [trace](<https://devfeed.tech/tags/trace.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

This tutorial examines how a Playwright GitLab CI/CD pipeline stores and exposes test artifacts. It explains the playwright-report, test-results, and reports/junit folders and describes generated HTML and JUnit reports, screenshots, videos, and trace reports.

### Source excerpt

You may have noticed that in the GitLab CI / CD Pipeline for our Playwright project, in the .gitlab-ci.yml file, after our scripts has run, in the Test stage, there is a subsection called "artifacts" with certain paths to something called "playwright-report", "test-results", and "reports". The Playwright -> Artifacts -> Reports stage playwright: extends: .bun_playwright stage: test timeout: 30 minutes ... ... artifacts: when: always paths: - playwright-report/ - test-results/ - reports/ reports: junit: reports/junit/results.xml expire_in: 30 days https://gitlab.com/tjmaher/bun-create-playwright/-/blob/main/.gitlab-ci.yml Every time Playwright tests run, it generates proof of the test execution: screenshots capturing the state of the UI when a test failed, video recordings of an entire browser session, HTML and JUnit XML test reports, trace reports showing action logs, network requests. These artifacts, when the tests run locally, are placed by the Playwright Test runner in generated folders, playwright-report and test-results, along with a folder called reports/junit. With this post, we will be examining how this artifacts stage of the GitLab CI/ CD pipeline produces downloadable artifacts we can examine. Playwright-Report: A Playwright Test folderThe Playwright Test runner creates a folder called "playwright-report", if it doesn't already exist, and an HTML file called index.html documenting the completed test run. From Playwright.dev / Test Reporters: "Playwright Test comes with a few built-in reporters for different needs and ability to provide custom reporters. [...] All built-in reporters show detailed information about failures, and mostly differ in verbosity for successful runs. [...] HTML reporter produces a self-contained folder that contains report for the test run that can be served as a web page". The HTML Report is the one that automatically opens after you run your tests locally, or if you are using the node package manager: npx playwright show-report

## jetc.dev Newsletter Issue #328

DevFeed: [jetc.dev Newsletter Issue #328](<https://devfeed.tech/articles/jetc-dev-newsletter-issue-328-22960.md>)

Original publisher: [Read original article](<https://jetc.dev/issues/328.html>)

Author: CommonsWare

Published: 2026-08-25T14:00:00Z

Content type: article

Language: en

Sources: [jetc.dev | Issues](<https://devfeed.tech/sources/jetc-dev-issues.md>)

Topics: [Jetpack Compose](<https://devfeed.tech/topics/jetpack-compose.md>), [modules](<https://devfeed.tech/topics/modules.md>), [API](<https://devfeed.tech/topics/api.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [batching](<https://devfeed.tech/tags/batching.md>), [exceptions](<https://devfeed.tech/tags/exceptions.md>), [images](<https://devfeed.tech/tags/images.md>), [jetpack-compose](<https://devfeed.tech/tags/jetpack-compose.md>), [modules](<https://devfeed.tech/tags/modules.md>), [newsletter](<https://devfeed.tech/tags/newsletter.md>), [published](<https://devfeed.tech/tags/published.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Newsletter Issue #328 covers Jetpack Compose development topics, including API modules and composables, lazy-container lifecycle exceptions, recomposition and state-change batching, and selecting and copying text from images and videos.

### Source excerpt

API modules and composables! LazyColumn() exceptions! 'Select and copy text' for images and videos!

## Weekly recommendations of articles and videos about programming, graphics, and computing

DevFeed: [Weekly recommendations of articles and videos about programming, graphics, and computing](<https://devfeed.tech/articles/things-3-25615.md>)

Original publisher: [Read original article](<https://www.romainguy.dev/posts/2026/things-3/>)

Author: Romain Guy

Published: 2026-08-20T00:00:00Z

Content type: article

Language: en

Sources: [Posts on Romain Guy](<https://devfeed.tech/sources/posts-on-romain-guy.md>)

Topics: [Programming](<https://devfeed.tech/topics/programming.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [intel](<https://devfeed.tech/topics/intel.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [article](<https://devfeed.tech/tags/article.md>), [articles](<https://devfeed.tech/tags/articles.md>), [books](<https://devfeed.tech/tags/books.md>), [developer](<https://devfeed.tech/tags/developer.md>), [fpu](<https://devfeed.tech/tags/fpu.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [graphics](<https://devfeed.tech/tags/graphics.md>), [intel](<https://devfeed.tech/tags/intel.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [links](<https://devfeed.tech/tags/links.md>), [precision](<https://devfeed.tech/tags/precision.md>), [programming](<https://devfeed.tech/tags/programming.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

A weekly roundup of recommended reading and viewing covering Intel's MMX, linear algebra, floating-point precision, Bézier curves, blackbody color fits, GPU memory behavior, and Game Boy Advance graphics modes.

### Source excerpt

Here is a list of tings I read/watched/played/etc. this week that you might find interesting or enjoyable: Things to read Link to heading SIMD in the 90s -- Great article explaining what Intel's MMX was all about. Linear algebra done right -- Contains a lot of stuff that I feel like I have to relearn every few years. Double-double: 31 digits of precision without leaving the FPU -- I really, really like reading about floaing points :) Curvature Béziers -- Yet another fascinating article on Bézier curves, this time with a focus on curvature. Blackbody: 4 rational fits -- A set of analytical fits for blackbody colors, from 798 to 5772 K. I have used a common fit before, but these fits look more useful in some situations. What happens when a GPU reads memory -- More information about how GPUs work is always welcome. Things to watch Link to heading How the Game Boy Advance's graphics modes made it so advanced -- A tour of the GameBoy Advance's graphics modes. I had a blast programming for the GBA back then, I kind of miss this style of graphics programming.

## Submissions open for Godot 2026 showreel

DevFeed: [Submissions open for Godot 2026 showreel](<https://devfeed.tech/articles/submissions-open-for-godot-2026-showreel-14996.md>)

Original publisher: [Read original article](<https://godotengine.org/article/submissions-open-godot-2026-showreel/>)

Author: Emi

Published: 2026-08-15T13:00:00Z

Content type: article

Language: en

Sources: [Godot Engine Official](<https://devfeed.tech/sources/godot-engine-official.md>)

Topics: [Godot](<https://devfeed.tech/topics/godot.md>), [Development](<https://devfeed.tech/topics/development.md>), [App](<https://devfeed.tech/topics/app.md>)

Tags: [2026](<https://devfeed.tech/tags/2026.md>), [development](<https://devfeed.tech/tags/development.md>), [games](<https://devfeed.tech/tags/games.md>), [maintainers](<https://devfeed.tech/tags/maintainers.md>), [news](<https://devfeed.tech/tags/news.md>), [people](<https://devfeed.tech/tags/people.md>), [projects](<https://devfeed.tech/tags/projects.md>), [recurrent](<https://devfeed.tech/tags/recurrent.md>), [tools](<https://devfeed.tech/tags/tools.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Godot invites creators to submit videos of published or in-progress games and tools for the 2026 Godot Showreel. Submissions close on October 1, 2026, followed by voting from October 2 through October 16.

### Source excerpt

Showcase your Godot creations in 2026! We're inviting submissions of short videos featuring your published or in-progress Godot games or tools. Don't miss this chance to be a part of it!

## Meta is back with Muse Glimmer: local, agentic, multimodal, and open source

DevFeed: [Meta is back with Muse Glimmer: local, agentic, multimodal, and open source](<https://devfeed.tech/articles/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source-7362.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/muse-glimmer>)

Author: Pedro Cuenca; merve; ben burtenshaw; Aritra Roy Gosthipaty

Published: 2026-08-10T00:00:00Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [vlm](<https://devfeed.tech/topics/vlm.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [hugging face](<https://devfeed.tech/topics/hugging-face.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [coding](<https://devfeed.tech/topics/coding.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [hub](<https://devfeed.tech/tags/hub.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [images](<https://devfeed.tech/tags/images.md>), [llama-cpp](<https://devfeed.tech/tags/llama-cpp.md>), [llms](<https://devfeed.tech/tags/llms.md>), [local](<https://devfeed.tech/tags/local.md>), [meta](<https://devfeed.tech/tags/meta.md>), [model](<https://devfeed.tech/tags/model.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [muse](<https://devfeed.tech/tags/muse.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [videos](<https://devfeed.tech/tags/videos.md>), [vllm](<https://devfeed.tech/tags/vllm.md>), [vlm](<https://devfeed.tech/tags/vlm.md>), [vlms](<https://devfeed.tech/tags/vlms.md>)

### AI overview

Hugging Face presents Muse Glimmer, a local, agentic, multimodal, open-source 30B-parameter vision-language model developed with Meta. The article outlines its vision and language architecture, benchmark context, optional speculative decoding for faster generation, and support for both images and videos.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.

## Weekly recommendations for reading, watching, and trying

DevFeed: [Weekly recommendations for reading, watching, and trying](<https://devfeed.tech/articles/things-1-25613.md>)

Original publisher: [Read original article](<https://www.romainguy.dev/posts/2026/things-1/>)

Author: Romain Guy

Published: 2026-08-06T00:00:00Z

Content type: opinion

Language: en

Sources: [Posts on Romain Guy](<https://devfeed.tech/sources/posts-on-romain-guy.md>)

Topics: [C++](<https://devfeed.tech/topics/c-plus-plus.md>), [Data structures](<https://devfeed.tech/topics/data-structures.md>), [benchmarking](<https://devfeed.tech/topics/benchmarking.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [render](<https://devfeed.tech/topics/render.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [articles](<https://devfeed.tech/tags/articles.md>), [benchmarking](<https://devfeed.tech/tags/benchmarking.md>), [books](<https://devfeed.tech/tags/books.md>), [c-plus-plus](<https://devfeed.tech/tags/c-plus-plus.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [developer](<https://devfeed.tech/tags/developer.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [graphics](<https://devfeed.tech/tags/graphics.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [links](<https://devfeed.tech/tags/links.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [render](<https://devfeed.tech/tags/render.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

A weekly list of recommendations covering C++26 std::hive internals and performance, rendering and GPU techniques, animation, mountaineering, films, an open-source cloud computer, and parallel Delaunay triangulation.

### Source excerpt

Here is a list of tings I read/watched/played/etc. this week that you might find interesting or enjoyable: Things to read Link to heading A Deep Dive into C++26 std::hive: The Ultimate Container for Active Data -- Some details about the internals of C++ 26's new data structure. How fast is C++26's std::hive? -- Pretty self-explanatory and useful numbers to keep in mind. A Spectral BSSRDF for Shading Human Skin -- A spectral shading model that can be used to render different skin tones. On the Accuracy of Surface Scattering Theories -- Another reason why our rendering models are not quite good enough. A Texture Lookup Approach to Bézier Curve Evaluation on the GPU -- A clever use of GPU textures units to render Bézier curves efficiently. Haikyu!! -- I've been re-reading this manga. The anime is also worth it, for the animation itself. Annapurna: First Conquest of an 8000-meter Peak -- Maurice Herzog's account of the first successful ascent of Annapurna. Read the French original if you can. And you might want to read True Summit afterwards. Things to watch Link to heading Benchmarking - It's About Time -- Benchmarking is hard, but Matt Godbolt makes it fun and interesting. Nirvanna the Band the Show the Movie -- I watched it without knowing what it was really about. You should do the same, it takes an unexpected turn. Things I want to try Link to heading Wasmo -- An Open Source "cloud computer". delaunay32 -- Fast, parallel 2D Delaunay triangulation using exact integer predicates.

## Open Sauce and GPS time were my summer AI Antiseptics

DevFeed: [Open Sauce and GPS time were my summer AI Antiseptics](<https://devfeed.tech/articles/open-sauce-and-gps-time-were-my-summer-ai-antiseptics-10472.md>)

Original publisher: [Read original article](<https://www.jeffgeerling.com/blog/2026/open-sauce-gps-time-badge/>)

Author: jeff@jeffgeerling.com (Jeff Geerling)

Published: 2026-07-22T14:00:00Z

Content type: opinion

Language: en

Sources: [Jeff Geerling](<https://devfeed.tech/sources/jeff-geerling.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Data visualization](<https://devfeed.tech/topics/data-visualization.md>), [MicroPython](<https://devfeed.tech/topics/micropython.md>), [Claude](<https://devfeed.tech/topics/claude.md>), [datasets](<https://devfeed.tech/topics/datasets.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [badge](<https://devfeed.tech/tags/badge.md>), [claude](<https://devfeed.tech/tags/claude.md>), [coding](<https://devfeed.tech/tags/coding.md>), [data-visualization](<https://devfeed.tech/tags/data-visualization.md>), [electronics](<https://devfeed.tech/tags/electronics.md>), [experimentation](<https://devfeed.tech/tags/experimentation.md>), [gps](<https://devfeed.tech/tags/gps.md>), [micropython](<https://devfeed.tech/tags/micropython.md>), [open-sauce](<https://devfeed.tech/tags/open-sauce.md>), [projects](<https://devfeed.tech/tags/projects.md>), [time](<https://devfeed.tech/tags/time.md>), [videos](<https://devfeed.tech/tags/videos.md>), [visualization](<https://devfeed.tech/tags/visualization.md>)

### AI overview

The author describes using Claude to build a 2,141-line MicroPython Badgeware app for a Pimoroni Tufty 2350 and Adafruit PA1010D GPS module. The GPS Time Badge uses GPS data to discipline the badge's internal real-time clock, although timing accuracy was limited by the hardware and BadgeOS architecture. The author also logged GPS satellite and fix-quality data and used Claude to create an interactive visualization, highlighting data visualization as a practical use of AI tools.

### Source excerpt

In the midst of our AI slop revolution, traveling to the West coast for Open Sauce this past weekend was the perfect antiseptic for rising costs, summer heat, and online divisiveness. It's ironic, then, that I used Claude to vibe code my Tufty GPS Time Badge. Partly due to time constraints, and partly because I wanted to see if I could complete a personal project end-to-end, without editing a line of code, I throw my requirements at Claude and ultimately came up with this 2141-line MicroPython app for Pimoroni's Badgeware ecosystem.

## Access and share AI Gateway leaderboard data

DevFeed: [Access and share AI Gateway leaderboard data](<https://devfeed.tech/articles/access-and-share-ai-gateway-leaderboard-data-1036.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/open-data-and-shareable-charts-for-ai-gateway-leaderboards>)

Author: Jerilyn Zheng

Published: 2026-07-14T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [API](<https://devfeed.tech/topics/api.md>), [CSV](<https://devfeed.tech/topics/csv.md>), [inference-providers](<https://devfeed.tech/topics/inference-providers.md>), [data](<https://devfeed.tech/topics/data.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-gateway](<https://devfeed.tech/tags/ai-gateway.md>), [api](<https://devfeed.tech/tags/api.md>), [data](<https://devfeed.tech/tags/data.md>), [images](<https://devfeed.tech/tags/images.md>), [inference-providers](<https://devfeed.tech/tags/inference-providers.md>), [leaderboard](<https://devfeed.tech/tags/leaderboard.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [model](<https://devfeed.tech/tags/model.md>), [open](<https://devfeed.tech/tags/open.md>), [ranking](<https://devfeed.tech/tags/ranking.md>), [time](<https://devfeed.tech/tags/time.md>), [tokens](<https://devfeed.tech/tags/tokens.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Vercel has opened the data behind the AI Gateway leaderboards under the CC BY 4.0 license. The data can be downloaded as CSV or queried through an export API, while charts can be shared as branded PNG images. The leaderboards track daily production usage across models, labs, apps, and inference providers.

### Source excerpt

We are making the data behind the AI Gateway leaderboards open under the CC BY 4.0 license. You can now download or query the data through the leaderboard-export API endpoint and render any chart as a shareable image. The AI Gateway leaderboards show how AI is used in production, ranking traffic for models, labs, apps, and providers. Data is aggregated daily across trillions of tokens, so you can see what gets adopted and how that changes over time. For deeper analysis, see the July AI Gateway Production Index. What's ranked There are four leaderboards, each with its own metrics: Leaderboard Ranks Metrics Models Individual models Requests, token volume, spend, images or videos generated Labs Model labs Requests, token volume, spend, images or videos generated Apps Opted-in apps built on the AI Gateway Token volume, spend Providers Inference providers Token volume, spend Models and labs can be filtered by modality (text, image, video) and show a daily percentage share over time; apps and providers are aggregated across all modalities and show a ranked top list. Open data The data behind the leaderboards is open, published under Creative Commons Attribution 4.0 (CC BY 4.0). You are free to use, share, and adapt it, including commercially, as long as you give credit, link to the license, and indicate if changes were made. Every chart and ranked list has a download button that exports the current view as a CSV. For programmatic access, use the export endpoint, which returns the same data and is cached for 24 hours: For models and labs, each row is one entity's daily share of a single metric. One response includes rows for requests, tokens, spend, imageCount, and videoCount, so filter on the metric field to pull out the series you want. Share a chart Every chart has a share button that turns the current view into an image. Pick an aspect ratio (landscape, square, or portrait), then download it as a PNG or copy it to your clipboard. The image includes the legend, title, a

## Angular in 2026: Mid-Year Reality Check, Signals, and AI Code Quality!

DevFeed: [Angular in 2026: Mid-Year Reality Check, Signals, and AI Code Quality!](<https://devfeed.tech/articles/angular-in-2026-mid-year-reality-check-signals-and-ai-code-quality-18906.md>)

Original publisher: [Read original article](<https://blog.angular.dev/angular-in-2026-mid-year-reality-check-signals-and-ai-code-quality-ff37df480574?source=rss----447683c3d9a3---4>)

Author: Angular

Published: 2026-06-05T04:23:01Z

Content type: article

Language: en

Sources: [Angular](<https://devfeed.tech/sources/angular.md>)

Topics: [Angular](<https://devfeed.tech/topics/angular.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Model Context Protocol (MCP)](<https://devfeed.tech/topics/model-context-protocol-mcp.md>), [Tooling](<https://devfeed.tech/topics/tooling.md>), [Code quality](<https://devfeed.tech/topics/code-quality.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [angular](<https://devfeed.tech/tags/angular.md>), [angular-newsletter](<https://devfeed.tech/tags/angular-newsletter.md>), [angular-weekly](<https://devfeed.tech/tags/angular-weekly.md>), [code-quality](<https://devfeed.tech/tags/code-quality.md>), [mcp](<https://devfeed.tech/tags/mcp.md>), [tooling](<https://devfeed.tech/tags/tooling.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

This mid-year Angular community roundup reviews 2026 framework predictions and highlights discussions about zoneless applications, Signals, AI-assisted tooling using the Model Context Protocol, AI-generated Angular code quality, Angular v21, and modern learning resources.

### Source excerpt

We are already halfway through 2026 📅 That means it's the perfect time to look back at the big framework predictions made at the start of the year and see which trends are actually dominating our codebases. From checking our apps for a zoneless future to auditing AI-generated code, this week's community round-up has you covered. Dive into these expert insights and level up your stack: Predictions for Angular in 2026: Were They Right? (Spanish) Now that we are midway through the year, it's time to check in on our expectations! This video features an insightful conversation mixed with a massive panel of experts -- including Alejandro Cuba Ruiz @zorphdark, Eduardo Roth @eduardoRoth, Alfredo Pérez, Nicolás Molina @nicobytes, Vanessa Marely, and Ricardo Chavarría. Together, they look back at their original visions for 2026 to see which predictions have already become reality. Watch the round-table discussion: https://youtu.be/xzaXVSrzuTs From Commands to Conversations: AI-Assisted Tooling Sonu Kapoor @SonuKapoor1978 explores how the Model Context Protocol (MCP) is fundamentally transforming Angular development this year. Discover how tooling has evolved to reason about your workspace, moving far beyond basic CLI scaffolding. Read the full analysis: https://www.codemag.com/Article/2601071/From-Commands-to-Conversations-How-AI-Assisted-Tooling-Is-Transforming-Angular-Development Your AI is Coding Angular Wrong & Quick Angular v21 Recap Muhammad Ahsan Ayaz @codewith_ahsan drops two incredibly valuable videos. First, a rapid-fire refresher on everything that landed in Angular v21. Second, a crucial look at why standard AI models frequently still write outdated Angular code, and how you can fix it. Watch the v21 Recap: https://youtu.be/pVTiAZgEslw Watch "Your AI is Coding Wrong": https://youtu.be/tCROVJMcAF8 Modern Angular Free Course Looking for a comprehensive, up-to-date guide to the framework's modern features as of 2026? Loiane Groner @loiane has released an entirely free

## How Higgsfield turns simple ideas into cinematic social videos

DevFeed: [How Higgsfield turns simple ideas into cinematic social videos](<https://devfeed.tech/articles/how-higgsfield-turns-simple-ideas-into-cinematic-social-videos-6450.md>)

Original publisher: [Read original article](<https://openai.com/index/higgsfield>)

Published: 2026-01-21T10:00:00Z

Content type: article

Language: en

Sources: [OpenAI News](<https://devfeed.tech/sources/openai-news.md>)

Topics: [OpenAI](<https://devfeed.tech/topics/openai.md>), [Generative AI](<https://devfeed.tech/topics/generative-ai.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [api](<https://devfeed.tech/tags/api.md>), [generation](<https://devfeed.tech/tags/generation.md>), [generative-ai](<https://devfeed.tech/tags/generative-ai.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [model](<https://devfeed.tech/tags/model.md>), [models](<https://devfeed.tech/tags/models.md>), [openai](<https://devfeed.tech/tags/openai.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Higgsfield is a generative media platform that turns product links, images, or simple ideas into short-form cinematic videos. It uses OpenAI GPT-4.1 and GPT-5 to interpret creative intent and plan narrative, pacing, camera motion, and visual emphasis, then uses Sora 2 to render the video.

### Source excerpt

Discover how Higgsfield gives creators cinematic, social-first video output from simple inputs using OpenAI GPT-4.1, GPT-5, and Sora 2.

## The Future of the PostgreSQL Hacking Workshop

DevFeed: [The Future of the PostgreSQL Hacking Workshop](<https://devfeed.tech/articles/the-future-of-the-postgresql-hacking-workshop-33631.md>)

Original publisher: [Read original article](<https://rhaas.blogspot.com/2025/12/the-future-of-postgresql-hacking.html>)

Author: Robert Haas (noreply@blogger.com)

Published: 2025-12-04T18:58:00Z

Content type: opinion

Language: en

Sources: [Robert Haas](<https://devfeed.tech/sources/robert-haas.md>)

Topics: [PostgreSQL](<https://devfeed.tech/topics/postgresql.md>), [Development](<https://devfeed.tech/topics/development.md>), [aio](<https://devfeed.tech/topics/aio.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [2026](<https://devfeed.tech/tags/2026.md>), [conferences](<https://devfeed.tech/tags/conferences.md>), [discord](<https://devfeed.tech/tags/discord.md>), [mentoring](<https://devfeed.tech/tags/mentoring.md>), [postgresql](<https://devfeed.tech/tags/postgresql.md>), [talks](<https://devfeed.tech/tags/talks.md>), [videos](<https://devfeed.tech/tags/videos.md>), [workshop](<https://devfeed.tech/tags/workshop.md>)

### AI overview

The PostgreSQL Hacking Workshop will take a break in December 2025, and its future schedule is uncertain because finding enough suitable online talks has become difficult. The series may occur less frequently or use panel discussions, with a talk on AIO planned for January 2026.

### Source excerpt

The PostgreSQL Hacking Workshop will be taking a well-earned Christmas break in December of 2025. The future of the workshop is a little bit unclear, because I'm continuing to have a bit of trouble finding enough good talks online to justify doing one per month: the best source of talks for the event is pgconf.dev, but not all of those talks are about hacking on PostgreSQL, and not all of those that are about hacking are equally interesting to potential attendees. Also, we've already eaten through much of the backlog of older hacking-related talks that are posted online. Many conferences have few hacking-related talks, or just don't post any videos (which are expensive and time-consuming to produce). Read more "

## Enhancing Myntra App performance: Transitioning from GIFs to Videos

DevFeed: [Enhancing Myntra App performance: Transitioning from GIFs to Videos](<https://devfeed.tech/articles/enhancing-myntra-app-performance-transitioning-from-gifs-to-videos-20135.md>)

Original publisher: [Read original article](<https://medium.com/myntra-engineering/enhancing-myntra-app-performance-transitioning-from-gifs-to-videos-2aa275a29c34?source=rss----7484818e9f88---4>)

Author: Kartik Sharma

Published: 2025-08-30T07:00:01Z

Content type: article

Language: en

Sources: [Myntra](<https://devfeed.tech/sources/myntra.md>)

Topics: [App](<https://devfeed.tech/topics/app.md>), [image animation](<https://devfeed.tech/topics/image-animation.md>), [Mobile](<https://devfeed.tech/topics/mobile.md>), [Playback](<https://devfeed.tech/topics/playback.md>), [Android](<https://devfeed.tech/topics/android.md>), [iOS](<https://devfeed.tech/topics/ios.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [app](<https://devfeed.tech/tags/app.md>), [gif](<https://devfeed.tech/tags/gif.md>), [h-264](<https://devfeed.tech/tags/h-264.md>), [ios](<https://devfeed.tech/tags/ios.md>), [mobile-app-performance](<https://devfeed.tech/tags/mobile-app-performance.md>), [performance](<https://devfeed.tech/tags/performance.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Myntra describes transitioning animated content in its Android and iOS apps from GIFs to video formats. The article attributes the change to GIFs' high memory usage, lower visual quality, large file sizes, and resulting performance and loading concerns, while comparing alternatives including WebP, APNG, and H.264/HLS video.

### Source excerpt

Introduction In the fast-paced world of e-commerce, every millisecond and every pixel counts. At Myntra, where visual content drives discovery and engagement, we embarked on a critical mission: to revolutionise how animations are delivered in our Android and iOS apps. This journey led us to transition from the ubiquitous GIF format to more efficient video formats, unlocking significant performance gains and a superior user experience. Background on GIFs The Graphics Interchange Format (GIF) has been a widely-used format for looping animations since its introduction in 1987. Its simplicity and broad compatibility made it a go-to choice in mobile apps. However, despite its ubiquity, GIFs come with several drawbacks that can negatively impact app performance and user experience. Challenges with GIFs in Myntra App At Myntra, we used GIFs extensively for animations in our home and brand page's widgets. Our existing Image components provided easy GIF playback. However, GIFs came with some serious drawbacks in native mobile environments: High Memory Usage: GIFs often lead to Out of Memory (OOM) errors, especially on low-end devices. Low Quality: Limited frame rates and poor bitmap quality degraded the visual experience. Large File Sizes: GIF assets were large, increasing network load and loading times. To mitigate these issues temporarily, we implemented several workarounds. These included optimising GIF assets and imposing restrictions on the file size of GIFs during the ingestion process. However, these were interim solutions and the move to an alternate was necessary for a more permanent and effective fix. Exploring Alternatives Before settling on a solution, we explored several alternatives to GIFs: WebP: This format offers better compression and quality than GIFs. It has broad web support and is native on Android, but is only supported natively on iOS versions 14 and above. APNG (Animated PNG): APNG provides excellent image quality and strong web browser support. Howe

## Bringing Svelte Summit to the whole community

DevFeed: [Bringing Svelte Summit to the whole community](<https://devfeed.tech/articles/bringing-svelte-summit-to-the-whole-community-3046.md>)

Original publisher: [Read original article](<https://svelte.dev/blog/svelte-summit-videos>)

Author: The Svelte team

Published: 2025-05-21T00:00:00Z

Content type: article

Language: en

Sources: [Svelte blog](<https://devfeed.tech/sources/svelte-blog.md>)

Topics: [Svelte](<https://devfeed.tech/topics/svelte.md>)

Tags: [community](<https://devfeed.tech/tags/community.md>), [conference](<https://devfeed.tech/tags/conference.md>), [development](<https://devfeed.tech/tags/development.md>), [financial](<https://devfeed.tech/tags/financial.md>), [livestream](<https://devfeed.tech/tags/livestream.md>), [summit](<https://devfeed.tech/tags/summit.md>), [svelte](<https://devfeed.tech/tags/svelte.md>), [videos](<https://devfeed.tech/tags/videos.md>), [youtube](<https://devfeed.tech/tags/youtube.md>)

### AI overview

The Svelte team will sponsor the release of talks from this month's Svelte Summit in Barcelona so they can be freely shared with a wider audience. The videos will be released through the Svelte Society YouTube account, supported by community funding.

### Source excerpt

This month's Svelte Summit in Barcelona was a glorious celebration of the community. We had lively conversations, delightful dinners, and funny, imaginative and thought-provoking talks. For everyone who couldn't make it there in person, the conference also sold virtual tickets to the livestream, which give on-demand access to the talks. These ticket sales make it possible to (for example) hire AV technicians and ensure that the stream is reliable and high-quality. Running a conference is extremely difficult and time-consuming, and we're very grateful to Svelte Society (Kevin in particular), Mainmatter, and everyone who bought a ticket for making the event a reality. But we've heard from many of you that the talks should be freely available so that they can be shared with the widest possible audience and... we agree! So the Svelte team has decided to sponsor the release of the talks, beginning this weekend. We're able to do this because of the generous financial support so many of you have given us via opencollective.com/svelte, which also funds important development work on the project. Subscribe to the Svelte Society YouTube account to be the first to know when the videos are released.

## New videos about OpenID Connect and Keycloak from FOSDEM 2025

DevFeed: [New videos about OpenID Connect and Keycloak from FOSDEM 2025](<https://devfeed.tech/articles/new-videos-about-openid-connect-and-keycloak-from-fosdem-2025-31689.md>)

Original publisher: [Read original article](<https://www.keycloak.org/2025/02/recordings-available-fosdem>)

Author: Alexander Schwartz

Published: 2025-02-25T00:00:00Z

Content type: release

Language: en

Sources: [Keycloak Blog](<https://devfeed.tech/sources/keycloak-blog.md>)

Topics: [FOSDEM](<https://devfeed.tech/topics/fosdem.md>), [Keycloak](<https://devfeed.tech/topics/keycloak.md>), [openid](<https://devfeed.tech/topics/openid.md>), [IAM](<https://devfeed.tech/topics/iam.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [fosdem](<https://devfeed.tech/tags/fosdem.md>), [idm](<https://devfeed.tech/tags/idm.md>), [kerberos](<https://devfeed.tech/tags/kerberos.md>), [keycloak](<https://devfeed.tech/tags/keycloak.md>), [ldap](<https://devfeed.tech/tags/ldap.md>), [openid-connect](<https://devfeed.tech/tags/openid-connect.md>), [saml](<https://devfeed.tech/tags/saml.md>), [sso](<https://devfeed.tech/tags/sso.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Keycloak announces that recordings of four FOSDEM 2025 talks related to Keycloak and OpenID Connect are available to watch online. The article also describes Keycloak's community presence at the event and highlights a talk on OAuth 2.0 Demonstrating Proof-of-Possession (DPoP), including its implementation with Keycloak and other open source components.

### Source excerpt

FOSDEM is a free event for software developers to meet, share ideas and collaborate. Every year, thousands of developers of free and open source software from all over the world gather at the event. Several talks regarding OpenID Connect and Keycloak have been recorded, and are now available online to re-watch. See below for the links to the videos. Meeting the Keycloak community on-site As an incubating project of the Cloud Native Computing Foundation (CNCF), we were happy to share the space of their stand. During the two days, we met with hundreds of existing Keycloak users on-site, as well as with people new to the IAM and identity space. It was fun and exciting to learn what people are doing. We would love to hear more from you about your success stories, what is crucial to your deployments and what can be done better. Fill out the online Keycloak Survey, so we can better understand your use cases, and if you want to share your experience with the wider Keycloak community.

## NLNOG Presentation trilogy on technical jobs and careers

DevFeed: [NLNOG Presentation trilogy on technical jobs and careers](<https://devfeed.tech/articles/nlnog-presentation-trilogy-on-technical-jobs-and-careers-36553.md>)

Original publisher: [Read original article](<https://berthub.eu/articles/posts/technical-job-presentations/>)

Published: 2025-01-02T07:00:00Z

Content type: article

Language: en

Sources: [Bert Hubert's writings](<https://devfeed.tech/sources/bert-hubert-s-writings.md>)

Topics: [jobs](<https://devfeed.tech/topics/jobs.md>), [meetings](<https://devfeed.tech/topics/meetings.md>)

Tags: [careers](<https://devfeed.tech/tags/careers.md>), [events](<https://devfeed.tech/tags/events.md>), [personal-development](<https://devfeed.tech/tags/personal-development.md>), [presentation](<https://devfeed.tech/tags/presentation.md>), [technical](<https://devfeed.tech/tags/technical.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

This page brings together a four-part series of NLNOG presentations about the working life and career of technical people. The talks discuss communication between technical staff and management, career improvement, and changing or improving jobs, while noting that the perspective is primarily Dutch and western European.

### Source excerpt

Over the past eight years I've held a trilogy (in four parts) of presentations over at NLNOG covering the working life and career of technical people. This is around two hours of video and slides (with notes), but I've heard from people who binge-watched all of it in one go. The presentations have been online for ages, but you had to know where to look for them. On this page I bring them all together, with some context.

## KeyConf24 recordings available

DevFeed: [KeyConf24 recordings available](<https://devfeed.tech/articles/keyconf24-recordings-available-31672.md>)

Original publisher: [Read original article](<https://www.keycloak.org/2024/11/keyconf24-videos-available>)

Author: Alexander Schwartz

Published: 2024-11-10T00:00:00Z

Content type: news

Language: en

Sources: [Keycloak Blog](<https://devfeed.tech/sources/keycloak-blog.md>)

Topics: [Keycloak](<https://devfeed.tech/topics/keycloak.md>), [Security](<https://devfeed.tech/topics/security.md>)

Tags: [event](<https://devfeed.tech/tags/event.md>), [idm](<https://devfeed.tech/tags/idm.md>), [kerberos](<https://devfeed.tech/tags/kerberos.md>), [keycloak](<https://devfeed.tech/tags/keycloak.md>), [ldap](<https://devfeed.tech/tags/ldap.md>), [openid-connect](<https://devfeed.tech/tags/openid-connect.md>), [saml](<https://devfeed.tech/tags/saml.md>), [sso](<https://devfeed.tech/tags/sso.md>), [talks](<https://devfeed.tech/tags/talks.md>), [updates](<https://devfeed.tech/tags/updates.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

KeyConf24, the 2024 Keycloak Identity Summit held in Vienna, made its recorded talks available online. The recordings cover Keycloak configuration, security, OAuth, authentication, user experience, and other identity-related topics.

### Source excerpt

KeyConf24, our 2024 Keycloak Identity Summit, happened in Vienna in September this year. We were excited to have a full room on site, and 150+ people watching online. Thanks to our event sponsor adorsys, all recorded videos are now available online at the event's website: https://keyconf.dev/. Re-watch the talks and learn from practitioners, developers and maintainers. Thanks to all our sponsors adorsys, Banfico, Hitachi and Red Hat who made this event possible! Wallets are Key - the state of play from Bangalore to Brussels Daniel Goldschneider (The OpenWallet Foundation) The Journey, Achievements, and Significance of the Keycloak SIG Community Vinod Anandan (JPMorgan Chase & Co.) Streamlining Keycloak Configuration Management: Exploring keycloak-config-cli Francis Pouatcha (adorsys) Keycloak's Updates on Emerging Paradigm of Identity and Compliance with Security Specifications Takashi Norimatsu (Hitachi, Ltd.) Building declaratively configured Keycloak Václav Muzikář (Red Hat) Core Keycloak features developed in past 12 months Marek Posolda (Red Hat) Integrating Keycloak with Openresty as a resource server in Open Banking Pritish Joshi (Banfico) Unlocking adaptive authentication with Keycloak Martin Bartoš (Red Hat) New and Noteworthy in the OAuth World Dmitry Telegin (Backbase UK) Extending Keycloak for All Your Identity Use Cases GR Patil (Phase Two) Enhancing User Experience with Native Authentication and Passkeys in Keycloak Martin Besozzi (TwoGenIdentity)

## Announcing Trino Summit 2024

DevFeed: [Announcing Trino Summit 2024](<https://devfeed.tech/articles/announcing-trino-summit-2024-8758.md>)

Original publisher: [Read original article](<https://trino.io/blog/2024/07/11/trino-summit-2024-call-for-speakers.html>)

Author: Cole Bowden, Manfred Moser, and Monica Miller

Published: 2024-07-11T00:00:00Z

Content type: news

Language: en

Sources: [Trino Blog](<https://devfeed.tech/sources/trino-blog.md>)

Topics: [big-data](<https://devfeed.tech/topics/big-data.md>), [data-engineering](<https://devfeed.tech/topics/data-engineering.md>), [Data Science](<https://devfeed.tech/topics/data-science.md>), [.NET 11](<https://devfeed.tech/topics/net-11.md>)

Tags: [architectures](<https://devfeed.tech/tags/architectures.md>), [big-data](<https://devfeed.tech/tags/big-data.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [community](<https://devfeed.tech/tags/community.md>), [data-engineering](<https://devfeed.tech/tags/data-engineering.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [event](<https://devfeed.tech/tags/event.md>), [security](<https://devfeed.tech/tags/security.md>), [sign-up](<https://devfeed.tech/tags/sign-up.md>), [speakers](<https://devfeed.tech/tags/speakers.md>), [sql](<https://devfeed.tech/tags/sql.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [summit](<https://devfeed.tech/tags/summit.md>), [videos](<https://devfeed.tech/tags/videos.md>), [virtual-event](<https://devfeed.tech/tags/virtual-event.md>)

### AI overview

Trino Summit 2024 is announced as a two-day virtual event on December 11 and 12, featuring talks for engineers, analysts, data scientists, and others interested in Trino. The article also opens a call for beginner to advanced speaker submissions on topics including data architectures, SQL analytics, data engineering, streaming, governance, security, deployment, and custom connectors.

### Source excerpt

Fresh off the heels of Trino Fest 2024, where Commander Bun Bun was busy meeting the Trino community in-person, we're already looking forward to another, bigger event to round out the year in Trino. For those who've been here a while, you know that can only mean one thing: Trino Summit 2024. Much like last year, it will be a two-day, fully virtual event, hosting a wide range of talks covering all things Trino on the 11th and 12th of December. Read on for more info, or if you're already convinced... Register to attend!

## Keycloak DevDay 2024 Videos published

DevFeed: [Keycloak DevDay 2024 Videos published](<https://devfeed.tech/articles/keycloak-devday-2024-videos-published-31646.md>)

Original publisher: [Read original article](<https://www.keycloak.org/2024/06/keycloak-dev-day-videos>)

Author: Niko Köbler

Published: 2024-06-14T00:00:00Z

Content type: release

Language: en

Sources: [Keycloak Blog](<https://devfeed.tech/sources/keycloak-blog.md>)

Topics: [Keycloak](<https://devfeed.tech/topics/keycloak.md>), [IAM](<https://devfeed.tech/topics/iam.md>), [Multi-tenancy](<https://devfeed.tech/topics/multi-tenancy.md>), [opa](<https://devfeed.tech/topics/opa.md>), [Apache Cassandra](<https://devfeed.tech/topics/cassandra.md>), [Extension](<https://devfeed.tech/topics/extension.md>), [Testcontainers](<https://devfeed.tech/topics/testcontainers.md>)

Tags: [cassandra](<https://devfeed.tech/tags/cassandra.md>), [community](<https://devfeed.tech/tags/community.md>), [conference](<https://devfeed.tech/tags/conference.md>), [event](<https://devfeed.tech/tags/event.md>), [extension](<https://devfeed.tech/tags/extension.md>), [idm](<https://devfeed.tech/tags/idm.md>), [kerberos](<https://devfeed.tech/tags/kerberos.md>), [keycloak](<https://devfeed.tech/tags/keycloak.md>), [ldap](<https://devfeed.tech/tags/ldap.md>), [multi-tenancy](<https://devfeed.tech/tags/multi-tenancy.md>), [opa](<https://devfeed.tech/tags/opa.md>), [openid-connect](<https://devfeed.tech/tags/openid-connect.md>), [saml](<https://devfeed.tech/tags/saml.md>), [sso](<https://devfeed.tech/tags/sso.md>), [testcontainers](<https://devfeed.tech/tags/testcontainers.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

This announcement says that recorded and live-streamed sessions from the first Keycloak DevDay conference were published online. It lists sessions covering Keycloak, including multi-tenancy, access management with OPA, extension development, Testcontainers, IAM, configuration, and Cassandra.

### Source excerpt

Back in February this year, we (Sebastian and me (Niko)) hosted the very first edition of Keycloak DevDay - a one-day, community-driven conference - in Frankfurt/Main, Germany. The event was a blast and completely sold-out, plus many additional participants online in the two parallel live streams. We were able to welcome attendees from all over Europe. Thank you all for being part of this incredible event! 🙏 For all of you who couldn't attend, we have published all the recorded and live streamed sessions online on my YouTube channel: Keynote: What's Next in Keycloak (Alexander Schwartz, Red Hat) Multi-Tenancy in Keycloak (Garth Patil, Phase Two) Flexible Access Management with Keycloak & OPA (Thomas Darimont, codecentric) Best Practices for Extension Development (Sven-Torben Janus, Conciso) Extensions Development with Testcontainers (Niko Köbler, @dasniko) A Look at Keycloak from the IAM Point of View (Robert Bauer, intension) Automating Keycloak Configuration (Sophie Tauchert, Relaxdays) Ask the Maintainers Session (A. Schwartz, T. Darimont, S. Schuster) IAM Doomsday Prepper (Maik Kingma) Keycloak Cassandra Datastore (Dominik Schlosser) The complete playlist can be found here. We are currently preparing the next edition "Keycloak DeveloperDay 2025". If you want to contribute, please get in touch with us (Sebastian & Niko)! Expect more information in the next weeks and months. Looking forward to have you and your colleagues & team members as attendees!

## What's new in Svelte: May 2024

DevFeed: [What's new in Svelte: May 2024](<https://devfeed.tech/articles/what-s-new-in-svelte-may-2024-3107.md>)

Original publisher: [Read original article](<https://svelte.dev/blog/whats-new-in-svelte-may-2024>)

Author: Dani Sandoval

Published: 2024-05-01T00:00:00Z

Content type: article

Language: en

Sources: [Svelte blog](<https://devfeed.tech/sources/svelte-blog.md>)

Topics: [Svelte](<https://devfeed.tech/topics/svelte.md>), [changelog](<https://devfeed.tech/topics/changelog.md>), [Development](<https://devfeed.tech/topics/development.md>), [modern web development](<https://devfeed.tech/topics/modern-web-development.md>)

Tags: [changelog](<https://devfeed.tech/tags/changelog.md>), [pre-release](<https://devfeed.tech/tags/pre-release.md>), [saas](<https://devfeed.tech/tags/saas.md>), [svelte](<https://devfeed.tech/tags/svelte.md>), [threlte](<https://devfeed.tech/tags/threlte.md>), [updates](<https://devfeed.tech/tags/updates.md>), [videos](<https://devfeed.tech/tags/videos.md>), [web-development](<https://devfeed.tech/tags/web-development.md>), [youtube](<https://devfeed.tech/tags/youtube.md>)

### AI overview

This May 2024 Svelte article announces that Svelte 5 has reached the Release Candidate stage. It highlights pre-release changes such as hot module reloading, global styles, more efficient compiled output and hydration, server-side re-exports from svelte/reactivity, a reactive URL object, and the $host rune. It also links to Svelte Summit talks and showcases community projects.

### Source excerpt

Svelte Summit was last week - featuring a number of fantastic talks from across the community. In the final talk, What You Can Do For Your Framework, Rich Harris (with a little help from PuruVJ's neoconfetti library) announced that Svelte 5 is now in the "Release Candidate". Lots of pre-release changes to cover in this post and a host of community showcase items... so let's dive in! Highlights from Svelte Summit Spring 2024 Below, you'll find links to all the talks in the livestream version of Svelte Summit. Simple and Sustainable web development in academic libraries with Svelte Building a SaaS module for SvelteKit Intro To LayerChart Spatial Programming with Threlte Studio Convex (Sponsored talk) Kitbook: Easily Build, Document, Inspect & Test Svelte Components Fullstack Testing What You Can Do For Your Framework - also covers a ton of the new features listed below These will all get broken up into more sharable (and rewatchable) videos over time, so make sure you subscribe to the Svelte Society YouTube channel to keep up to date. What's new in Svelte Svelte 5 is officially in the Release Candidate stage and gets closer to release every day. Below, you'll find some highlights from its pre-release changelog: Hot module reloading is now supported in Svelte 5 (5.0.0-next.97 and 101, #11106, #11132) It is now possible to define global (or child global) styles in a block (5.0.0-next.111, #11276) Compiled code is even more efficient for if blocks, each blocks and attribute updates (5.0.0-next.83-85, #10906, #10937 and #10917) The built-ins from svelte/reactivity are now re-exported to be available on the server (5.0.0-next.88, Docs, #10973) A new reactive URL object is now available in svelte/reactivity (5.0.0-next.103, Docs, #11157) HTML tags are now faster with more efficient hydration markers (5.0.0-next.90-91, #10986 and #11019) The new $host rune retrieves the this reference of the custom element that contains a component - removing the need for createEventDispatch

## Video: Intro to Real Life Network Automation

DevFeed: [Video: Intro to Real Life Network Automation](<https://devfeed.tech/articles/video-intro-to-real-life-network-automation-10970.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2024/03/video-intro-netops/>)

Published: 2024-03-15T06:48:00Z

Content type: article

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [Network](<https://devfeed.tech/topics/network.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [Infrastructure as code](<https://devfeed.tech/topics/infrastructure-as-code.md>)

Tags: [automation](<https://devfeed.tech/tags/automation.md>), [network](<https://devfeed.tech/tags/network.md>), [network-automation](<https://devfeed.tech/tags/network-automation.md>), [video](<https://devfeed.tech/tags/video.md>), [videos](<https://devfeed.tech/tags/videos.md>), [youtube](<https://devfeed.tech/tags/youtube.md>)

### AI overview

A guest lecture on the basics of real-life network automation was recorded and published on YouTube as part of a network automation course.

### Source excerpt

Urs Baumann invited me to have a guest lecture in his network automation course, and so I had the privilege of being in lovely Rapperswil last week, talking about the basics of real-life network automation. Urs published the video recording of the presentation on YouTube; hope you'll like it, and if you don't get too annoyed by the overly pushy ads, watch the other videos from his infrastructure-as-code course.

## Temporal 101: Learn Temporal with TypeScript

DevFeed: [Temporal 101: Learn Temporal with TypeScript](<https://devfeed.tech/articles/temporal-101-learn-temporal-with-typescript-35999.md>)

Original publisher: [Read original article](<https://temporal.io/blog/temporal-101-learn-temporal-with-typescript>)

Author: Kim Schlesinger

Published: 2023-03-14T05:00:00Z

Content type: release

Language: en

Sources: [Temporal Blog](<https://devfeed.tech/sources/temporal-blog.md>)

Topics: [TypeScript](<https://devfeed.tech/topics/typescript.md>), [SDK](<https://devfeed.tech/topics/sdk.md>), [Learning](<https://devfeed.tech/topics/learning.md>), [Gitpod](<https://devfeed.tech/topics/gitpod.md>), [Go Language](<https://devfeed.tech/topics/go-language.md>)

Tags: [developers](<https://devfeed.tech/tags/developers.md>), [exercise](<https://devfeed.tech/tags/exercise.md>), [firefox](<https://devfeed.tech/tags/firefox.md>), [free](<https://devfeed.tech/tags/free.md>), [fundamentals](<https://devfeed.tech/tags/fundamentals.md>), [github](<https://devfeed.tech/tags/github.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [install](<https://devfeed.tech/tags/install.md>), [release](<https://devfeed.tech/tags/release.md>), [typescript](<https://devfeed.tech/tags/typescript.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Temporal announced a free, self-paced Temporal 101 course in TypeScript for developers who are new to Temporal. The course covers fundamental Temporal concepts through written content, videos, assessments, and hands-on exercises, using a browser-based GitPod environment and the Temporal TypeScript SDK.

### Source excerpt

Announcing the release of our Temporal 101 in TypeScript course, designed for developers who are new to Temporal and want to quickly learn the fundamentals.

## Kubecon Recap: Official Videos & Announcing the Open Beta of the Fermyon Cloud

DevFeed: [Kubecon Recap: Official Videos & Announcing the Open Beta of the Fermyon Cloud](<https://devfeed.tech/articles/kubecon-recap-official-videos-announcing-the-open-beta-of-the-fermyon-cloud-15287.md>)

Original publisher: [Read original article](<https://www.fermyon.com/blog/kubecon-recap-fermyon-cloud-release>)

Author: Tim McCallum

Published: 2022-11-16T19:00:00Z

Content type: release

Language: en

Sources: [Fermyon - Experience the next wave of cloud computing.](<https://devfeed.tech/sources/fermyon-experience-the-next-wave-of-cloud-computing.md>)

Topics: [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [article](<https://devfeed.tech/tags/article.md>), [beta](<https://devfeed.tech/tags/beta.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [kubecon](<https://devfeed.tech/tags/kubecon.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

A recap of Fermyon's presence at KubeCon + CloudNativeCon North America 2022, featuring official videos and resources about Fermyon Cloud, Spin, and the open beta of Fermyon Cloud.

### Source excerpt

Thank you for visiting us at KubeCon + CloudNativeCon North America 2022. If you could not attend in person, this article will provide you with official footage and links to resources about Fermyon Cloud, Spin and more.

## Scrubbing videos using JavaScript

DevFeed: [Scrubbing videos using JavaScript](<https://devfeed.tech/articles/scrubbing-videos-using-javascript-37347.md>)

Original publisher: [Read original article](<https://muffinman.io/blog/scrubbing-videos-using-javascript/>)

Author: Stanko

Published: 2022-10-21T00:00:00Z

Content type: tutorial

Language: en

Sources: [Stanko Tadić](<https://devfeed.tech/sources/stanko-tadic.md>)

Topics: [JavaScript](<https://devfeed.tech/topics/javascript.md>), [browser](<https://devfeed.tech/topics/browser.md>), [Code](<https://devfeed.tech/topics/code.md>), [FFmpeg (Fast Forward Moving Picture Experts Group)](<https://devfeed.tech/topics/ffmpeg.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>)

Tags: [browser](<https://devfeed.tech/tags/browser.md>), [browsers](<https://devfeed.tech/tags/browsers.md>), [code](<https://devfeed.tech/tags/code.md>), [encoding](<https://devfeed.tech/tags/encoding.md>), [ffmpeg](<https://devfeed.tech/tags/ffmpeg.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [videos](<https://devfeed.tech/tags/videos.md>), [webm](<https://devfeed.tech/tags/webm.md>)

### AI overview

A tutorial on scrubbing HTML videos with JavaScript. It explains how keyframe frequency affects scrubbing smoothness and file size, compares browser behavior, and discusses providing MP4 and WebM versions.

### Source excerpt

JavaScript part is actually pretty easy, it is more about preparing the video file correctly. If you just want the code for converting videos using ffmpeg, jump to the last section. Otherwise, let's start scrolling down to see these two videos scrubbing: Every 5 framesEvery 100 frames Code used looks like this, it just updates currentTime based on window scroll. But the left video should work smoother than the right one. Depending on your browser, it can be more or less noticeable. The answer why it happens is keyframes. const video = document.querySelector('#video'); window.addEventListener('scroll', function() { video.currentTime = window.scrollY * 0.01; }); Keyframes # In video encoding, the keyframe is the full frame of the image in a video. Frames that are in between these keyframes (aka delta frames), contain only the difference between the previous (or the next) frame. Number of keyframes will vary depending on how the video was created and encoded. Having each frame encoded as a keyframe would be very inefficient and the video file would be huge. To display delta frames, video players decode the information and piece them together. Some players only do this when video is playing, but not when you are scrubbing through it. Because of that, and because it has way less keyframes, the right video feels much choppier than the left one. The video on the right contains a keyframe every one hundred frames, while the one on the left has one keyframe every five frames. That is twenty times more keyframes. Naturally, it reflects on the file size. For this specific video, it is about five times more. line-100.mp4 146 Kb line-5.mp4 845 Kb # ~5 times more line-100.webm 195 Kb line-5.webm 1038 Kb # ~5 times more Browser support # Browsers behave radically differently. But if you provide them a correct video format with enough keyframes, you should be pretty well covered. You'll have to provide the video in at least two formats - mp4 and webm. On desktop, Safari seems to ha

[Next page](<https://devfeed.tech/tags/videos.md?cursor=WyIyMDIyLTEwLTIxVDAwOjAwOjAwKzAwOjAwIiwgIjBhMTYyODFmLTEyOGQtNDJjYy1iY2YxLWU2NmUyZGVmZmJmMSJd>)