7 key components of observability in Python

Observability is the ability to look at data that tells you what your code is doing. In this context, the main problem area is server code in distributed systems. It’s not that observability isn’t important for client applications; it’s that clients tend not to be written in Python. It’s not that observability does not matter for, say, data science; it’s that tooling for observability in data science (mostly Juptyter and quick feedback) is different.

Source: LXer – 7 key components of observability in Python

Activision's Damage Control Reaches Sad New Low

Faced with internal unrest, plummeting share prices and a growing public relations disaster, the men and women at the very top of Activision Blizzard—the senior executives and board of directors—should all be resigning. Instead, they’ve put out a desperate press release in the middle of the night announcing the…

Read more…



Source: Kotaku – Activision’s Damage Control Reaches Sad New Low

A Smart Artificial Pancreas Could Conquer Diabetes

IEEE Spectrum reports on the progress being made to develop a “smart artificial pancreas” that senses blood glucose and administers insulin accordingly. An anonymous reader shares an excerpt from the report: The artificial pancreas is finally at hand. This is a machine that senses any change in blood glucose and directs a pump to administer either more or less insulin, a task that may be compared to the way a thermostat coupled to an HVAC system controls the temperature of a house. All commercial artificial pancreas systems are still “hybrid,” meaning that users are required to estimate the carbohydrates in a meal they’re about to consume and thus assist the system with glucose control. Nevertheless, the artificial pancreas is a triumph of biotechnology.

It is a triumph of hope, as well. We well remember a morning in late December of 2005, when experts in diabetes technology and bioengineering gathered in the Lister Hill Auditorium at the National Institutes of Health in Bethesda, Md. By that point, existing technology enabled people with diabetes to track their blood glucose levels and use those readings to estimate the amount of insulin they needed. The problem was how to remove human intervention from the equation. A distinguished scientist took the podium and explained that biology’s glucose-regulation mechanism was far too complex to be artificially replicated. [Boris Kovatchev, a scientist at the University of Virginia, director of the UVA Center for Diabetes Technology, and a principal investigator of the JDRF Artificial Pancreas Project] and his colleagues disagreed, and after 14 years of work they were able to prove the scientist wrong.

It was yet another confirmation of Arthur Clarke’s First Law: “When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong.” […] Progress toward better automatic control will be gradual; we anticipate a smooth transition from hybrid to full autonomy, when the patient never intervenes. Work is underway on using faster-acting insulins that are now in clinical trials. Perhaps one day it will make sense to implant the artificial pancreas within the abdominal cavity, where the insulin can be fed directly into the bloodstream, for still faster action. What comes next? Well, what else seems impossible today?

Read more of this story at Slashdot.



Source: Slashdot – A Smart Artificial Pancreas Could Conquer Diabetes

Munich mk2? Germany's Schleswig-Holstein plans to switch 25,000 PCs to LibreOffice

From the department of If At First You Don’t Succeed Try Try Again comes news that a German state is to have a crack at shifting thousands of PCs from proprietary software to an open-source alternative. In this instance, it is the north-German state of Schleswig-Holstein that is aiming to ditch proprietary code, including Microsoft Office, in favour of open-source software. According to open-source productivity platform LibreOffice, 25,000 PCs will be running its wares by the end of 2026.

Source: LXer – Munich mk2? Germany’s Schleswig-Holstein plans to switch 25,000 PCs to LibreOffice

Steam Client Supports VA-API Hardware Encoding on Linux

Good news for Linux users! The new Steam Client update adds support for VA-API hardware encoding on Linux. Users who don’t want this feature will be able to disable it by turning off AMD and Intel hardware encoding in the Remote Play advanced host settings.

Moreover, Valve added support for DMABUF PipeWire capture on Linux, which can be enabled by launching Steam with the -pipewire-dmabuf argument, and it requires the 32-bit version of the libgbm.so.1 library.

The post Steam Client Supports VA-API Hardware Encoding on Linux appeared first on Linux Today.



Source: Linux Today – Steam Client Supports VA-API Hardware Encoding on Linux

Rare Einstein Manuscript Set To Fetch Millions

A rare manuscript by theoretical physicist Albert Einstein goes under the hammer in Paris on Tuesday, with auctioneers aiming for a stratospheric price tag. Phys.Org reports: The manuscript, containing preparatory work for Einstein’s key achievement the theory of relativity, is estimated at between two and three million euros (2.3-3.4 million), according to Christie’s which is hosting the sale on behalf of the Aguttes auction house. “This is without a doubt the most valuable Einstein manuscript ever to come to auction,” Christie’s said in a statement.

The 54-page document was handwritten in 1913 and 1914 in Zurich, Switzerland, by Einstein and his colleague and confidant, Swiss engineer Michele Besso. Christie’s said it was thanks to Besso that the manuscript was preserved for posterity. This was “almost like a miracle” since the German-born genius himself would have been unlikely to hold on to what he considered to be a simple working document, Christie’s said. Today, the paper offers “a fascinating plunge into the the mind of the 20th century’s greatest scientist,” it said.

Read more of this story at Slashdot.



Source: Slashdot – Rare Einstein Manuscript Set To Fetch Millions

Seven-Eleven Drone Deliveries in Tokyo

Akihabara News (Tokyo) — Three companies including Seven-Eleven Japan are collaborating on practical tests within Tokyo of a drone delivery service for customers of convenience store outlets.

Aside from Seven-Eleven Japan, All Nippon Airways (ANA) will operate the drones, and the drone-maker itself, ACSL, will also lend a hand.

The tests will take place from November 29-December 19 with Seven-Eleven’s Hinode-Oguno store (between Hachioji and Okutama) as the hub. Products ordered through the Seven-Eleven Net Convenience Store will be delivered to four delivery destinations within Hinode town, including local parks and a hospital.

The drones will be loaded with the purchased products by the actual Seven-Eleven store staff.

The convenience store is also installing the needed drone takeoff and landing site.

Orders will be accepted from 9:00 to 16:00, and the drone shipping fee will be ¥110 (US$1) including tax.

ANA will play the most difficult part, operating the drones, issuing the delivery notifications, and generally coordinating the whole operation.

ACSL will provide technical support for the operation of the drone, while NTT Docomo will offer use of its LTE network.

The Tokyo Metropolitan Government is playing its part by excluding these tests from the usual ban on Level 4 drone flights in which the operator flies over a populated area outside of visual range.

Recent Drone Related Articles

SkyHub Launched in Yamanashi Prefecture

Docomo Blimp Drone Heads to the Market

Cybersecurity Insurance for Drones

Tokyo Government Preps Drone Food Delivery

ALSOK Drone Security Patrols

Drone Delivery Begins for Remote Island

Hello Drone Education Project

ANRA Brings SmartSkies to Japan

Yamato Explores Drug Delivery by Drone

Safety Parachutes for Industrial Drones

The post Seven-Eleven Drone Deliveries in Tokyo appeared first on Akihabara News.



Source: Akihabara News – Seven-Eleven Drone Deliveries in Tokyo

How to Use make and makefile in Linux

One of the main reasons why Linux is popular among C/C++ programmers is the support provided by Linux to them. This includes the g++ compiler suite and its related tools used for program development such as the make command.

In this tutorial, you will learn about the make command in Linux, its use, the basis of the makefile, and how it is used with the make command.

The post How to Use make and makefile in Linux appeared first on Linux Today.



Source: Linux Today – How to Use make and makefile in Linux

Rooftop Solar Helps Send South Australia Grid To Zero Demand In World's First

South Australia on Sunday became the first gigawatt scale grid in the world to reach zero demand when the combined output of rooftop solar and other small non-scheduled generators exceeded all the local customer load requirements. Renew Economy reports: The landmark event was observed by several energy analysts, including at Watt Clarity and NEMLog, where Geoff Eldridge noted that a number of measures for South Australia demand notched up record minimums for system normal conditions. It was later confirmed by the Australian Energy Market Operator, which noted that “scheduled” demand — local demand minus the output of rooftop solar and small unscheduled generators such as small solar farms and bio-energy — fell to minus 38MW in a five minute period at 1235pm (grid time, or AEST).

Minimum demand is now possibly the biggest challenge for market operators like AEMO, because under current market settings it needs to have a certain amount of synchronous generation to maintain system strength and grid stability. It does this by running a minimum amount of gas generation, and through the recent commissioning of spinning machines called synchronous condensers that do not burn fuel. It also needs a link to a neighboring grid, in this case Victoria, so it can export surplus production.

Read more of this story at Slashdot.



Source: Slashdot – Rooftop Solar Helps Send South Australia Grid To Zero Demand In World’s First

Dune Is Coming Home (Again) Sooner Than You Think

Your chance to watch Dune at home is over. For a month, the hit sci-fi spectacle from filmmaker Denis Villeneuve was both in theaters as well as streaming on HBO Max. However, that window has now closed, which means if you want to see Dune, you can either go to a theater or wait at home. Thankfully, the wait is rather…

Read more…



Source: Gizmodo – Dune Is Coming Home (Again) Sooner Than You Think

Rolls-Royce's All-Electric Airplane Reached a Record 387.4 MPH Top Speed

Rolls-Royce has announced that its all-electric plane, dubbed the “Spirit of Innovation,” is the fastest of its kind in the world after it reached a maximum speed of 387.4 mph (623 k/h) in recent flight tests. Gizmodo reports: In a recent news release, the company, not to be mistaken for the car company owned by BMW, claimed that the Spirit of Innovation set three new world records earlier this week. On flight tests carried out on Nov. 16, Rolls-Royce said its aircraft reached a top speed of 345.4 mph (555.9 km/h) over 1.8 miles (3 kilometers), exceeding the current record by 132 mph (213 k/h). It broke another record in a subsequent 9.3-mile (15 kilometer) flight, during which it reached 330 mph (532.1 km/h), surpassing the current record by 182 mph (292.8 km/h).

The Spirit of Innovation didn’t stop there, though. Rolls-Royce affirms that it smashed another record when it reached 9,842.5 feet (3,000 meters) in 202 seconds, beating the current record by 60 seconds. In the company’s view, it also took the title of the world’s fastest all-electric vehicle when it reached a maximum speed of 387.4 mph (623 km/h) during its flight tests. The company’s aircraft is powered by a 400kW electric powertrain and “the most power-dense propulsion battery pack ever assembled in aerospace.” “Following the world’s focus on the need for action at COP26, this is another milestone that will help make ‘jet zero’ a reality and supports our ambitions to deliver the technology breakthroughs society needs to decarbonize transport across air, land and sea,” CEO Warren East said in the news release.

Read more of this story at Slashdot.



Source: Slashdot – Rolls-Royce’s All-Electric Airplane Reached a Record 387.4 MPH Top Speed

Report: Nintendo Of America President Says Activision's Harassment Stories Are 'Distressing And Disturbing'

Activision’s self-serving response to historic allegations of abuse and misogyny in its workplace has been drawing a lot of criticism lately, from shareholders demanding the resignation of CEO Bobby Kotick to staff staging multiple walkouts. Now Nintendo of America has reportedly joined the chorus of those unhappy…

Read more…



Source: Kotaku – Report: Nintendo Of America President Says Activision’s Harassment Stories Are ‘Distressing And Disturbing’

Are scientists less prone to motivated reasoning?

Read 13 remaining paragraphs | Comments



Source: Ars Technica – Are scientists less prone to motivated reasoning?

Qualcomm Has an Exclusivity Deal With Microsoft For Windows On ARM

An anonymous reader quotes a report from XDA Developers: Last week, we reported that MediaTek is planning to build a chipset for Windows on ARM. As it turns out, the Windows on ARM chipset space could be even hotter than that, because there’s a reason that we’ve only seen Qualcomm SoCs in ARM PCs so far. Qualcomm actually has an exclusivity deal with Microsoft for Windows on ARM, and speaking with people familiar with it, we’ve learned that the deal is set to expire soon. Other than the fact that Microsoft has publicly said that anyone who wants to can build a Windows on ARM chip, this really shouldn’t come as a surprise. Qualcomm didn’t just start building PC chips hoping that Microsoft would compile Windows to support it. No, these two companies worked together to make it happen. Because of that, Qualcomm gets to enjoy a bit of exclusivity.

One thing I wasn’t able to learn is when the deal will expire, only that it’s the thing holding back other chip vendors from competing in the space. It’s possible that Samsung might want to throw its hat into the ring with its Exynos processors too, especially given its recent partnership with AMD for graphics power. This is also presumably why Apple Silicon Macs aren’t officially supported for running Windows 11, so hopefully that will change as well. […] Between MediaTek’s Executive Summit and Qualcomm’s Investor Day, there’s been a very clear message that ARM SoC vendors absolutely believe that the ‘Wintel’ partnership is going to fade and that the transition to ARM isn’t just happening, it’s inevitable. Naturally, that means that all of these companies are going to want to be part of it when it opens up. Qualcomm has quite a head start though, given that it’s been doing this for a few years and on top of that, it’s going to start building its own custom silicon thanks to its Nuvia acquisition.

Read more of this story at Slashdot.



Source: Slashdot – Qualcomm Has an Exclusivity Deal With Microsoft For Windows On ARM

Windows on ARM Laptops Reportedly Hamstrung by Qualcomm, but That Might Soon Change

Let your Mac-owning friends boast all they want about the blinding speeds of Apple’s new M-series chips, because who needs fast performance when you have freedom of choice? That’s one of the benefits of buying a PC—or at least, it’s supposed to be.

Read more…



Source: Gizmodo – Windows on ARM Laptops Reportedly Hamstrung by Qualcomm, but That Might Soon Change

Use Fedora Server to send text messages and voice alerts

This article will demonstrate how to configure Fedora Server as an alert and notification server that can place calls using an Asterisk PBX and send SMS text messages using Twilio. The use of the SMS message feature is optional. By using the call_only endpoint of the caller_prometheus_webhook component, you can limit the alerts to voice calls only.

Source: LXer – Use Fedora Server to send text messages and voice alerts