Iron Age Society Centered on Women: Ancient Genomes Reveal a Matrilocal Past

2025-01-26
Iron Age Society Centered on Women: Ancient Genomes Reveal a Matrilocal Past

An international team, led by Trinity College Dublin, has unearthed a fascinating glimpse into Britain's Iron Age through ancient DNA. Analysis of over 50 genomes from a Dorset burial site revealed a society structured around female lineage. The study indicates that husbands joined their wives' communities, with land potentially inherited through the maternal line, a system called matrilocality. This pattern wasn't unique to Dorset; similar findings in other Iron Age cemeteries across Britain suggest a widespread phenomenon, challenging traditional views of gender roles and highlighting the significant social and political influence of women in this era. The research published in Nature adds compelling genetic evidence to archaeological observations.

Read more

Firenvim: Embed Neovim in Your Browser for Enhanced Editing

2024-12-19
Firenvim: Embed Neovim in Your Browser for Enhanced Editing

Firenvim is a browser extension that seamlessly integrates the Neovim editor into Chrome, Firefox, and other browsers. With a simple click on any textarea, you can instantly edit webpage content using Neovim's powerful features. Save changes with ':w' and close the editor with ':q'. Installation is straightforward, and extensive customization options allow you to fine-tune the plugin's behavior, including element selection, auto-takeover settings, command-line options, and more. Firenvim offers advanced features such as manual triggering, temporary disabling, custom configuration, special character handling, and webpage interaction. However, be aware that compatibility issues may arise with certain websites.

Read more
Development code editing

ImPlot3D: A High-Performance Immediate Mode 3D Plotting Library Based on Dear ImGui

2024-12-18
ImPlot3D: A High-Performance Immediate Mode 3D Plotting Library Based on Dear ImGui

ImPlot3D is an open-source library built on top of Dear ImGui, offering developers an easy-to-use, high-performance way to create 3D plots. Independent of ImPlot, ImPlot3D supports various 3D plot types, including line plots, scatter plots, surface plots, and mesh plots, with interactive rotation, panning, and zooming. Its intuitive API, similar to Dear ImGui and ImPlot, allows for quick integration and customization of markers, lines, surfaces, and mesh styles, with options for built-in or custom colormaps. A comprehensive demo application aids users in learning and utilizing its features.

Read more
Development 3D plotting

LastPass Android App Privacy Report: Deep Dive into Trackers and Permissions

2025-01-04
LastPass Android App Privacy Report: Deep Dive into Trackers and Permissions

A privacy report on LastPass Android app version 4.11.18.6150 reveals 7 trackers and 36 permissions. Trackers include AppsFlyer, Google Analytics, etc., collecting user data. Permissions cover sensitive areas like location, network access, and storage access. The report highlights high-risk permissions, potentially impacting user privacy. Users should carefully evaluate the privacy implications.

Read more
Tech

Building a Simple Object System from Scratch in Ruby

2024-12-15

This blog post details building a basic object system in Ruby without using classes. The author cleverly uses anonymous functions and hash tables to implement core OOP concepts like method lookup, prototypal inheritance, mixins, and metaprogramming. Starting with a constructor function, the post demonstrates simulating private variables and public interfaces, effectively recreating class-like behavior and inheritance. Through clear code examples, readers learn to create objects, define methods, implement inheritance and mixins, and even build a rudimentary `attr_accessor`-like metaprogramming feature. It's a practical guide to understanding object system fundamentals.

Read more

Apple Secretly Enables AI Photo Analysis, Sparking Privacy Concerns

2025-01-03
Apple Secretly Enables AI Photo Analysis, Sparking Privacy Concerns

Apple silently enabled a feature called "Enhanced Visual Search" in iOS 18.1 and macOS 15.1, which analyzes photos for landmarks without explicit user consent. While Apple claims to use homomorphic encryption and differential privacy to protect user privacy, the lack of transparency and opt-in choice has sparked concern. Developers criticize Apple's lack of explanation and user notification, arguing the approach is even more intrusive than its abandoned CSAM scanning plan. Although no evidence suggests Apple violated its privacy statements, the lack of communication is the core of user discontent.

Read more
Tech

Mastodon Web App Requires JavaScript

2025-01-01

Eric Hellman's tilde.zone post reveals a long-term project update: using the Mastodon web application requires enabling JavaScript, or alternatively, using a native Mastodon app. This suggests work on improving the web client or user experience for Mastodon.

Read more
Development Web App

Google Fiber Launches Construction in Las Vegas

2025-01-22
Google Fiber Launches Construction in Las Vegas

Google Fiber has officially begun network construction in Las Vegas, starting on the west side of the city with expansion to other parts of Clark County in the coming months. This follows agreements reached in 2024 with the City of Las Vegas and Clark County. Google Fiber is committed to minimizing disruption during construction and plans to offer service in parts of the metro area later this year. Nevada residents and businesses will have access to Google Fiber's plans, boasting speeds up to 8 gigabits and prices unchanged since 2012.

Read more

SimplexDocsPlaygroundRequest API: Code Execution Preview

2025-01-15

The SimplexDocsPlaygroundRequest API provides code execution and preview functionality. Users submit code to the server via this API, which executes the code and returns the results, along with a preview of the execution process. This is useful for developers debugging code, testing APIs, and rapidly prototyping. The API is currently loading; results will be available after code execution.

Read more
Development Code Execution Preview

Tig: A Text-Mode Interface for Git

2024-12-17

Tig is an ncurses-based text-mode interface for Git, primarily functioning as a Git repository browser. It also aids in staging changes for commit at the chunk level and acts as a pager for various Git command outputs. Installation instructions, release notes detailing new features and bug fixes, and resources like the homepage, manual, and Q&A section on Stack Overflow are readily available. Bug reports and feature requests can be submitted through the issue tracker or via email.

Read more

UK Watchdog to Issue New Guidance on Smart Device Data Privacy

2024-12-16
UK Watchdog to Issue New Guidance on Smart Device Data Privacy

The UK's Information Commissioner's Office (ICO) will issue new guidance addressing data privacy concerns surrounding smart home devices. A Which? report revealed that some air fryers and other smart devices sent user data to servers in China. The ICO stated that consumers feel overwhelmed by the amount of data collected and lack control over its use. New guidelines, launching Spring 2025, will cover consent procedures, privacy information provision, and tools enabling users to exercise their rights.

Read more

Framework Fatigue: Why Developers Are Angry About New Tech

2025-01-21
Framework Fatigue: Why Developers Are Angry About New Tech

The constant stream of new JavaScript frameworks—from Svelte to Solid to Qwik—has left developers exhausted. Each promises blazing speed and improved performance, yet developers find themselves in a perpetual cycle of learning, consuming precious time and energy. This has sparked heated debates, with some arguing that new frameworks reinvent the wheel, while others express fears about job security and the obsolescence of existing skills. The article suggests that developer anger towards new frameworks is a self-defense mechanism stemming from anxieties about future career prospects. Understanding this perspective can foster healthier industry evolution.

Read more

Bio-Inspired Adaptive Shading: Energy-Autonomous & Sustainable

2025-01-21

Researchers at the Universities of Stuttgart and Freiburg have developed a novel energy-autonomous building facade shading system, "Solar Gate," inspired by pine cones. Using bio-based cellulose materials and 4D printing, the system passively adjusts shading based on humidity and temperature changes, requiring no electricity. It closes in summer to minimize solar radiation and opens in winter to maximize sunlight for natural heating, offering a sustainable and efficient solution for climate control in buildings.

Read more

Redis UNLINK vs DEL: A Deep Dive into Internal Mechanics

2025-01-21
Redis UNLINK vs DEL: A Deep Dive into Internal Mechanics

Both Redis' UNLINK and DEL commands remove keys, but their internal implementations differ. DEL synchronously deletes keys and frees memory, while UNLINK asynchronously queues the deletion for background processing. UNLINK's 'non-blocking' nature isn't absolute; it calculates the cost of deleting an object: if the cost is less than 64, it deletes synchronously; otherwise, asynchronously. The article delves into the Redis source code, explaining the implementation details of UNLINK and DEL, including key slot calculation, two-phase unlinking, and asynchronous deletion, and discusses the role of LAZYFREE_THRESHOLD.

Read more
Development

15-Year-Old Builds $30 Open-Source Phone: Challenging the Smartphone Industry

2025-01-26

Gabriel Rochet, a 15-year-old, has created Paxo Phone, a fully functional open-source smartphone built for just $30. This DIY phone utilizes open-source hardware and software, boasting high modularity and customizability, allowing users to modify both hardware and software to fit their needs. Paxo Phone challenges the closed and irreparable nature of the traditional smartphone industry, offering a practical platform for learning electronics and computer technology while prompting reflection on digital freedom and the repairability of electronic devices.

Read more
Tech DIY phone

nCompass: Revolutionizing AI Inference Cost

2024-12-16

nCompass Technologies has developed innovative AI inference serving software that reduces the cost of serving AI models at scale by up to 50%. By utilizing custom AI inference software and a hardware-aware request scheduler with Kubernetes autoscaling, nCompass maintains high-quality service on fewer GPUs, resulting in up to a 4x improvement in response time and significantly reduced GPU infrastructure costs. Users access open-source models via API with no rate limits and receive a $100 signup credit. On-premises solutions are also available for businesses demanding cost-effectiveness and responsiveness.

Read more

MicroLaunch

2024-03-12
MicroLaunch

MicroLaunch provides investment solutions with a focus on high-quality, early-stage technology companies in the Midwestern United States.

Read more
未分类
1 2 555 556 557 558 559 560 561 563 Next →