Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Submission + - Be nice - Batman is watching! (sciencealert.com)

Black Parrot writes: From ScienceAlert:

A new study has found that people are more likely to act kind towards others when Batman is present â" and not for the reasons you might assume.
[...]
Psychologists from the Catholic University of the Sacred Heart in Italy conducted experiments on the Milan metro to see who, if anyone, might offer their seat to a pregnant passenger.
The kicker? Sometimes Batman was there â" or at least, another experimenter dressed as him. The researchers were checking if people were more likely to give up their seat in the presence of the caped crusader.
And sure enough, there did seem to be a correlation. In 138 different experiments, somebody offered their seat to an experimenter wearing a hidden prosthetic belly 67.21 percent of the time in the presence of Batman.
That's a lot more often than times the superhero wasn't around â" in those cases, a passenger offered a seat just 37.66 percent of the time.
[...]
"Interestingly, among those who left their spot in the experimental condition, nobody directly associated their gesture with the presence of Batman, and 14 (43.75 percent) reported that they did not see Batman at all."

The article goes on to speculate about what is causing people to be more generous.

Comment Re:And in what region did they test this new featu (Score 1) 18

Which of course also conveniently earns them $$$ when there is significant data traffic from deployments in us-east-1 to deployments in other regions.

Except for us-east-2. Traffic between us-east-1 and us-east-2 costs the same as traffic within us-east-1.

Comment Re:Puppetmaster is hidden (Score 1) 47

Another thing is China kind of "herds" factory workers in a way the US cannot. For example, they limit housing options near factory towns so the space can be dedicated to factories, large-scale NIMBY-ism. If a company folds, workers' temporary mini-housing makes it logistically easier to move to a new town, but it's hard on families.

Thus, biz owners have a kind of de-facto slave class that's relatively easy to shift around as needed.

This is also a form of subsidizing industry. China has managed to combine capitalism and communism in ways that give it an advantage, or at least keep it a manufacturing superpower.

Comment Re:Google? wtf (Score 1) 68

As mentioned elsewhere, spreadsheets are probably the wrong tool for the for that particular job. Just because one can make a giant sheet in a spreadsheet tool doesn't mean they should. It won't have sufficient indexes to quickly do JOINs or equivalent, for example. Nor proper caching of a data, having more of a file-centric design.

Comment Change happens (Score 1) 68

For one, if a handful of work-groups need Excel, that's not a reason for the rest of the company to use Excel. Most Excel uses will be mundane things. They can allow justifiable exceptions.

but the financial staff know Excel and they know it very, very well.

Software tools/frameworks I knew well were ordered tossed because the vendor or support structure faded. It happens. Why are financial people given that latitude when almost nobody else is? Change is annoying and creates a learning curve, but inevitable in the work-place. I knew cases where employees quit over frustration over replacement-ware, but management said "we are doing it anyhow, live or leave" (paraphrased).

And I'm surprised there are not products dedicated to big org financial analysis. There might be, but "we don't wanna learn something new" lobbying may be stopping it.

Excel probably has other scaling problems they didn't mention in the article but just learned work-arounds, yet they are likely stretching Excel to its limits risking more problems, familiarity or not. Oracle Essbase allegedly is a big-org financial modelling tool. I don't like Oracle the company, but Essbase & competitors may be a better tool for that particular job. See what other big orgs use.

Comment Re:Really? (Score 4, Insightful) 82

automated image pattern matching has been around for decades

The problem is that the LLM only does one trick. When you start integrating other software with it, the other software's input has to be fed in the same way as your other tokens. As the last paragraph of TFS says, "every clock check consumes space in the model's context window" and that's because it's just more data being fed in. But the model doesn't actually ever know what time it is, even for a second; the current time is just mixed into the stew and cooked with everything else. It doesn't have a concept of the current time because it doesn't have a concept of anything.

You could have a traditional system interpreting the time, and checking the LLM's output to determine whether what it said made sense. But now that system has to be complicated enough to determine that, and since the LLM is capable of so much complexity of output it can never really be reliable either. You can check the LLM with another LLM, and that's better than not checking its output at all, but the output checking is subject to the same kinds of failures as the initial processing.

So yeah, we can do that, but it won't eliminate the [class of] problem.

Comment Re:Big, BIG companies should know better (Score 1) 68

(Shuffles off and mutters something about how does a greybeard get Vulture Capitalist funding to setup cross continental niche cloud for people that value stability over shiny, with Open Source ... Open Stack ... Cloudified LibreOffice, Ceph, my lawn)

Every tech company needs at least three things to start with: The business guy, the brain, and the lawyer. Ideally there should also be a marketing guy, but you can add them in later. Also, none of them have to be male, I just like saying "guy", buddy.

Comment Re:Excel is a platform. (Score 1) 68

Untrained? Excel is a spreadsheet tool within the MS Office suite with 27,000 features. It requires a tad more training than handing a moron a hammer

Yes and no, depending. If you are building an application in Excel, yes, all you said is true. If you are using one, no, none of it is. Spreadsheets can be set up such that the user just stuffs data into them where they are supposed to, then clicks a button to get results. Or maybe they don't even have to hit a button.

For the simplest useful example I can think of, I put together a spreadsheet which produces a table we use for asset valuation. This spreadsheet changes every year. If you load my spreadsheet, it will be correct for the current year. No user has to think about that at all, they just load it and get a correct table. You can extrapolate this to basically any level of complexity because Excel has VBA and you can script everything. The user just follows instructions, and they aren't even allowed to edit any cells which could break anything.

Comment Re: Alibaba (Score 1) 32

In case anyone is going this far down the hole, it turned out great. Even though the item was shipped from the US, because the seller didn't respond I got a refund without having to return it.

So far Aliexpress has been responsive to 100% of my issues and I only have needed to be a little patient and not expect everything to be solved immediately or arrive immediately.

Comment Re:Google? wtf (Score 4, Interesting) 68

20 million cells? That seems ridiculous. Why aren't they using a database for something that huge?

I agree that a database-backed application is the right way to go for that much data. However, Finance used Excel because they could. We all like to talk about how bad an idea it is to do that, but Excel brought financial computations on large data sets to people who can't write any code. It has enabled thousands upon thousands of businesses to do things they couldn't do before without paying a programmer to develop a solution they cannot maintain. The fact that other spreadsheets regularly crater when handed data that Excel has no trouble with is exactly why we have so much Excel.

I like to use Drupal to rapidly create database applications which can handle a lot of data without writing code. But I wouldn't expect someone in accounting to be able to do that at all, and that just shifts the problem domain. Instead of getting stuck with Excel, now I'm getting stuck with Drupal. All of the logic just winds up in a different system that you can't trivially transfer it out of, so you have the same exact maintainability problem, except more people know how to work with Excel.

Comment Giant spreadsheets are a sign of morons (Score 5, Insightful) 68

Finance, for example, still relies on Excel because Google Sheets can't handle the necessary file sizes, as some spreadsheets involve 20 million cells. "Some of the limitations was just the number of cells that you could have in one single file. We'll definitely start to remove some of the work," Jestin told The Register.

Time for a database, people. You are using the wrong tool for the job.

Slashdot Top Deals

If you steal from one author it's plagiarism; if you steal from many it's research. -- Wilson Mizner

Working...