Stories
Slash Boxes
Comments

SoylentNews is people

SoylentNews is powered by your submissions, so send in your scoop. Only 12 submissions in the queue.

Log In

Log In

Create Account  |  Retrieve Password


Site News

Join our Folding@Home team:
Main F@H site
Our team page


Funding Goal
For 6-month period:
2022-07-01 to 2022-12-31
(All amounts are estimated)
Base Goal:
$3500.00

Currently:
$438.92

12.5%

Covers transactions:
2022-07-02 10:17:28 ..
2022-10-05 12:33:58 UTC
(SPIDs: [1838..1866])
Last Update:
2022-10-05 14:04:11 UTC --fnord666

Support us: Subscribe Here
and buy SoylentNews Swag


We always have a place for talented people, visit the Get Involved section on the wiki to see how you can make SoylentNews better.

Which musical instrument can you play, or which would you like to learn to play?

  • piano or other keyboard
  • guitar
  • violin or fiddle
  • brass or wind instrument
  • drum or other percussion
  • er, yes, I am a professional one-man band
  • I usually play mp3 or OSS equivalents, you insensitive clod
  • Other (please specify in the comments)

[ Results | Polls ]
Comments:27 | Votes:72

posted by martyb on Wednesday April 15 2020, @11:59PM   Printer-friendly
from the capsaicin++ dept.

Arthur T Knackerbracket has found the following story:

"We're looking how can we study and eventually treat stress disorders by modulating peripheral organ function, rather than doing something highly invasive in the central nervous system," says Polina Anikeeva, an MIT professor of materials science and engineering and of brain and cognitive sciences.

To achieve control over hormone release, Dekel Rosenfeld, an MIT-Technion postdoc in Anikeeva's group, has developed specialized magnetic nanoparticles that can be injected into the adrenal gland. When exposed to a weak magnetic field, the particles heat up slightly, activating heat-responsive channels that trigger hormone release. This technique can be used to stimulate an organ deep in the body with minimal invasiveness.

[...] In the new study, the research team wanted to explore the idea of treating disorders of the brain by manipulating organs that are outside the central nervous system but influence it through hormone release. One well-known example is the hypothalamic-pituitary-adrenal (HPA) axis, which regulates stress response in mammals. Hormones secreted by the adrenal gland, including cortisol and adrenaline, play important roles in depression, stress, and anxiety.

[...] As a target to stimulate hormone release, the researchers decided on ion channels that control the flow of calcium into adrenal cells. Those ion channels can be activated by a variety of stimuli, including heat. When calcium flows through the open channels into adrenal cells, the cells begin pumping out hormones. "If we want to modulate the release of those hormones, we need to be able to essentially modulate the influx of calcium into adrenal cells," Rosenfeld says.

[...] To stimulate these heat-sensitive channels, which naturally occur in adrenal cells, the researchers designed nanoparticles made of magnetite, a type of iron oxide that forms tiny magnetic crystals about 1/5000 the thickness of a human hair. In rats, they found these particles could be injected directly into the adrenal glands and remain there for at least six months. When the rats were exposed to a weak magnetic field—about 50 millitesla, 100 times weaker than the fields used for magnetic resonance imaging (MRI)—the particles heated up by about 6 degrees Celsius, enough to trigger the calcium channels to open without damaging any surrounding tissue.

[...] This stimulation triggered a hormone rush—doubling cortisol production and boosting noradrenaline by about 25 percent. That led to a measurable increase in the animals' heart rates.

Journal Reference: Dekel Rosenfeld et al. "Transgene-free remote magnetothermal regulation of adrenal hormones", Science Advances (2020). DOI: 10.1126/sciadv.aaz3734


Original Submission

posted by janrinok on Wednesday April 15 2020, @10:11PM   Printer-friendly
from the rushin'-hacks dept.

[20200416_143747 UTC: Update 2: Added an Example to make clear what the problem was, and added 2 headings subsequent to the example to better organize the information. --martyb]
[20200416_005831 UTC; Update 1: Updated title and corrected spelling of balanceTags(). --martyb]

Ooops! Things should be working correctly, now.

tl;dr: Back on March 20th, someone tripped over a bug that appears to be in the balanceTags() routine in our Perl code. I found a way to made a quick fix to prevent its happening again, but the fix was missing a couple steps. I caught and fixed one of them, but only now just handled the other.

Workaround: When writing a comment, writing or editing a journal entry, or when submitting a story, use "DEL" instead of "STRIKE" to make text look like this.

This story is the result of something I learned in the process: properly notify the community of any changes to the site!

Symptom: It all started with a tag (i.e. HTML element) error in this comment in a user's journal where the user coded a <strike> tag, but neglected to provide a matching </strike> tag.

Example: Let's look back to the original comment which manifested this bug. Here's the latter part of it, after being corrected:

Looks who's projecting. Consider your phrase "steal jobs and send them overseas for cheap/free labor" (no such thing as free labor). That helps billions of poor people improve their lives. Yet here you are, selfishly obsessing over your developed world pricing power (with some very unempathic label spewing) rather than display the alleged empathy or morality that you claim to be concerned about.

Your empathy is nonexistent and your morals are bankrupt - definitely not the sort of person I should be taking advice from!

The problem is that there was no closing <strike> after the word "cheap", so it looked like this:

Looks who's projecting. Consider your phrase "steal jobs and send them overseas for cheap/free labor" (no such thing as free labor). That helps billions of poor people improve their lives. Yet here you are, selfishly obsessing over your developed world pricing power (with some very unempathic label spewing) rather than display the alleged empathy or morality that you claim to be concerned about.

Your empathy is nonexistent and your morals are bankrupt - definitely not the sort of person I should be taking advice from!

If that was all that happened it would be ugly, but tolerable. Unfortunately, every single character following it on the page was struck through, too. Not Good™.

Immediate Fix: To my knowledge there was only one way to rectify the immediate issue: manually go into the DB and insert the missing tag. This I was able to do quite quickly, but I still saw a problem.

More to Come: Anyone who saw this comment discussion, either at this moment, or who happened upon it later, would see an opportunity to intentionally leave a hanging tag and thus disfigure the site. Trolls gotta troll. So, I made the fix and noted same in this comment reply.

So, an instance of the problem was fixed, but now what? There's a "proper" way to do it, and there is another way to get the same effect that can be quickly implemented. I chose the latter.

Perl Code: Normally, such HTML errors in a user's comment or journal entry (or an editor's edit of a story!) are caught and handled by a routine in our Perl code: balanceTags(). The code looks though all the tags, with whatever nesting is present, detects where tags do not have a required closing tag,and silently inserts it into the text that makes it into the DB. It's rather hairy code because it also needs to handle: extra closing tags, mis-matched closing tags (e.g.: <b> bold <bold and italic> </b> </i>), mistyped or otherwise non-existent tags, restricting what tags are supported, and custom-created site tags! Whew!

Further, to fix it in the Perl code means going through the process of: checking the code out from GitHub, understanding the code, making the change, compiling the change, testing the change, (after rolling it out to our dev server), and then -- if all looks good -- rolling the change out to our production servers. And, of course, nobody was around at the moment who could support such activities even if it were an easy coding change (and it is not!)

Expediency: I realized there was another approach which would mitigate the problem -- not requiring Perl coding changes -- but could still prevent its recurrence: changing the value of a "Site Variable" (aka "site var").

Rehash Primer: Now I need to step back for a moment and explain a couple things. The code for SoylentNews.org is a fork of ancient Slashcode that was put up on GitHub. Slashcode was implemented using a Model View Controller design. There is a clear demarcation between what is done where and at what level.

Templates: As part of its implementation, the SlashCode implemented "Templates" which generate the HTML pages that get sent to the browser and act as an interface between the code and the user. As far as I know, every page you see on the site comes by way of a template. Each template may, in turn, make use of other templates. Templates can make calls to underlying Perl code. This is where the site implements the heavy lifting of talking to the database (DB), creating e-mails, and other closer-to-the-metal activities. The template language (from personal inspection; I have yet to find an official document as to its syntax and semantics) presents what appears to be a simple, macro-capable language. The templates are stored in the DB and loaded into memory when the site is started. An advantage of this is that changes to templates can be made "on the fly" using a template editor (which is, itself, a template!) There is one caveat: for the changes to take effect, processes on the front-end servers need to be "bounced", i.e. restarted, so the changes are loaded into memory from the (updated) DB.

Site Variables: There are some parameters whose values affect the site's operations: Name of the site, domain name of the site, the name of the Anonymous User account, ... it goes on and on and on. There are no less than 750 site variables! And, as many things that grew beyond their initial construction, there is no simple way to look for what site vars might be appropriate to any given situation. One is just expected to know what they are and what they do and how they do it. Simple enough approach when they first started, I guess. A search capability would be very nice to have, but it will take some coding to make that happen, so it has become just another of the several changes that would be nice to make to the site.

So, back to the matter at hand, I knew about the "approvedtags" site var which lists all tags which are permitted to be used on the site. Sure enough, "STRIKE" was in there! And, I saw that "DEL" was in there, too. Does "DEL" have the same problem? I tried a quick test comment on our development server and it revealed that balanceTags() properly handled a hanging <DEL> without a matching </DEL>. Yay! I removed "STRIKE" from the "approvedtags" list, saved the change, bounced the front-end servers, and breathed a sigh of relief.

All was good, until someone asked in a footnote to a comment why do we still list STRIKE as being a permitted tag for comments? What? I double-checked and verified that "STRIKE" was no longer listed in "approvedtags". What is going on? So, I commenced searching and finally discovered another site var: "approvedtags_visible" which contains the list of tags that is presented to the user as being available. And, sure enough, "STRIKE" was in that list. Grrr! I removed "STRIKE" from "approvedtags_visible", saved the changes, and saw no further issues mentioned there. Finally!

Or so I thought. Did you see what was missed? The site vars were now correct and up-to-date. The changes were saved to the DB. But... those changes existed only in the DB. Still needed to 'bounce' the front end servers for the changes to take effect. So, that entailed a quick SSH to our servers, running the bounce scripts, and verifying that "STRIKE" was truly and properly removed from the tags presented to the user as being available for use, and that anyone trying to use <STRIKE>, anyway, would discover it did not work.

Conclusions: So, here are some lessons learned:

  1. When you want to use a <STRIKE> tag, use <DEL>, instead.
  2. There is no assurance that reporting a problem in the comments will be noticed.
  3. Please report site issues with an e-mail sent to admin (at) soylentnews (dot) org.
  4. In addition to sending an e-mail, mention it in the "#dev" channel of our IRC server.
  5. This particular issue should now be well and truly fixed. Please report any problems you may discover with it.
  6. When communicating changes made to the site, a mention in the comments does not suffice.
  7. --martyb

[Janrinok says: TL:DR Martyb fixed it, OK, OK, I have read it....]


Original Submission

posted by martyb on Wednesday April 15 2020, @08:26PM   Printer-friendly
from the the-sordid-art-of-deflection dept.

BBC: Coronavirus: US to halt funding to WHO, says Trump

US President Donald Trump has said he is going to halt funding to the World Health Organization (WHO) because it has "failed in its basic duty" in its response to the coronavirus outbreak.

[...] Mr Trump has been under fire for his own handling of the pandemic.

He has sought to deflect persistent criticism that he acted too slowly to stop the virus's spread by pointing to his decision in late January to place restrictions on travel from China.

[...] The US is the global health body's largest single funder and gave it more than $400m in 2019.

A decision on whether the US resumes funding will be made after the review, which Mr Trump said would last 60 to 90 days.

[...] China gave about $86m in 2018-19; UK gives most of any country apart from the US

[...] The organisation launched an appeal in March for $675m to help fight the pandemic and is reported to be planning a fresh appeal for at least $1bn.

Reuters: Trump halts World Health Organization funding amid coronavirus pandemic

President Donald Trump said on Tuesday he would halt funding to the World Health Organization over its handling of the coronavirus pandemic while his administration reviews its response to the global crisis.

Trump told a White House news conference the WHO had “failed in its basic duty and it must be held accountable.” He said the group had promoted China’s “disinformation” about the virus that likely led to a wider outbreak of the virus than otherwise would have occurred.

[...] The hold on funding was expected. Trump has been increasingly critical of the organization as the global health crisis has continued, and he has reacted angrily to criticism of his administration’s response.

[...] U.N. Secretary-General Antonio Guterres said on Tuesday it was “not the time” to reduce resources for the body.

“Now is the time for unity and for the international community to work together in solidarity to stop this virus and its shattering consequences,” he said.

American Medical Association President Dr. Patrice Harris called it “a dangerous step in the wrong direction that will not make defeating COVID-19 easier” and urged Trump to reconsider.

[...] The Republican president recently accused the WHO of being too lenient with China in the earliest days of the crisis, despite having himself praised China in January for its response and transparency.

Trump has made frequent use of scapegoats during his short political career. He often lashes out at the media, Democrats, or others when he feels attacked or under pressure.

The Guardian: Trump turns against WHO to mask his own stark failings on Covid-19 crisis

Donald Trump’s declared suspension of funding of the World Health Organisation in the midst of a pandemic is confirmation – if any were needed – that he is in search of scapegoats for his administration’s much delayed and chaotic response to the crisis.

The US is the WHO’s biggest donor, with funding over $400m a year in both assessed contributions (membership fees) and donations – though it is actually $200m in arrears. [pdf]

Theoretically the White House cannot block funding of international institutions mandated by Congress. But the administration has found ways around such constitutional hurdles on other issues – by simply failing to disburse funds or apply sanctions, for example.

The funding could be formally rescinded, but that would require Senate approval, or “reprogrammed” by being diverted to another purpose that the White House could argue is consistent with the will of Congress.

[...] The WHO director general, Tedros Adhanom Ghebreyesus, had to fly to Beijing to meet Xi Jinping on 29 January to negotiate entry and information sharing. A WHO team was allowed to visit Wuhan on 22 February. Tedros has been criticised for his flattery of Xi and the Chinese response, in the face of Beijing’s obstructionism and cover-up attempts. His defenders said that such diplomacy was the price for entry.

Trump did more than his own fair share of Xi flattery. On 24 January, the president tweeted “China has been working very hard to contain the coronavirus … The United States greatly appreciates their efforts and transparency.”

The claim that the delay in the WHO acquiring samples crippled the international response is also false. Chinese scientists publicly released the genetic sequence of Covid-19 on 11 January.

[...] By early February the WHO was in a position to distribute a Covid-19 test worldwide, but the US government opted not to have it fast-tracked through approval. The US Centers for Disease Control and Prevention (CDC) instead produced its own test at about the same time, but it was flawed and had to be recalled. US testing would be set back more than six weeks compared to the rest of the world.

While virtually no testing was under way in the US throughout February, Trump assumed the consequently low number of confirmed US cases meant that his country had somehow escaped. “The Coronavirus is very much under control in the USA,” he boasted on 24 February, nearly a month after the WHO declaration of emergency. “We are in contact with everyone and all relevant countries. CDC & World Health [Organisation] have been working hard and very smart. Stock Market starting to look very good to me!”


Original Submission

posted by chromas on Wednesday April 15 2020, @06:35PM   Printer-friendly
from the MS-set-up-us-the-Bob…is-that-the-right-quote? dept.

GitHub is now free for all teams – TechCrunch:

GitHub today announced that all of its core features are now available for free to all users, including those that are currently on free accounts. That means free unlimited private repositories with unlimited collaborators for all, including teams that use the service for commercial projects, as well as up to 2,000 minutes per month of free access to GitHub Actions, the company’s automation and CI/CD platform.

Teams that want more advanced features like code owners or enterprise features like SAML support will still have to upgrade to a paid plan, but those now start at $4 per month and user for the Teams plans instead of the previous $9, with the Enterprise plan starting at $21 per month and user.

[...] “We’re switching GitHub from a pay-for-privacy model to pay-for-features, what’s typically called freemium — you may have heard of it,” [CEO Nat] Friedman said. “The way I think about it is we want every developer and team on earth to be able to use GitHub for their development, whether it’s private or public development.”

Right now, there are more than 40 million developers on GitHub, and Friedman says the team is projecting that it will get to 100 million by 2025.

[...] Friedman argues that the team didn’t make these changes because of competitive pressure from other players, though it’s worth mentioning that GitLab, for example, offers a competitive free plan with built-in CI/CD features, whereas Atlassian’s BitBucket now has a free offering that looks a bit limited in light of GitHub’s changes.


Original Submission

posted by janrinok on Wednesday April 15 2020, @03:54PM   Printer-friendly
from the takes-your-breath-away dept.

Medical device "jailbreak" could help solve the dangerous shortage of ventilators:

[...] Security researcher Trammell Hudson analyzed the AirSense 10—the world's most widely used CPAP—and made a startling discovery. Although its manufacturer says the AirSense 10 would require "significant rework to function as a ventilator," many ventilator functions were already built into the device firmware.

Its manufacturer, ResMed, says the $700 device solely functions as a continuous positive airway pressure machine used to treat sleep apnea. It does this by funneling air into a mask. ResMed says the device can't work as a bilevel positive airway pressure device, which is a more advanced machine that pushes air into a mask and then pulls it back out. With no ability to work in both directions or increase the output when needed, the AirSense 10 can't be used as the type of ventilator that could help patients who are struggling to breathe. After reverse-engineering the firmware, Hudson says the ResMed claim is simply untrue.

To demonstrate his findings, Hudson on Tuesday is releasing a patch that he says unlocks the hidden capabilities buried deep inside the AirSense 10. The patch is dubbed Airbreak in a nod to jailbreaks that hobbyists use to remove technical barriers Apple developers erect inside iPhones and iPads. Whereas jailbreaks unlock functions that allow the installation of unauthorized apps and the accessing of log files and forensic data, Airbreak allows the AirSense 10 to work as a bilevel positive airway pressure machine, a device that many people refer to as a BiPAP.

"Our changes bring the AirSense S10 to near feature parity with BiPAP machines from the same manufacturer, boost the maximum pressure output available, and provide a starting point to add more advanced emergency ventilator functionality," Hudson and other researchers wrote on their website disclosing the findings.


Original Submission #1Original Submission #2

posted by janrinok on Wednesday April 15 2020, @02:16PM   Printer-friendly
from the doing-it-itself dept.

Google wants to dump Qualcomm, launch smartphone SoC as early as next year

A new report from Axios claims that Google has "made significant progress toward developing its own processor to power future versions of its Pixel smartphone" and that a Google-made SoC could debut in a phone as early as next year. Google is apparently teaming up with Samsung, which is providing design support and manufacturing for the project, codenamed "Whitechapel."

The report says the Google SoC is an eight-core ARM processor with hardware "optimized for Google's machine learning technology" and the always-on capabilities of the Google Assistant. The chip would be built at Samsung's foundries on the firm's upcoming 5nm process, and, in addition to being aimed at the Pixel, the report says that "subsequent versions" of the chip could be used in Chromebooks.

Some ARM SoCs from Qualcomm, Samsung, MediaTek, Huawei, etc. already have some form of dedicated machine learning acceleration.

Also at Wccftech.


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @12:31PM   Printer-friendly
from the not-much-value dept.

Over 500,000 Zoom accounts sold on hacker forums, the dark web:

Over 500,000 Zoom accounts are being sold on the dark web and hacker forums for less than a penny each, and in some cases, given away for free.

These credentials are gathered through credential stuffing attacks where threat actors attempt to login to Zoom using accounts leaked in older data breaches. The successful logins are then compiled into lists that are sold to other hackers.

Some of these Zoom accounts are offered for free on hacker forums so that hackers can use them in zoom-bombing pranks and malicious activities. Others are sold for less than a penny each.

Cybersecurity intelligence firm Cyble told BleepingComputer that around April 1st, 2020, they began to see free Zoom accounts being posted on hacker forums to gain an increased reputation in the hacker community.

These accounts are shared via text sharing sites where the threat actors are posting lists of email addresses and password combinations.

In the below example, 290 accounts related to colleges such as the University of Vermont, University of Colorado, Dartmouth, Lafayette, University of Florida, and many more were released for free.


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @10:39AM   Printer-friendly
from the still-better-than-Flint-Michigan dept.

Water quality could change in buildings closed down during COVID-19 pandemic, engineers say:

While restaurants, gyms, schools and other buildings are closed indefinitely to prevent the spread of COVID-19, water left sitting in pipes could change in quality.

It's possible that water left sitting for long periods of time could contain excessive amounts of heavy metals and pathogens concentrated in pipes nationwide, say researchers who have begun a field study on the impact of a pandemic shutdown on buildings.

Stagnant water would not be a problem just for buildings recently closed down. Water could have been bad for months or years in old hospital buildings that cities are reopening to accommodate a potential influx of COVID-19 patients.

"We don't design buildings to be shut down for months. This study focuses on the consequences and could help building owners make sure that their buildings are safe and operational when occupants return," said Andrew Whelton, a Purdue associate professor of civil engineering and environmental and ecological engineering.

[...] Whelton and other researchers across the U.S. have begun drafting recommendations compiled by this effort in a paper pending publication. Collaborating with Purdue in this effort are experts from leading plumbing safety scientists and engineers from Virginia Tech, Legionella Risk Management Inc., Arizona State University, the University of Memphis, the University of Iowa, Northeastern University, and Polytechnique Montréal in Canada.

[...] But since no study has been conducted on widespread, long-term building closures, knowledge gaps remain on how to best maintain stable water quality during a shutdown. The field study led by Whelton's team would be a start to filling these gaps.

"We're not going to have all the science done at the end of this study. But part of what we're trying to do is put energy toward helping others develop guidelines so that they can at least go in and start recovering their buildings," Whelton said.

[...] In addition to observing water left sitting still in buildings, the team will study how stagnation affects water softeners and water heaters. In the lab, the researchers will let the water sit still for long periods of time, watching for chemical and microbiological changes.

"There isn't really any evidence on what prolonged stagnation does to these devices," Whelton said.

Journal Information:
Caitlin Proctor, et al. Considerations for Large Building Water Quality after Extended Stagnation, OSFPreprints (2020). DOI: 10.31219/osf.io/qvj3b


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @08:48AM   Printer-friendly
from the call-me-a-taxi-ok-you're-a-taxi dept.

Tesla's robotaxi fleet will be 'functionally ready' in 2020, Musk says - Roadshow:

Last year during its Autonomy Investor Day, Tesla laid out the broad strokes of its plan for a fleet of autonomous Teslas to operate as a "robotaxi" service. Of course, at the time, this seemed like a flight of fancy, given the fact that no car manufacturer is even close to full, Level 5 autonomy, by the standard SAE definition.

Fast-forward to now, and it still seems like a flight of fancy. Nevertheless, problems of practicality, technology, logistics and good sense aren't things that Elon Musk is worrying about, because he confirmed on Twitter on Sunday that the service would be functionally ready in 2020.

[...] Tesla currently offers Autopilot, which is a very competent suite of advanced driver assistance systems when appropriately used, but it's nowhere near capable of "full self-driving" as Tesla likes to call it. So, either the Big T has been sandbagging pretty hard, or Elon is full of what a certain former Vice President would call "malarkey."

Tesla didn't immediately respond to a request for comment.


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @06:57AM   Printer-friendly
from the patches-galore dept.

Arthur T Knackerbracket has found the following story:

Adobe released security patches for vulnerabilities in its ColdFusion, After Effects and Digital Editions applications. If exploited, the flaws could enable attackers to view sensitive data, gain escalated privileges, and launch denial-of-service attacks. Each of the bugs were rated important-severity, based on CVSS rankings, marking an extremely low-volume month for Adobe bug fixes.

Overall Adobe patched flaws tied to five CVEs as part of its regularly scheduled security updates, Tuesday. That number pales in comparison to March, where Adobe patched flaws in an out-of-band update tied to 41 CVEs across its products, 29 of which were critical in severity. In February Adobe patched flaws tied to 42 CVEs in its regularly scheduled updates, 35 of which were critical in severity.

"After several months of heavy and highly critical patches, Adobe is giving us a break of sorts," said Jay Goodman, strategic product marketing manager, Automox, in a statement. "Although the CVEs are only marked as important, it is still a good cyber hygiene practice to get your applications patched to reduce your risk exposure."

-- submitted from IRC


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @05:06AM   Printer-friendly
from the follow-the-money dept.

Arthur T Knackerbracket has found the following story:

In the wake of reports last month that four US senators sold stocks shortly after a classified briefing on January 24 about the risk posed by the novel coronavirus, Timothy Carambat, a mechanical and software engineer, created a website to make stock sales by every senator more visible.

In an email to The Register, Carambat, who runs a design firm based in Covington, Louisiana, called Industrial Object, explained he was motivated to create Senate Stock Watcher after news broke that Senators Richard Burr (R-NC), Dianne Feinstein (D-CA), James Inhofe (R-OK), and Kelly Loeffler (R-GA) had dumped stocks before most people in America understood the implications of the outbreak. It is illegal for senators to buy and sell shares using non-public information.

Burr, chairman of the Senate Intelligence Committee, has been sued for alleged securities fraud, a charge he has denied. It is said he unloaded up to $1.7m in stocks in mid-February, particularly in hotel groups that would be later hit hard by the virus pandemic, all while receiving daily confidential briefings about the impact of the bio-nasty – and reassuring the public everything would be fine.

"As public servants, there are some senators making alarmingly large money movements at what would seem to be very fortunate timing in the market," Carambat said.

"I understand some senators were previously very accomplished businesspeople, but in my opinion, the level of access they have to information currently is highly privileged and it would only make sense to keep their own financial best interests at heart."

Details about the stock sales in news reports prompted Carambat to look into the source of the data, which turned out to be the US Senate Financial Disclosures website.


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @03:15AM   Printer-friendly
from the probably-a-MythBusters-experiment dept.

Scientists Discover Brightest Supernova Ever Seen:

Scientists at the Center for Astrophysics | Harvard & Smithsonian today announced the discovery and study of the brightest, most energetic, and likely most massive supernova ever identified.

SN2016aps is believed to be an example of a "pulsational pair instability" supernova, and may have formed as the result of the merging of two massive stars prior to the explosion. The explosion energy of SN2016aps was ten times that of a normal-sized supernova.

"SN2016aps is spectacular in several ways," said Edo Berger, Harvard University professor and co-author on the paper. "Not only is it brighter than any other supernova we've ever seen, but it has several properties and features that make it rare in comparison to other explosions of stars in the universe."

The team—made up of researchers from CfA, University of Birmingham, Northwestern University, and Ohio University—first identified the supernova in 2016 using data from the Panoramic Survey Telescopes and Rapid Response System (Pan-STARRS). A four-year follow-up study tracked its slow evolution and significant energy release. Archival images retrieved during the study revealed a rising light curve dating back to December 2015, allowing the team to better understand the nature and explosion of the supernova.

In a typical supernova, radiation in visible light accounts for just one percent of the total explosion energy of 10^51 erg. In SN2016aps, the explosion energy of 10^52 erg is unprecedented, and the supernova radiated about 50 percent of this energy, making it outshine normal supernova explosions by 500 times.

"The intense energy output of this supernova pointed to an incredibly massive star progenitor," said Berger. "At birth, this star was at least 100 times the mass of our Sun."

Journal Reference
Matt Nicholl, Peter K. Blanchard, Edo Berger et al. An extremely energetic supernova from a very massive star in a dense medium, Nature Astronomy (DOI: doi:10.1038/s41550-020-1066-7)

Just today, I happened upon this two-page story ( https://theconversation.com/they-might-be-giants-a-mind-blowing-sense-of-stellar-scale-2153 ), which helps give some sense of scale to how inconceivably huge the universe is.


Original Submission

posted by Fnord666 on Wednesday April 15 2020, @01:24AM   Printer-friendly
from the folding-my-way-back-to-you dept.

So What Is Protein Folding, Anyway?:

The current COVID-19 pandemic is rife with problems that hackers have attacked with gusto. From 3D printed face shields and homebrew face masks to replacements for full-fledged mechanical ventilators, the outpouring of ideas has been inspirational and heartwarming. At the same time there have been many efforts in a different area: research aimed at fighting the virus itself.

Getting to the root of the problem seems to have the most potential for ending this pandemic and getting ahead of future ones, and that's the "know your enemy" problem that the distributed computing effort known as Folding@Home aims to address. Millions of people have signed up to donate cycles from spare PCs and GPUs, and in the process have created the largest supercomputer in history.

But what exactly are all these exaFLOPS being used for? Why is protein folding something to direct so much computational might toward? What's the biochemistry behind this, and why do proteins need to fold in the first place? Here's a brief look at protein folding: what it is, how it happens, and why it's important.

]...] Protein folding research is central to our understanding of so many diseases and infections that even once we figure out a way to beat COVID-19, the Folding@Home network, which as seen such explosive growth over the past month, will not go idle for long. The network is a research tool well-suited to exploring protein models central to dozens of diseases that are related to misfolded proteins, such as Alzheimer's and variant Cruetzfeldt-Jakob disease, often incorrectly called mad-cow disease. And when the next virus inevitably comes along, all that horsepower, and all the experience being gained in managing it, will be ready to go again.

I thought I had a good general idea of what protein folding was. And then this article made clear that there was much Much MUCH more to it than I had imagined! I found it to be written at just the right level to convey information without going into the weeds with too much detail; highly recommended!

For those who haven't heard of it before, folding@home is a way for people to donate unused CPU cycles towards protein folding calculations. If you decide to participate, soylentnews even has a team that you can join!


Original Submission

posted by martyb on Tuesday April 14 2020, @11:33PM   Printer-friendly
from the management-induced-flight-into-terrain dept.

Boeing customers cancel staggering 150 Max plane orders, deepening crisis as coronavirus roils air travel:

Boeing customers canceled a staggering number of 737 Max orders last month, deepening the crisis the company faces amid the coronavirus pandemic and the continued grounding of its bestselling plane after two fatal crashes.

The Chicago-based manufacturer on Tuesday posted 150 cancellations of its beleaguered 737 Max jets in March, the most in decades, the company said. Brazilian airline Gol canceled 34 of the narrow-body planes and leasing firm Avolon scrapped orders for 75 of them, a move it announced earlier this month. Net cancellations in the month totaled 119 thanks to 31 orders for wide-body passenger planes and military aircraft.

That brought net orders Boeing removed from its order list in [the]first three months of the year to 307 planes, a sharp turnaround for a company that just over a year ago was aiming to increase output of its planes to meet strong demand.

[...] Boeing's airline customers are now facing the steepest drop in demand ever recorded because of Covid-19 and harsh measures like stay-at-home orders to slow its spread. The pandemic comes on top of the more than year-long grounding of the 737 Max after 346 people were killed in two crashes.

Alternate source: Yahoo finance

<no-sarcasm>
I wonder. If the 737 MAX had not been grounded, would those orders have been cancelled, despite the Covid-19 downturn in airline flights.
</no-sarcasm>


Original Submission

posted by martyb on Tuesday April 14 2020, @09:38PM   Printer-friendly
from the how-many-digits-in-a-real-number? dept.

In a number system where the real numbers could not have an infinite number of digits, how would our physics models change?

Does Time Really Flow? New Clues Come From a Century-Old Approach to Math.:

Strangely, although we feel as if we sweep through time on the knife-edge between the fixed past and the open future, that edge — the present — appears nowhere in the existing laws of physics.

In Albert Einstein's theory of relativity, for example, time is woven together with the three dimensions of space, forming a bendy, four-dimensional space-time continuum — a "block universe" encompassing the entire past, present and future. Einstein's equations portray everything in the block universe as decided from the beginning; the initial conditions of the cosmos determine what comes later, and surprises do not occur — they only seem to. "For us believing physicists," Einstein wrote in 1955, weeks before his death, "the distinction between past, present and future is only a stubbornly persistent illusion."

The timeless, pre-determined view of reality held by Einstein remains popular today. "The majority of physicists believe in the block-universe view, because it is predicted by general relativity," said Marina Cortês, a cosmologist at the University of Lisbon.

However, she said, "if somebody is called on to reflect a bit more deeply about what the block universe means, they start to question and waver on the implications."

Physicists who think carefully about time point to troubles posed by quantum mechanics, the laws describing the probabilistic behavior of particles. At the quantum scale, irreversible changes occur that distinguish the past from the future: A particle maintains simultaneous quantum states until you measure it, at which point the particle adopts one of the states. Mysteriously, individual measurement outcomes are random and unpredictable, even as particle behavior collectively follows statistical patterns. This apparent inconsistency between the nature of time in quantum mechanics and the way it functions in relativity has created uncertainty and confusion.

Over the past year, the Swiss physicist Nicolas Gisin has published four papers that attempt to dispel the fog surrounding time in physics. As Gisin sees it, the problem all along has been mathematical. Gisin argues that time in general and the time we call the present are easily expressed in a century-old mathematical language called intuitionist mathematics, which rejects the existence of numbers with infinitely many digits. When intuitionist math is used to describe the evolution of physical systems, it makes clear, according to Gisin, that "time really passes and new information is created." Moreover, with this formalism, the strict determinism implied by Einstein's equations gives way to a quantum-like unpredictability. If numbers are finite and limited in their precision, then nature itself is inherently imprecise, and thus unpredictable.

Physicists are still digesting Gisin's work — it's not often that someone tries to reformulate the laws of physics in a new mathematical language — but many of those who have engaged with his arguments think they could potentially bridge the conceptual divide between the determinism of general relativity and the inherent randomness at the quantum scale.

[...] The modern acceptance that there exists a continuum of real numbers, most with infinitely many digits after the decimal point, carries little trace of the vitriolic debate over the question in the first decades of the 20th century. David Hilbert, the great German mathematician, espoused the now-standard view that real numbers exist and can be manipulated as completed entities. Opposed to this notion were mathematical "intuitionists" led by the acclaimed Dutch topologist L.E.J. Brouwer, who saw mathematics as a construct. Brouwer insisted that numbers must be constructible, their digits calculated or chosen or randomly determined one at a time. Numbers are finite, said Brouwer, and they're also processes: They can become ever more exact as more digits reveal themselves in what he called a choice sequence, a function for producing values with greater and greater precision.

By grounding mathematics in what can be constructed, intuitionism has far-reaching consequences for the practice of math, and for determining which statements can be deemed true. The most radical departure from standard math is that the law of excluded middle, a vaunted principle since the time of Aristotle, doesn't hold. The law of excluded middle says that either a proposition is true, or its negation is true — a clear set of alternatives that offers a powerful mode of inference. But in Brouwer's framework, statements about numbers might be neither true nor false at a given time, since the number's exact value hasn't yet revealed itself.

In work published last December in Physical Review A, Gisin and his collaborator Flavio Del Santo used intuitionist math to formulate an alternative version of classical mechanics, one that makes the same predictions as the standard equations but casts events as indeterministic — creating a picture of a universe where the unexpected happens and time unfolds.


Original Submission