This media is not supported in your browser
VIEW IN TELEGRAM
microsoft/edit
A simple editor for simple needs, written in Rust.
#editor #rust
A simple editor for simple needs, written in Rust.
This editor pays homage to the classic MS-DOS Editor, but with a modern interface and input controls similar to VS Code. The goal is to provide an accessible editor that even users largely unfamiliar with terminals can easily use.
#editor #rust
Is
So I just noticed this:
However, I just found out
and it seems like it's not totally recommended to use it instead of
so, what's the true purpose of
according to docs:
Purposes:
-
-
Compatibility:
-
-
So...yeah, it's in fact a useful feature, but don't just go use it randomly anywhere, otherwise you might encounter weird logical error
- Related Stackoverflow question
pd.NA same as np.NAN?So I just noticed this:
import pandas as pd
import numpy as np
pd.isna(np.NAN) # True
pd.isna(pd.NA) # True
However, I just found out
pd.NA is still experimental (yes, it has been experimental since release 1.0):Experimental: the behaviour of NA can still change without warning.
and it seems like it's not totally recommended to use it instead of
np.NAN everywhere.so, what's the true purpose of
pd.NA if we already have np.NAN?according to docs:
Starting from pandas 1.0, an experimental NA value (singleton) is available to represent scalar missing values. The goal of NA is provide a “missing” indicator that can be used consistently across data types (instead of np.nan, None or pd.NaT depending on the data type).
Purposes:
-
pd.NA: Pandas-specific missing value marker for its nullable dtypes-
np.nan: NumPy's floating-point "Not a Number" value (IEEE 754)Compatibility:
-
pd.NA: Works across multiple data types (integers, strings, floats)-
np.nan: Only works with floating-point data typesSo...yeah, it's in fact a useful feature, but don't just go use it randomly anywhere, otherwise you might encounter weird logical error
- Related Stackoverflow question
Google's AI Studio now supports TTS (it supports lots of voices, but they are not that good)
https://aistudio.google.com/generate-speech
https://aistudio.google.com/generate-speech
CVE-2025-21756
Linux Kernel Exploitation: Vsock-related attack
CWE-416: Use After Free
- blog
- PoC
- nvd
- main patch
#cve #kernel
Linux Kernel Exploitation: Vsock-related attack
A flaw was found in the Linux kernel's VMware network driver, where an improperly timed socket unbinding could result in a use-after-free issue. This flaw allows an attacker who can create and destroy arbitrary connections on virtual connections to read or modify system memory, potentially leading to an escalation of privileges or the compromise of sensitive data.
CWE-416: Use After Free
- blog
- PoC
- nvd
- main patch
#cve #kernel
A cool-looking puzzle adventure, made with Godot Engine:
- Steam
- YouTube trailer
- Reddit post
#godot
- Steam
- YouTube trailer
- Reddit post
#godot
Do It by Code
Introducing Claude 4 https://www.anthropic.com/news/claude-4
Claude 4 has the ability to....uh
apparently detect "suspicious activity" and report you???
apparently detect "suspicious activity" and report you???
D2L-en
- https://d2l.ai
- d2l-ai/d2l-en
#book #ml
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge.
- https://d2l.ai
- d2l-ai/d2l-en
#book #ml
This media is not supported in your browser
VIEW IN TELEGRAM
Looks like there is an open-source model for a Vortex drone, and it's being copied by some people
Source
Update: these dudes straight up patented my open source design.
Like, no attempt at hiding it whatsoever: https://patents.google.com/patent/US20240391613A1/en
Quoting Nicholas Rehm (@Nicholas_Rehm)
This is their “test prototype” they are showing off. It seems like they ripped my design files directly from here: https://hackaday.io/project/186410-the-cyclone-rotor-ufo-drone
And I’m 90% sure they’re using my software to fly this thing too. It flies with all the same little quirks I’d expect from my code.
Source
Show HN: GetStack.dev – Track GitHub open-source trends
Explore the most popular technologies and repositories, refreshed every week from GitHub
Explore the most popular technologies and repositories, refreshed every week from GitHub
LocalStack
http://github.com/localstack/localstack
A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline
http://github.com/localstack/localstack
Visual Studio Code: Text Buffer Reimplementation (2018)
#vscode
The Visual Studio Code team redesigned the text buffer implementation to improve performance and memory usage, replacing the old line array representation with a piece table data structure and a red-black tree for efficient line lookups. The new implementation, called the "piece tree," significantly reduces memory usage and provides faster line lookups, although it has some limitations
#vscode