Mysterious Illness Kills Over 50 in Northwest Congo

2025-02-25
Mysterious Illness Kills Over 50 in Northwest Congo

A mysterious illness has claimed the lives of over 50 people in northwestern Congo. The outbreak, which began on January 21st, has seen 419 cases reported with 53 deaths. The rapid progression of the illness, with most patients dying within 48 hours of symptom onset, is alarming health officials. Initial investigations suggest a possible link to children consuming bats. Samples have been sent for testing to rule out Ebola and other hemorrhagic fevers; some tested positive for malaria. The incident highlights concerns about zoonotic diseases, particularly in areas where wild animal consumption is common.

Read more

Walmart Pilots Body Cameras for Employee Safety

2024-12-20
Walmart Pilots Body Cameras for Employee Safety

Walmart is testing body cameras for its employees in select stores to deter conflict and theft. While the company won't disclose specifics, photos have emerged showing employees wearing the cameras and charging stations in stores. The initiative, currently a pilot program in one market, prioritizes employee safety over loss prevention. This follows a trend among retailers to enhance security, with companies like TJX and Greggs also adopting similar measures. The move comes after over 200 violent incidents at Walmart stores in 2023, according to a worker rights group.

Read more

Putting Your Linux Home Server to Sleep and Waking it on Demand

2025-09-03

This article details how the author automated their Ubuntu home server to sleep when idle and wake on demand (e.g., via SSH or Time Machine backups). This involved using an always-on device (like a Raspberry Pi) to act as an ARP and mDNS proxy, along with configuring Wake-on-LAN and a cron job on the server to detect idle states. The author meticulously outlines the configuration, including enabling Wake-on-LAN's unicast mode, creating a cron script, disabling IPv6, and setting up an ARP Stand-in and Avahi service. Challenges encountered, such as unexpected wake-ups and Time Machine backups failing to trigger wake-up, are addressed and solved through port mirroring and service adjustments.

Read more
Development sleep/wake

Apple Releases CA-1M Dataset and Cubify Transformer for Indoor 3D Object Detection

2025-04-02
Apple Releases CA-1M Dataset and Cubify Transformer for Indoor 3D Object Detection

Apple has released CA-1M, a large-scale dataset for indoor 3D object detection, along with the Cubify Transformer (CuTR) model. CA-1M features exhaustively annotated 3D bounding boxes and poses. Two CuTR model variants are provided: one using RGB-D images and another using only RGB images. The dataset supports real-time detection using the NeRF Capture app and includes comprehensive instructions and code examples. Researchers can leverage this dataset and model to advance research in indoor 3D object detection.

Read more

CDC Halts Collaboration with WHO, Immediately

2025-01-27
CDC Halts Collaboration with WHO, Immediately

The U.S. Centers for Disease Control and Prevention (CDC) has abruptly ordered an immediate end to all collaborations with the World Health Organization (WHO), sending shockwaves through the global public health community. This isn't a phased withdrawal; it's an immediate and complete cessation of all interactions, including work with technical working groups, coordinating centers, and advisory boards. Experts express deep concern, warning that this will severely hamper efforts to investigate and control outbreaks like the Marburg virus and mpox, potentially jeopardizing global health security. While President Trump had previously issued an executive order to begin the U.S. withdrawal from WHO, this sudden action is far more drastic and unexpected, sparking widespread worry and criticism.

Read more

VGGT: Lightning-Fast 3D Scene Reconstruction from Images

2025-03-25
VGGT: Lightning-Fast 3D Scene Reconstruction from Images

Facebook Research introduces VGGT (Visual Geometry Grounded Transformer), a feed-forward neural network capable of inferring all key 3D attributes of a scene—extrinsic and intrinsic camera parameters, point maps, depth maps, and 3D point tracks—from one, a few, or hundreds of views in mere seconds. This user-friendly model, leveraging the power of Transformers, offers an interactive 3D visualization tool. Surprisingly, VGGT demonstrates impressive single-view reconstruction capabilities, achieving competitive results compared to state-of-the-art monocular methods, despite not being explicitly trained for this task.

Read more
AI

Easily Calculate the Number of Language Model Tokens for a String

2025-02-05
Easily Calculate the Number of Language Model Tokens for a String

This article presents a simple method to calculate the number of language model tokens in a string. This is crucial for estimating application running costs, checking if text fits within the language model's context window, and determining if chunking is necessary. While a rough estimate can be obtained by dividing the character count by 4, a more accurate method involves using the specific language model (Hugging Face or OpenAI model) you're using. The author provides a Jupyter Notebook to calculate the token count for strings, files, or all files in a folder, eliminating reliance on external services, ensuring security and free usage.

Read more
Development token counting

Italian Court Orders Google to Block Pirate Sites, Faces Hefty Fines

2025-03-22
Italian Court Orders Google to Block Pirate Sites, Faces Hefty Fines

An Italian court ruled against Google for failing to promptly block pirate websites identified by the Italian copyright authority, AGCOM. The court's decision, issued without requiring a response from Google, underscores the severity of the violation. This follows a similar case against Cloudflare. The ruling highlights Italy's tough stance against online piracy and its efforts to hold international tech giants accountable for adhering to local laws. Google could face significant daily fines if it fails to comply.

Read more
Tech

South Korean Actress Kim Sae-ron's Death Sparks Debate on Celebrity Treatment

2025-02-18
South Korean Actress Kim Sae-ron's Death Sparks Debate on Celebrity Treatment

The death of 24-year-old South Korean actress Kim Sae-ron has ignited a widespread conversation about the harsh realities faced by celebrities in South Korea. Kim, known for her role in the hit film "The Man from Nowhere," struggled to revive her career after a 2022 drunk driving incident, facing relentless online criticism and negative media coverage. Her passing has prompted calls for reform, with many criticizing the unforgiving culture and demanding a more compassionate approach to celebrity missteps. The incident echoes similar tragedies involving other Korean celebrities and highlights the pervasive issue of cyberbullying.

Read more

Punch Cards: A Surprisingly Relevant Piece of Digital Humanities History

2025-02-12

This article explores the digitization and reuse of punch cards for knitting machines. Punch cards, a fascinating binary data storage format, are still used today. The article details methods for converting punch card images into data using computer vision and recreating punch cards using CNC machines. The author stresses the importance of high-quality scans and the need for standardized metadata to better preserve and utilize this valuable historical material and foster the transmission and development of knitting technology. The article also highlights the role of community-supported archives in preserving this legacy.

Read more

Superglue: The API Connector That Writes Its Own Code

2025-02-27
Superglue: The API Connector That Writes Its Own Code

Superglue is an open-source API connector that automatically generates code to connect to any API or data source and transform data to your desired format. Simply define your data schema and provide basic instructions; Superglue handles pagination, authentication, error retries, and data transformations, converting data to your exact schema. It supports various data sources including APIs, files, and legacy systems, and offers Docker deployment and JS/TS clients. If you're tired of writing tedious API connection code, Superglue is for you.

Read more

CRDTs: Semilattices All the Way Down

2025-05-23

This article delves into the design principles of Conflict-Free Replicated Data Types (CRDTs), asserting that all well-designed CRDTs should be based on semilattice structures. The author criticizes CRDTs that hide assumptions, emphasizing that all necessary assumptions must be internalized within the semilattice. Using add/remove sets as an example, the article demonstrates how incorporating a causality lattice resolves non-convergent behavior that can arise from local-time-based expiration mechanisms. The author concludes by summarizing key CRDT design points and stressing the importance of building reliable distributed systems.

Read more
Development semilattice

Optimizing Ruby's JSON: Part 1

2024-12-18

This blog post details how the author optimized Ruby's `json` gem to become one of the fastest JSON parsers and generators. Instead of complex techniques, simple optimizations were applied based on profiling, such as avoiding redundant checks, prioritizing cheaper conditions, reducing setup costs, and using lookup tables. These improvements apply to both C and Ruby code. The optimizations significantly boosted the `json` gem's performance, making it competitive with alternatives like `oj`, reducing the need for monkey patching, and addressing stability and compatibility issues associated with `oj`.

Read more

The Information Deluge: Coping with the News Overload

2025-02-12
The Information Deluge: Coping with the News Overload

Reflecting on a 45-year career in tech, the author laments the shift from singular news sources to highly personalized strategies in the age of information overload. From the initial era of TV, radio, newspapers, and magazines, to the explosion of USENET and the web, news sources have multiplied exponentially, exceeding human information processing capacity. Faced with a deluge of information that's often untrustworthy or irrelevant, people have developed coping mechanisms, including complete disconnection and digital sabbaths. The author argues we need a fundamental rethink of our relationship with information, cultivating better discernment skills and building psychological and cultural defenses to navigate the chaos. This isn't a problem solvable by technology or law; it requires individual effort to improve our capacity to manage information overload.

Read more

Product Managers in the Age of AI: New Tools, Same Core Principles

2024-12-22
Product Managers in the Age of AI: New Tools, Same Core Principles

Despite the trendy term "AI Product Manager," AI hasn't fundamentally changed product management's core: understanding user needs, creating solutions, and defining tasks. AI provides powerful new tools like Large Language Models (LLMs), but PMs still leverage these tools, not build them. The article explains basic LLM concepts (tokens, context windows, prompts) and advises PMs to learn effective prompting, collaborate closely with engineers, and focus on AI's practical value for the product, avoiding trendy additions. In short, AI is a tool, not a replacement; PMs must embrace AI and enhance their skills to thrive in this era.

Read more
Development Product Management

Datasaurus Dozen: Exposing Statistical Pitfalls

2024-12-17

Thirteen datasets, nearly identical simple descriptive statistics, yet wildly different distributions and visualizations! This is the fascinating Datasaurus Dozen. Comprising a dinosaur-shaped dataset and twelve others with varying forms, they all share almost identical means, variances, and correlations. This powerfully demonstrates the danger of relying solely on basic descriptive statistics; visualization is crucial. The Datasaurus Dozen serves as a cautionary tale, urging data analysts to prioritize visualization before analysis to avoid misleading conclusions.

Read more

Australia Enacts World's Strictest Social Media Ban for Under-16s

2025-01-31
Australia Enacts World's Strictest Social Media Ban for Under-16s

Australia has implemented one of the world's strictest internet crackdowns, prohibiting children under 16 from using social media or creating new accounts. The law, effective in a year, holds social media companies accountable for verifying users' ages, with penalties reaching nearly $50 million for non-compliance. Facing opposition from tech companies citing free speech concerns and the potential for driving kids to unregulated online spaces, Australia's eSafety Commissioner, Julie Inman Grant, is tasked with enforcement. The approach, drawing global attention, aims to shift responsibility for online child safety from parents to platforms, similar to past automotive safety regulations.

Read more

mt32-pi Project Halted Due to Online Abuse

2025-02-05
mt32-pi Project Halted Due to Online Abuse

The mt32-pi project, a baremetal MIDI synthesizer for the Raspberry Pi, has been discontinued due to sustained online harassment of its developer. The developer cited a campaign of abuse, including personal attacks, code theft, and stolen 3D print designs, as reasons for abandoning the project. Despite community support, the negative experiences significantly impacted the developer's mental health. mt32-pi supported various Raspberry Pi models and offered features such as I²S Hi-Fi DAC support and network MIDI.

Read more
Development MIDI Synthesizer

Should Christians Use AI for Apologetics? A Software Dev's Concerns

2025-01-21

A software developer raises concerns about using AI and Large Language Models (LLMs) for Christian apologetics. He argues that LLMs are fundamentally "bullshit generators," capable of producing truthful outputs but not designed to prioritize truth, making them prone to fabricating information. Using LLMs in apologetics risks spreading falsehoods and damaging Christianity's credibility. The author suggests focusing on creating powerful search engines to improve access to existing resources instead of relying on LLMs.

Read more

200 Investor Rejections: A Startup's Funding Nightmare

2025-01-22

A startup pitched nearly 200 investors during its pre-seed and seed rounds, only to be met with rejection after rejection. Reasons ranged from market timing and team expertise to product design and funding size, encompassing nearly every potential pitfall in the startup fundraising process. This article details the brutal reality of startup funding, highlighting the various perceived risks from an investor's perspective, offering valuable lessons for aspiring entrepreneurs.

Read more

Square Kufic: A Labyrinthine Journey into Islamic Calligraphy

2025-05-06
Square Kufic: A Labyrinthine Journey into Islamic Calligraphy

As a child, the author was captivated by the intricate geometric patterns adorning mosques, later discovering them to be Square Kufic calligraphy, a 12th-13th century Islamic script. This style transforms Arabic letters into geometric designs, bending and breaking rules to create stunning, sometimes indecipherable, patterns. The article explores Square Kufic's origins, characteristics, and modern reinterpretations, showcasing artists who integrate verses into architecture or create modern art pieces. Personal anecdotes and a discussion of the Topkapi Scroll reveal the art form's multi-layered appeal: from visual beauty to cryptic messages, offering rich cultural depth and endless intrigue.

Read more

Undersea Cable Damage: Accidents, Not Sabotage, Say Officials

2025-01-19
Undersea Cable Damage: Accidents, Not Sabotage, Say Officials

Recent incidents of severed undersea cables in Europe, initially raising suspicions of Russian sabotage, are likely the result of maritime accidents, according to US and European intelligence officials. Investigations into several incidents over the past 18 months, involving ships suspected of dragging anchors across key undersea energy and communication lines, point towards accidental damage. While some anomalies exist and Russia has a history of mapping Western seabed infrastructure, current evidence suggests a lack of intentional action or Russian involvement. This conclusion contrasts with some who believe the incidents were part of a broader Russian hybrid warfare campaign.

Read more

Let Users Help Solve Their Own Transit Problems: Beyond Algorithmic Route Planning

2025-01-16

The author criticizes current map apps for relying solely on algorithms to plan public transit routes, neglecting user needs and expertise. He proposes allowing users to customize route options, such as specifying particular bus route combinations, and including these in route planning comparisons. This mirrors the "report spam" and "not spam" functions of email filters, improving algorithms through user feedback. Despite privacy concerns, user participation could enhance route accuracy and user satisfaction, ultimately improving algorithms. The ability for users to add their own route combinations, even without sharing data, would be a significant improvement.

Read more
Development public transit

Microplastics Found in Human Brains: A Growing Threat?

2025-02-15
Microplastics Found in Human Brains: A Growing Threat?

A recent study revealed the presence of significant microplastic levels in human brains. These microplastics, entering the brain via the bloodstream, are potentially linked to various illnesses. The article highlights the environmental and health dangers of our reliance on plastic, pointing to the polluting nature of its production and its persistence in the environment. While the US government has taken steps to regulate harmful chemicals in plastic production, the impact remains limited. The author urges accountability for the petrochemical industry rather than solely blaming consumers.

Read more

In Memoriam: Donald Bitzer, Pioneer of Computing

2024-12-13
In Memoriam: Donald Bitzer, Pioneer of Computing

The Computer History Museum mourns the passing of Donald L. Bitzer (1934-2024), a pioneering computer scientist. Co-inventor of the flat-panel plasma display and creator of the PLATO system—the world's earliest time-shared computer-based education system and a groundbreaking online community—Bitzer's innovations presaged many modern online features. PLATO included forums, message boards, online testing, email, chat rooms, instant messaging, and multiplayer games, laying the groundwork for the interconnected digital world we know today.

Read more

Resurrecting 30-Year-Old Apple SCSI Hard Drives: The Rubber-Decay Data Recovery

2025-03-02

This post details the author's experience restoring 1990s Apple-branded Quantum and Conner SCSI hard drives. These drives commonly suffer from a failure mode where they spin up and immediately stop. By opening the drives, the author discovered the root cause: aging rubber bumpers causing the read/write head to stick. Two methods—manually moving the head and using Kapton tape to hold it in place—were successfully employed to recover data. The article also shares interesting details about how data is physically stored on these drives and serves as a reminder to regularly back up important data.

Read more

Greenland Ice Sheet Crevasses Accelerate Melt: A Rising Sea Level Threat

2025-02-10
Greenland Ice Sheet Crevasses Accelerate Melt: A Rising Sea Level Threat

Numerous studies in recent years highlight the accelerating role of crevasses in Greenland's ice sheet, significantly contributing to ice calving and exacerbating sea level rise. Researchers have employed diverse methods, including satellite imagery, airborne LiDAR, and field observations, to investigate crevasse formation, expansion, and hydrological impacts. Findings reveal that crevasses not only compromise ice sheet stability but also expedite meltwater drainage, further accelerating ice melt. This poses a significant challenge to the future of the Greenland Ice Sheet and presents a major threat to global sea level change and coastal safety.

Read more

FTC Probes Microsoft-OpenAI Deal Over Antitrust Concerns

2025-01-18
FTC Probes Microsoft-OpenAI Deal Over Antitrust Concerns

The Federal Trade Commission (FTC) has expressed concerns about Microsoft's $13 billion investment in OpenAI, fearing it could extend Microsoft's cloud computing dominance into the burgeoning AI market and potentially lead to the full acquisition of AI companies by tech giants in the future. The FTC is also investigating Amazon and Google's partnerships with other AI companies, citing potential antitrust risks.

Read more
1 2 522 523 524 526 528 529 530 596 597