An experiment in UI density created with Svelte

https://cybernetic.dev/og/grid.png
The UI aims to fit as much data as possible on the screen while allowing control over data density for legibility. Density settings, including decimals and padding, jointly determine UI density, with minimum values already implemented.

SQLite: 35% Faster Than the Filesystem

https://sqlite.org/images/faster-read-sql.jpg
SQLite reads and writes small blobs (e.g. thumbnail images) 35% faster than individual files on disk, and uses about 20% less disk space. The performance difference arises from the overhead of calling open() and close() system calls, which is greater than the overhead of using the database, and the fact that individual files are padded out to the next multiple of the filesystem block size.

In the Beginning Was the Command Line (1999)

The author argues that Microsoft's dominance in the operating system market is unsustainable and that the company's focus on proprietary operating systems is a relic of the past, as free and open-source operating systems like Linux are becoming increasingly popular. The author also suggests that Microsoft's attempts to integrate new features into its operating systems, such as web browsers, ...

The Linux Kernel Module Programming Guide

https://sysprog21.github.io/lkmpg/assets/cover-with-names.png
The Linux Kernel Module Programming Guide provides an introduction to writing kernel modules, including creating, compiling, and loading modules, as well as handling errors and debugging. The guide covers topics such as module initialization and cleanup, command-line argument passing, and system calls, and provides examples of how to write kernel modules to perform various tasks.

Show HN: Semantic Grep – A Word2Vec-powered search tool

https://raw.githubusercontent.com/arunsupe/semantic-grep/main/demo/image.png
sgrep is a command-line tool that performs semantic searches on text input using word embeddings, similar to grep, but finds semantically similar matches beyond simple string matching. It requires a Word2Vec model and can be configured using a JSON file, with optional download of a pre-trained model or training of a custom model.

Show HN: I built an open-source tool to make on-call suck less

https://raw.githubusercontent.com/opslane/opslane/main/assets/opslane-arch.png
Opslane classifies alerts as actionable or noisy using LLMs and provides contextual information for handling alerts in a Slack channel. It also provides analytics and reporting data to help teams manage and silence noisy alerts, with a modular architecture supporting multiple integrations.

Intel N100 Radxa X4 First Thoughts

https://bret.dk/wp-content/uploads/2024/07/image-5.png
The Radxa x4 Single Board Computer, featuring an Intel N100 processor, has impressed the author with its ease of use, flexibility, and performance, including the ability to run Windows 11 and Debian. However, the author notes some areas for improvement, such as the WiFi driver issues, power consumption, and cooling system, and looks forward to further testing and benchmarking in the coming weeks.

Göttingen was one of the most productive centers of mathematics (2019)

https://images.theconversation.com/files/249476/original/file-20181207-128196-ztw13l.jpg?ixlib=rb-4.1.0&q=20&auto=format&w=320&fit=clip&dpr=2&usm=12&cs=strip
Göttingen University in Germany was a hub of mathematical excellence from the 18th to the early 20th century, producing renowned mathematicians like Gauss, Riemann, Hilbert, and Noether. However, the rise of National Socialism led to the exodus of Jewish and anti-Nazi mathematicians, causing the university's mathematical legacy to shift to the US and UK, where it continues to thrive today.

Learning about PCI-e: Driver and DMA

https://blog.davidv.dev/images/pcie-device/container_of.svg
The user implemented a PCI-e device driver, enabling memory mapping and character device creation for user-space interaction. They also implemented DMA and MSI-X for asynchronous data transfer and interrupt handling, allowing for blocking writes and simulating a working GPU.

Tritone Substitutions

https://i0.wp.com/math.ucr.edu/home/baez/cultural/dominant_seventh_in_c.jpg
A tritone substitution is a musical technique where a dominant seventh chord is replaced by a chord with notes a tritone apart, creating a sense of tension and resolution. This technique is used in various musical styles, including classical and jazz, and can add sophistication and interest to a piece of music.

Apple has reached its first-ever union contract with store employees in Maryland

https://dims.apnews.com/dims4/default/94c503b/2147483647/strip/true/crop/640x236+0+0/resize/320x118!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fc3%2F4c%2F65482a7b452db66043542c093eaf%2Fpromo-2x.png
Apple has reached a tentative 3-year contract with its first unionized store in Maryland, increasing pay by 10% and offering benefits. The deal must be approved by 85 employees and is a significant step towards unionization, following a strike authorization in May.

Linux Network Performance Ultimate Guide

http://web.archive.org/web/20170905131225if_/https://wiki.linuxfoundation.org/images/1/1c/Network_data_flow_through_kernel.png
The text discusses various aspects of network performance tuning, including packet reception and transmission, interrupt handling, and load balancing. It covers topics such as NIC ring buffer, hard interrupt, soft interrupt, NAPI, RSS, RPS, and aRFS, as well as advanced topics like DPDK, PF_RING, and eBPF, and their applications in high-performance networking.

Windows recovery environment and bootable USB creator in 200kb

https://raw.githubusercontent.com/joshuacline/documentation/main/windick/png/01.png
Windows Deployment Image Customization Kit. Contribute to joshuacline/windick development by creating an account on GitHub.

Oscar Zariski was one of the founders of modern algebraic geometry

https://boogiemath.org/assets/img/zariski.283fce0c.png
You recently read a biography of Oscar Zariski, a mathematician who founded modern algebraic geometry, and were surprised by his late-blooming career and the role his brother Moses played in shaping his early interest in math. The biography also highlights Zariski's interactions with other notable mathematicians, including Emmy Noether, and his experiences as a Jewish mathematician in Italy ...

Aphex Twin gave us a peek inside a 90s classic (2017)

https://cdm.link/app/themes/cdm/grfx/cdm-logo-black-transparent.png
Aphex Twin's "Vordhosbn" video reveals how the track was made using a vintage tracker, PlayerPro, showing the complexity of 90s electronic music production. Trackers, like Renoise, remain a popular choice for electronic musicians, offering a unique workflow for creating intricate sequences and micro-edits.

Bril: An Intermediate Language for Teaching Compilers

https://www.cs.cornell.edu/~asampson/media/bril/ecosystem.svg
Bril is a custom-designed intermediate language for teaching compilers, prioritizing ease of use, flexibility, and simplicity over traditional compiler engineering goals. It is a JSON-based, typed, ANF language that allows students to write and share code in a variety of programming languages, with a focus on hands-on implementation and collaboration.

Roguecraft Devs on Developing for Amiga in 2024

https://images.timeextension.com/c1e69cc4ee6fa/roguecraft.900x.jpg
Badger Punch Games is developing Roguecraft, a roguelike game for the Amiga, which is an enhanced version of their previous game Rogue 64. The game features isometric graphics, randomly generated levels, and a Lovecraftian theme, and is expected to be released in September 2024.

Managarm: Pragmatic microkernel-based OS with asynchronous I/O

https://raw.githubusercontent.com/managarm/managarm/assets/screenshots/managarm-glxgears-xclock.png
Managarm is a microkernel-based operating system with a unique asynchronous API and good Linux compatibility, despite being a separate kernel. It provides a range of features, including support for Linux-style special files and pseudo file systems, and can be run using a nightly image with QEMU.

Plan 9 is a uniquely complete operating system

Linux and BSD systems have different approaches to software inclusion, with Linux offering more customization options but also requiring more testing, while BSD systems include more software by default but still rely on shared code. Plan 9 is unique in its all-inclusive design, providing a single monorepo and encouraging new software development, but this also limits its compatibility with ...

Introduction to Machine Learning Interviews Book

The book provides an overview of the machine learning interview process, including types of roles, required skills, and common questions, as well as over 200 knowledge questions to test understanding of machine learning concepts. The book aims to help candidates prepare for machine learning interviews and identify areas for improvement, while also providing resources to strengthen knowledge ...

The US fiscal mess: Some unpleasant fiscal simulations

https://cepr.org/sites/default/files/styles/flexible_wysiwyg/public/2024-07/corsetti26julyfig1.png?itok=zJTMPTZ4
The US federal debt is projected to grow from 99% of GDP in 2024 to 122% in 2034, with the interest bill rising to exceed the entire military budget. To stabilize the debt, a combination of spending cuts and tax hikes is needed, with a smooth consolidation plan over a long horizon, rather than a quick fix, and immediate action is required to avoid a larger correction and potential fiscal and ...

Sqlitefs: SQLite as a Filesystem

https://opengraph.githubassets.com/626ad663a8b3067578624928ba54b6d49570da5cc6c73ccc44e79ce09a8c7633/narumatt/sqlitefs
sqlite-fs allows Linux and MacOS to mount a sqlite database file as a normal filesystem. If a database file name isn't specified, sqlite-fs use in-memory-db instead of a file. All data will be deleted when the filesystem is closed.

Taking a Radio Camping

https://ewpratten.com/images/posts/camping-radio/spkr-wire-efhw-lengths.png
I built a HF antenna for a camping trip, using 24ft lamp wire and paracord insulators, and tested it with my radio gear, achieving good results and making several contacts. The antenna setup, which wrapped around the campsite, allowed me to operate FT4, FT8, and CW modes and set a new distance record, with excellent signal reports.

An Interview with Robert Caro and Kurt Vonnegut (1999)

https://static.wixstatic.com/media/99359a_3522c49ea22847378599f1b8a94726a4~mv2.png/v1/fill/w_588,h_469,al_c,lg_1,q_85/99359a_3522c49ea22847378599f1b8a94726a4~mv2.png
Bob Caro and Kurt Vonnegut discussed their approaches to non-fiction writing, with Caro emphasizing the importance of narrative and research in creating engaging and accurate stories, while Vonnegut highlighted the need for scientific accuracy and attention to detail in his writing. They also shared their experiences as writers, including Caro's research methods and Vonnegut's use of ...

Lessons from Ancient File Systems

Atari's early DOS versions, including 1.0 and 2.0, had design decisions that were influenced by the limited RAM and storage capacity of the Atari 8-bit computers, such as using metadata in sector headers and sector chaining for file management. Later DOS versions, like MyDOS and SpartaDOS, were more successful because they were designed to be scalable and compatible with various drive ...

The Scale of Life

Visualize the true scale of life in real time with hundreds of live counters. Experience the magnitude of the industrial age, nature, and everyday life firsthand.

Oh man! Our entire team has been replaced by Vietnam developers.

Register or sign in with developer credentials and ensure a unique and descriptive User-Agent to access the script or application. If blocked, try changing back to default or file a ticket to discuss alternative access methods.

IRS collects milestone $1B in back taxes from high-wealth taxpayers

https://dims.apnews.com/dims4/default/9eb65ce/2147483647/strip/true/crop/5000x3331+0+1/resize/599x399!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F%5B9%2F4%2C%2F%20-113%2C%20-118%2C%2097%2C%2080%2C%20-32%2C%20-113%2C%20-88%2C%20-82%2C%2012%2C%20-26%2C%20124%2C%2071%2C%20-17%2C%20-82%2C%20-15%2C%209%2C%20111%2C%20108%2C%2062%2C%2059%2C%20-4%2C%2058%2C%20-45%2C%20-6%2C%2094%2C%20118%2C%2073%5D%2F678f860bad4b449c8c9f097c1bcc1247
The IRS has collected $1 billion in back taxes from high-wealth individuals, a milestone aimed at showcasing its efforts and potentially gaining public support amid concerns over future budget cuts. The agency is focusing on taxpayers with over $1 million in income and $250,000 in recognized tax debt, and is also targeting improper deductions and delinquent millionaires.

Adobe exec compared Creative Cloud cancellation fees to 'heroin'

https://duet-cdn.vox-cdn.com/thumbor/0x0:3000x2000/2400x1600/filters:focal(1500x1000:1501x1001):format(webp)/cdn.vox-cdn.com/uploads/chorus_asset/file/23624357/acastro_STK124_03.jpg
Adobe's general counsel, Dana Rao, disputes the FTC's complaint, saying the company's early termination fees are not as problematic as claimed and that the fees represent less than half a percent of annual revenue. Rao also argues that the company's cancellation flow is simple and that the FTC's interpretation of "clearly and conspicuously" and "simple" is now up for debate in a post-Chevron world.

Bashsimplecurses: Simple curses library made in bash to draw terminal interfaces

https://camo.githubusercontent.com/1f6cf210b5cfd53edf31d36efc3d02fcd6393c150656fe8106ba592095ad9534/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f6769742532426769746875622e636f6d2532466d6574616c33642532466261736873696d706c656375727365732e7376673f747970653d6c61726765
Bash Simple Curses is a library that provides basic functions to create colored windows and display information in the terminal. It can be used to create interactive windows by importing the library, defining a "main" function, and using functions like "window" and "append" to add text and commands.

How large language models will disrupt data management [pdf]

Large Language Models (LLMs) are revolutionizing data management by enabling users to interact with data using natural language, but they also introduce new challenges such as ensuring the quality of generated output and addressing ethical and legal concerns. The paper discusses the potential impact of LLMs on data management, including both worst-case and best-case scenarios, and highlights ...

Big Tech says AI is booming. Wall Street is starting to see a bubble

https://www.washingtonpost.com/dr/resources/images/generic-newsletter-signup.png
Wall Street analysts and tech investors are warning of a potential financial bubble in the artificial intelligence market, citing concerns over the sustainability of the technology and the massive investments being made by Big Tech companies and venture-capital firms. Despite the hype, some experts argue that AI is not yet mature enough to justify the billions being invested, and that the ...

Web-check: All-in-one OSINT tool for analysing any website

https://camo.githubusercontent.com/f3eb14d96af250042a5fbddefb537ad76cd118899a673a4b2424b439c0e8498e/68747470733a2f2f692e6962622e636f2f72306a584e36732f7765622d636865636b2e706e67
Web-Check is a tool that provides an in-depth analysis of a website's technical details, including server architecture, security configurations, and technologies used, which can be useful for security researchers, developers, and website owners. The tool offers various checks, including IP information, SSL certificates, DNS records, cookies, headers, and more, and provides insights into a ...

Show HN: Burrow is a globally distributed, serverless HTTP proxy

https://opengraph.githubassets.com/2b9e3fdee2df33a9cb839f4b8be73e07a790a8bb5208f3ad397eb888d69c5de2/myzie/burrow
Burrow is a Go library that provides a transparent proxy for AWS Lambda functions, allowing for rotating IPs across regions, and is designed for highly concurrent use. It includes Terraform configurations for deploying Burrow across 17 default-enabled AWS regions and provides examples for using the library in Go programs.

Better Firmware with LLVM/Clang (2020)

https://interrupt.memfault.com/img/llvm/example_llvm_scanbuild_report.png
The article discusses the benefits of using the LLVM/Clang compiler toolchain for embedded systems development, including its ability to perform static analysis and catch bugs such as memory leaks and mutex deadlocks at compile-time. The article provides a step-by-step guide on how to update a GCC-based project to compile with Clang, including configuring the build system, enabling compiler ...

Workbrew

https://workbrew.com/lib_AjbltJkwxThFLdSP/878b8d5l1h88zg50.jpg?w=200&h=180&fit=crop&dpr=2
Workbrew is a tool that helps manage Homebrew installations on macOS devices, allowing administrators to remotely control and configure Homebrew installations, and providing features for mass reporting and compliance. It is built by a team of experienced developers, including the maintainer of Homebrew, and offers responsive support to help users get up and running.

Was early modern writing paper expensive? (2018)

https://d3k85wy3v9cru9.cloudfront.net/uploads/2018/02/va401blank-500x318.jpg
Paper was not expensive or scarce in early modern England, with a quire of regular paper costing around 4 pence, equivalent to a penny for six sheets, and the average laborer could purchase up to 75 sheets with a day's wages. The myth of expensive paper likely originated from the print world, where large-scale paper purchases were necessary, whereas individuals typically bought single quires, ...

New Programming Languages of 2024

https://pldb.io/lists/explorer.png
PLDB - Build the next great programming language · About · Resources · Acknowledgements · Part of the World Wide Scroll

How Soon Might the Atlantic Ocean Break? Two Sibling Scientists Found an Answer

https://media.wired.com/photos/635b05af68addec416d5b995/1:1/w_270%2Cc_limit/undefined
Scientists Peter and Susanne Ditlevsen have predicted that the Atlantic Meridional Overturning Circulation (AMOC), a crucial ocean current, may collapse by 2057, leading to severe climate changes and global disruptions. While their prediction has been met with controversy and criticism from other scientists, the Ditlevsens argue that their findings highlight the urgent need for action to ...

Texas woman gets 15 years for stealing $109M from Army to buy mansions, cars

https://www.usatoday.com/gcdn/authoring/authoring-images/2024/07/23/NAAS/74518681007-jewelry-3.jpg?crop=617,346,x33,y0&width=615&height=346&format=pjpg&auto=webp
Janet Yamanaka Mello, a 57-year-old Texas woman, was sentenced to 15 years in federal prison for stealing nearly $109 million from a grant program intended for military children and families to fund her lavish lifestyle. Mello used the stolen funds to buy luxury items, including jewelry, cars, and real estate, and failed to accurately report her income for tax years 2017-2022.

Revealing the Inner Structure of AWS Session Tokens

https://miro.medium.com/v2/resize:fit:932/0*SA3Pj6dnkdOPiwdw.png
The authors of this research paper have reverse-engineered the AWS Session Token, a critical component of Amazon Web Services' authentication and authorization protocols, and have developed two open-source tools to analyze and manipulate the token's contents. The research reveals the cryptographic primitives used by AWS, including the hourly updates of encryption and signing keys, and ...

Google reported a 13% increase in its emissions footprint in 2023

https://images.indianexpress.com/2024/07/ai-science.jpg?w=640
Google's 2023 environment report shows a 13% increase in emissions due to increased data centre electricity consumption and supply chain emissions. The growing use of artificial intelligence (AI) is expected to continue this trend, with AI searches using 10-33 times more energy than regular Google searches and data centres accounting for 1-3% of global electricity demand.

UBI and the Anti-Work Vibe Shift

https://www.greshm.org/images/blog/anti-work.webp
The study on unconditional money by Vivalt et al. shows that participants became less inclined to work, but critics like Noah Smith miss the point that UBI would eliminate the need for artificial labor demand. UBI is not just about giving people free money, but about recalibrating the economy to minimize the distortion of labor and capital.

Abstract Interpretation in the Toy Optimizer

The author introduces abstract interpretation, a framework for efficiently computing properties of a program's behavior, and demonstrates its application to a simple IR and optimizer. The author also discusses the concept of abstract domains and transfer functions, and provides examples of how abstract interpretation can be used to optimize code.

Calculus for Beginners and Artists

America's 60-Year-Olds Are Staring at Financial Peril

A bruising recession and the disappearance of pensions have left many young boomers financially exposed.

Weight-loss drugs are causing people to spend less at the grocery store: study

https://nypost.com/wp-content/uploads/sites/2/2024/07/hand-hold-potato-chips-snack-61598070.jpg?w=1024
People taking weight-loss medications like Ozempic and Mounjaro spend less on groceries and buy healthier foods, with a 52% decrease in snack and confectionery purchases. Users report craving healthier foods, feeling fuller faster, and reallocating their grocery spending to protein-rich and low-carb options.

Ask HN: What's an appropriate compensation counter offer in London 2024?

You're considering a promotion to Head of Backend/Data at a UK-based SaaS startup, with a £85k salary offer and no additional equity, and you're seeking advice on whether to negotiate salary or equity. You have a strong bargaining position due to your domain knowledge and contributions, but also want to maintain a good relationship with the founders, who are friends.

AI existential risk probabilities are too unreliable to inform policy

https://substackcdn.com/image/fetch/w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3483cbd6-7b7c-4fb8-833c-66c4c1f4591f_2396x920.png
The authors argue that forecasts of existential risk from AI are unreliable and lack justification, and that policymakers should not make decisions based on these forecasts. Instead, they suggest that governments should adopt policies that are compatible with a range of possible estimates of AI risk and are on balance helpful even if the risk is negligible.

Smartphone-maker Xiaomi unveils SU7 Ultra, a 1548hp, 4-door electric hypercar

https://electrek.co/wp-content/uploads/sites/3/2024/07/GS2vo29XUAAzkRN-2048x1152-1-1024x576-1.jpg?quality=82&strip=all&w=1024
Xiaomi has unveiled a hyper-sports version of its 4-door EV, the SU7 Ultra, with 1548hp and a 0-100kmh time of 1.97 seconds, aiming to be the fastest 4-door car in the world. The car features three electric motors, a carbon fiber body, and a 101kWh battery that can charge to full in 12 minutes, with plans to take it to the Nürburgring to set a new record.

Orcas sink $128K yacht in Mediterranean attack: 'Like watching wolves hunt'

https://nypost.com/wp-content/uploads/sites/2/2024/07/2024-british-sailor-told-fended-86096697.jpg?w=916
A pod of five orcas attacked a £100,000 sailing boat in the Mediterranean Sea, sinking it after a two-hour assault. The boat's owner, Robert Powell, described the attack as "terrifying" and believes the pod may be responsible for similar attacks in European waters.

Objective-C is like Jimi Hendrix (2014)

The user compares their initial reaction to Jimi Hendrix's music to their current understanding of Objective-C, realizing that the latter's features were revolutionary in the 80s but now seem normal. As a programmer, the user encourages others to appreciate Objective-C's "modern" features, such as code introspection and method swizzling, by considering the perspective of 80s C programmers who ...

Covering All Birthdays

https://liorsinai.github.io/assets/posts/birthday-covering/coupon_collecting.png
The problem is to estimate the probability that all 365 birthdays are covered in a group of people, and the expected number of people required to achieve this. The author presents a theoretical solution using the Inclusion-Exclusion Principle and compares it to a Monte Carlo simulation, finding a close match between the two methods.

Maglev titanium heart now whirs inside the chest of a live patient

https://assets.newatlas.com/dims4/default/566b057/2147483647/strip/true/crop/1280x853+0+0/resize/1200x800!/quality/90/?url=http%3A%2F%2Fnewatlas-brightspot.s3.amazonaws.com%2Fc3%2F4d%2F38fab230433389b91d587feb9455%2Ftitanium-heart.jpg
BiVACOR's fully mechanical heart, using maglev technology, has been implanted in a human for the first time, marking a major step in keeping people alive while waiting for heart transplants. The device, which can pump 12 liters of blood per minute, is designed to last longer than other artificial hearts and could help the 3,400 people currently waiting for heart transplants.

U.S. shelves $300M 'real-world' data platform for Alzheimer's

The National Institute on Aging (NIA) canceled its $312 million Real-World Data Platform project due to concerns over cost estimates and lack of project management practices. The project aimed to gather data on people with Alzheimer's disease or at risk of developing it, but was shelved without public notice, citing the need for rival projects and an increase in high-quality research grant ...

Introduction to Linear Algebra

1. Introduction2. Basic Vector Operations3. Basic Matrix Operations4. Geometry of N-dimensional Space5. Systems of Linear Equations6. Linear Transformations7. Vector Spaces8. Eigenvalues and Eigenvectors9. Basic Applications of Linear Algebra

The uncertain possible futures of Unix graphical desktops

The future of Unix desktops is uncertain due to Wayland's lack of cross-platform compatibility, leaving other Unixes to choose between imitating Linux or sticking with X. This may lead to a split between Linux-based Wayland desktops, Wayland-based window managers, and limited X-only Unix desktops, with some Unixes potentially being left behind with outdated software.

Hosting the Olympics has become financially untenable, economists say

https://media.cnn.com/api/v1/images/stellar/prod/ap24204625361703.jpg?c=16x9&q=h_833,w_1480,c_fill
The International Olympic Committee is aiming to make the Paris Games more frugal and green, with a budget of under $10 billion, but some economists argue that a truly sustainable Olympics will require a drastic overhaul of the event's format and hosting model. The current model, where cities build new infrastructure and spend heavily on the event, often results in cost overruns and financial ...

Firefox Testing New Privacy Feature, Working with Meta

https://www.maketecheasier.com/assets/uploads/2024/07/firefox-testing-privacy-feature-featured.jpg
Firefox is testing a new privacy feature with Meta to manage personal data and allow advertising, aiming to balance user privacy and advertiser needs. The feature, called Private Attribution Prototype, uses Multi-Party Computation to measure internet activity without targeting users, and can be turned off for those who prefer more privacy.

TikTok Collected US Users' Views on Gun Control, Abortion and Religion, US Says

Please enable JS and disable any ad blocker

Contra Zuckerberg on 'Open Source AI'

Mark Zuckerberg's letter "Open Source AI Is the Path Forward" promotes the idea of open-source AI as a safer and more beneficial approach, but the author argues that the release of Llama 3.1 is not truly open-source and lacks the necessary freedom and transparency to achieve the benefits promised. The author also criticizes Zuckerberg's argument that open-source AI is safer and more ...

Canadian women's soccer team loses six points, coach banned over drone scandal

Please enable JS and disable any ad blocker

Mathematicians discover impossible problem in Super Mario games

https://images.newscientist.com/wp-content/uploads/2024/06/11153749/SEI_208289383.jpg
Researchers found it mathematically impossible to determine if certain Super Mario Bros levels can be completed before playing them, even with powerful computers. The difficulty of the game is hard to prove, but it may contribute to its fun factor.

Why the US still needs the F-15 [video]

A Few Blockbuster Podcasts Are Making All the Money

Please enable JS and disable any ad blocker

America was futuristic once. Now all the crazy things are from Asia

https://i.guim.co.uk/img/media/126342349bc3029c6f1fa58b7bf2b879dbde4a8b/0_158_4729_2838/master/4729.jpg?width=445&dpr=1&s=none
The rise of east Asian culture, particularly from South Korea and Taiwan, has become a significant trend among British teenagers, with many embracing K-pop, K-dramas, and Korean snacks, and brands like Pop Mart, Kenji, and Miniso capitalizing on this demand. The appeal of these brands lies in their unique aesthetic, colorful packaging, and Instagrammable products, which offer a sense of ...

GPS jammed on commercial flight over Atlantic

https://www.telegraph.co.uk/content/dam/news/2024/06/20/TELEMMGLPICT000370694544_17189167089030_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg?imwidth=680
A commercial plane's GPS was deliberately jammed on a transatlantic flight, raising concerns that thousands of other flights could be at risk of being hacked. The incident is believed to be linked to Russian electronic warfare, which has become increasingly normalised and could potentially disrupt GPS signals for road traffic as well.

Advanced Linux Programming [pdf]

The book "Advanced Linux Programming" is a tutorial on writing good GNU/Linux software, assuming the reader has a basic knowledge of C programming and the Linux command shell. The book covers topics such as writing and using libraries, creating and modifying C and C++ source code, and debugging the result.

Injuries with Electric vs. Conventional Scooters and Bicycles

https://cdn.jamanetwork.com/ama/content_public/journal/jamanetworkopen/939400/zoi240759f1_1720729852.97353.png?Expires=2147483647&Signature=WCxfP3eC8W4h4N-XabESuFe7guW5rCtpGNRrcwPMVpeAWUsfWenHaqUBjjBEiMWSKY4oXnrzHF41NWS25kYwifkf7f0PIJQ5k7ZWJ3hdRNVqVok9-c2f69aKpcO-91~W8M64dBjPzOq3WJZrwkdtGRGJgzaOrnYeHwDB6CrnmazEwBh0D2PTIP9z61MApNHTywbv6Sg19KhkdOajaIqeBhmlVMm-bBarLkBN10orDdd4DICHJ59g-VS-8pcG-lEweADrXPX6iSA9KivtBMOSowUbUDScV~bIGEU1Iz17EHgzPlnkx-wEBZ3ft1vuyQ68BHiKRhkmG1ckUVwEFwcheQ__&Key-Pair-Id=APKAIE5G5CRDK6RD3PGA
The study analyzed data from the National Electronic Injury Surveillance System (NEISS) and found that injuries and hospitalizations from electric scooters and bicycles increased significantly from 2017 to 2022, with older adults and Black individuals being disproportionately affected. The study highlights the need for safer infrastructure, education, and regulations to reduce the risk of ...

Beating the CAP theorem checklist (2013)

The user criticizes an idea for beating the CAP theorem, pointing out numerous flaws and technical objections, including assumptions about software and hardware failures, network topology, and clock drift. The user concludes that the idea is based on false advertising, lacks research, and demonstrates a lack of understanding of distributed systems and the CAP theorem.

The uncertain possible futures of Unix graphical desktops

The future of Unix desktops is uncertain due to Wayland's lack of cross-platform compatibility, leaving other Unixes to choose between imitating Linux or sticking with X. This may lead to a split between Linux-based Wayland desktops, Wayland-based window managers, and limited X-only Unix desktops, with some Unixes potentially being left behind with outdated software.