Join us

heart Curated links by FAUN
Sponsored Link FAUN Team
@faun shared a link, 4 days, 18 hours ago

Read DevOps Weekly - DevOpsLinks

DevOps Weekly Newsletter, DevOpsLinks. Curated DevOps news, tutorials, tools and more! 

Join thousands of other readers, 100% free, unsubscribe anytime.

Link
@faun shared a link, 1 day, 4 hours ago

Introducing react.dev

React has launched a new website (react.dev)that teaches modern React with function components and Hooks. The new site includes diagrams, illustrations, challenges, andover 600 new interactive examples. The old React documentation site has moved tolegacy.reactjs.org. The new docs teach React with ..

Link
@faun shared a link, 1 day, 4 hours ago

Announcing TypeScript 5.0

TypeScript 5.0 has been released with new featuresaimed at making the language smaller, simpler, and faster. Some of the new features include support for the new decorators standard, better support for ESM projects in Node and bundlers, expanded JSDoc functionality, simplified configuration, and imp..

Announcing TypeScript 5.0
Link
@faun shared a link, 1 day, 4 hours ago

We Rewrote Our Project With Rust…and It’s Almost 40X Faster

This article describes the process ofrewriting an open-source constraint-based record and functional language called KCL from Python to Rust. The decision to choose Rust was based on its: - memory security mechanism, - performance advantages, - excellent developer community, - and toolchains.The re..

We Rewrote Our Project With Rust…and It’s Almost 40X Faster
Link
@faun shared a link, 1 day, 4 hours ago

Sun Tzu and the art of Software Test Management

In this article, the author discusses their approach to test management and how the proverb "know yourself and your enemy" from the Art of War can be applied to it. They list 8 areas that test managers should understand: - the user, - the product, - the architecture, - where the software has been, ..

Sun Tzu and the art of Software Test Management
Link
@faun shared a link, 1 day, 4 hours ago

Ranking Data with SQL Window Functions

This tutorial is aboutusing SQL Window Functions to rank data. It explains the concepts of window ordering vs. result ordering, sorting uniqueness, and the different ranking functions available. The tutorial provides examples and animations to help visualize the concepts, and also offers exercises ..

Ranking Data with SQL Window Functions
Link
@faun shared a link, 1 day, 4 hours ago

Reverse-Engineering YouTube: Revisited

The article is written by an author who previously wrote about how YouTube worked and how to exploit that knowledge to download videos. They explain that many things have changed since that article was written, such as YouTube's internal API being restructured, and some of the internal endpoints tha..

Reverse-Engineering YouTube: Revisited
Link
@faun shared a link, 1 day, 4 hours ago

YAML: while constructing a mapping found unhashable key

The error message "found unhashable key" occurs when trying to convert a mapping from YAML to a Python dict and the key is not hashable, which means it can't be used as a dictionary key. This happens because mutable containers like lists are not hashable while immutable containers like tuples are h..

Link
@faun shared a link, 1 day, 4 hours ago

Fly through Jupyter with keyboard shortcuts

This is a tutorial onhow to increase productivity in Jupyter Notebookby usingbuilt-in keyboard shortcuts. The post covers the difference between Command Mode and Edit Mode, andthe 25 most useful keyboard shortcutsfor each mode, including: - navigating cells, - creating and deleting cells, - changin..

Fly through Jupyter with keyboard shortcuts
Link
@faun shared a link, 1 day, 4 hours ago

GPT in 60 Lines of NumPy

This blog post explainshow to implement a GPT-2 model from scratchusing only60 lines of code in NumPy. The post assumes prior knowledge of Python, NumPy, and neural network training. The implementation is a simplified version of the GPT-2 architecture, which is a large language model used for gener..

GPT in 60 Lines of NumPy
Link
@faun shared a link, 1 day, 4 hours ago

devdata - Improving developer velocity and experience

Experienced developers spend a lot of time debugging and creating new bugs, and while AI won't solve all their problems, they can improve their productivity with small tactical changes. One such technique is called "devdata," which involvescreating a realistic fake data generation toolto quickly and..