* Posts by bombastic bob

10282 publicly visible posts • joined 1 May 2015

Where's the best place to add Mentos to Diet Coke for the most foam? How big are the individual bubbles? Has science gone too far?

bombastic bob Silver badge
Boffin

Re: Cool waste of time

soda fizzing depends on the temperature of the soda due to solubility of CO2 in water and the equilibrium reactions involved. So it needs to be the same in each experiment. The Chem teacher knew this, of course.

bombastic bob Silver badge
Devil

Re: efficient insertion of Mentos is key

if I could do an instantaneous release I could build a soda bottle rocket with the mentos-diet-coke reaction.

The idea would be to cap the bottle with the mentos [and release mechanism] inside, using a 'rocket engine' cap [of my own design], and use some kind of pull-string arrangement (through the nozzle). Then you pull the string to launch it. I've already got a nice nozzle design, complete with fin/legs to spin it, as OpenSCAD files that can be 3D printed, if anyone wants to look on github for them. Maybe it could help El Reg launch another space plane?

bombastic bob Silver badge
Boffin

Re: The Diet Coke bottles were kept at 27 degrees Celsius (80.6 degrees Fahrenheit)

the curve for dissolved gas in water isn't linear. The maximum point is around 2 deg C, with a minimum of around 60C (as I recall), but then it increases again after that, assuming you apply enough pressure to the water to stay liquid, so that very hot water under pressure can hold onto even more dissolved gas than 34 degree water at 1 atmosphere pressure. Or something like that. And according to a few online references, several types of gasses have different curves and minimum points. In general, however, it follows the pattern I described. But none of the online references bothered to extend the curve past the boiling point at sea level atmospheric pressure, because they're not concerned about managing the water chemistry of a pressurized water nuclear reactor...

Boeing 787s must be turned off and on every 51 days to prevent 'misleading data' being shown to pilots

bombastic bob Silver badge
Devil

Re: How long does it take to reboot a 787 ?

typically VxWorks will come up really fast.

a) you compile it for your hardware - so no driver loading and/or hardware detection

b) it's an RTOS and not a monolithic kernel. Startup and scheduling are different. You could easily optimize restart times [let's say in-flight reboots being made possible].

c) the processes would all be compiled in, so no program loads either, as far as I can tell. This could be wrong, based on what they might be doing, but I suspect it'll be like it was for wifi routers with VxWorks, which is what I worked on - wireless, networking, WPA, asynchronous packet handling, stuff like that.

So yeah maybe it boots up in under 5 seconds? Possibly boots up even faster than THAT...

bombastic bob Silver badge
Devil

Re: Windows Server 2000

"Seeing the real problem"

someone already posted a valid suggestion - millisecond rollover, and an algorithm to test for periodic timing that was poorly written. [during rollover you might end up with a "storm" of data collection for a brief period of time, as one example, or NO DATA COLLECTED AT ALL - even worse]

Again, my working with microcontrollers has already gotten me to discipline myself with respect to these kinds of maths so that the controller can run for MONTHS unattended, as you would expect it to, and not have a rollover issue after 49.71 days, or anything reasonbly close to that, depending on whether your millisecond timer is actually happening every 1.024 milliseconds...

bombastic bob Silver badge
Coat

Re: Windows Server 2000

maybe they had it working on the ultimate answer (or the ultimate question)

bombastic bob Silver badge
Devil

Re: Millisecond roll-over?

I've run into that problem (32-bit millisecond timer rollover issues) with microcontrollers, solved by doing the math correctly

capturing the tick count

if((uint32_t)(Ticker() - last_time) >= some_interval)

and

last_time=Ticker(); // for when it crosses the threshold

[ alternately last_time += some_interval when you want it to be more accurate ]

using a rollover time

if((int32_t)(Ticker() - schedule_time) >= 0)

and

schedule_time += schedule_interval (for when it crosses the threshold)

(this is how Linux kernel does its scheduled events, internally, as I recall, except it compares to jiffies which are 1/100 of a second if I remember correctly)

(examples in C of course, the programming lingo of choice the gods!)

do the math like this, should work as long as you use uint32_t data types for the 'Ticker()' function and for the 'scheduld_time'; or 'last_time' vars.

If you are an IDIOT and don't do unsigned comparisons "similar to what I just demonstrated", you can predict uptime-related problems at about... 49.71 days [assuming milliseconds].

I think i remember a 'millis()' or similarly named function in VxWorks. It's been over a decade since I've worked with it though. VxWorks itself was pretty robust back then, used in a lot of routers and other devices that "stay on all the time". So its track record is pretty good.

So the most likely scenario is what you suggested - a millisecond timer rolling over (with a 32-bit var storing info) and causing bogus data to accumulate after 49.71 days, which doesn't (for some reason) TRULY manifest itself until about 51 days...

Anyway, good catch.

Automatic for the People: Pandemic-fueled rush to robo-moderation will be disastrous – there must be oversight

bombastic bob Silver badge
Trollface

Re: @SVV

your ROT13 auto-translate is broken

bombastic bob Silver badge
Devil

Re: grep is cheap

I like to do things such as poking fun by using the 'F' word *FEEL* in place of a DIFFERENT 'F' word, and it's obvious to everyone what I really mean. So nanny-bots won't pick up on 'FEEL'. I've also seen 'onion' jokingly bot-swapped for the word 'soy' in one particular forum.

The obviousness is that bot-nanny-moderator-artificial-STUPIDITY ain't gonna work.

DARN that CRUD, *FEEL*ing mentally challenged "Twitterers" !!!

^^^ example

(and don't forget the spelling errors b0rking the filters)

NASA's classic worm logo returns for first all-American trip to ISS in years: Are you a meatball or a squiggly fan?

bombastic bob Silver badge
Trollface

Re: Meatball

uncrewed space missions are like haaving sex through VR and video games.

bombastic bob Silver badge
Devil

Re: Meatball

yeah, the old meatball logo looks more "science fiction"-y than the worm.

Cloudflare family-friendly DNS service flubs first filtering foray: Vital LGBTQ, sex-ed sites blocked 'by mistake'

bombastic bob Silver badge
Trollface

Re: Cloudflare won't say what "adult content" is

"you don't want your 5 year old watching a 15-rated movie by accident, but you'd probably have no problem with your 15 or 16 year old watching it."

5 year olds wouldn't WANT to watch something targeted at adults or even teenagers, as a general rule. At least, none of the 5 year olds I've ever seen... (they'd wanna see disney stuff, over, and over, and over, and over, and over, and ...)

as for 15 or 16 year olds, if you've already taught them to make reasonable decisions on such things, let them watch what they want. Chances are they won't choose to watch the pr0n and offensive stuff... [because they won't be rebelling - heh]. But that takes some up-front trust-building and early education, and treating them as if they're responsible already [the pygmalion effect - yeah].

bombastic bob Silver badge
Boffin

Re: So?

I figured it was an opinion anyway, but it WOULD be interesting to see some science.

I'll put some science in here regarding male homosexual sheep, who were born with part of their brains "female sized" - a part responsible for aromatase metabolism with respect to testosterone, as I recall. These sheep had clear developmental differences in their brains, which was directly linked to their behavior (homosexuality). That being said, it's most likely a propensity and not a guarantee, but even so, becomes an actual medical issue of possible "female brain in a male body". And that's what I think the "what's wrong is the body" statement is really referring to.

So ^^^ there is some science. Does it help?

bombastic bob Silver badge
Unhappy

Re: So?

"Trans children from conservative SOME religious families may need help from outside sources"

I'd agree with the fixed version. Overgeneralizations about conservatism aren't helping [just as overgeneralizations about gay and trans people aren't helping].

Being 'different' is something you have to deal with all of your life (learn and master martial arts at a young age, and be confident - I suggest THAT for ANYONE).

Being a genius in a world of 'normals', believe it or not, can be JUST as frustrating... maybe even WORSE! (Flowers for Algernon - Charlie was "different" and socially isolated at both ends of the intelligence spectrum, but at least when he was mentally disabled, he was happy).

bombastic bob Silver badge
Devil

Re: So?

Understandable AC, but how much effort must the REST of the world make in order to satisfy the apparent needs of the trans community? How come "live and let live" is NOT the solution? You cannot change others, but you CAN change yourself. By being as unoffensive as possible you will greatly help your cause, because people will see you as an example of a trans person and say "I know someone..." and be less likely to be prejudiced, bigoted, offensive, etc. towards trans-people in general.

[this applies to religions, too - if members of a particular religion, let's say Westboro Baptists, show the world that they're no longer hating specific groups of people (a very un-christian thing I might add, captain obvious says) but instead are doing good things without compromising their religion, people would be more tolerant and even accepting of them]. OK they're probably not ready to do a gay or trans wedding, but still... and as far as I'm concerned, bigotry is a form of avarice which is ALSO a sin. So if they reject people for ONE type of sin, they should reject themselves for the OTHER kind, too.

ok captain obvious isn't helping now, so no need to thank him. heh.

bombastic bob Silver badge
Childcatcher

Re: So?

if it's a voluntary service that PARENTS want, I agree with giving it to them. Generally, however, I think it's better to deal with it like this: warn your kid about the internet, trolls, pedos, child exploiters, whatever, and just say "there is a LOT of stuff on the internet you really don't want to see, really disgusting shock sites, bizarre human behavior, sick and disgusting things like pictures of somebody's crap, and the kinds of things you really don't want to fill your mind with. There's not enough brain bleach etc. etc. etc.".

Then you kinda monitor what's going on, but keep the channels open. Seriously, if you treat a kid as being responsible, and give him the knowledge and parental availability for making rational decisions on his own, chances are he WILL make rational decisions on his own at an age where you still have a LOT of influence, and that's likely to last the rest of his life.

Either that, or shelter your kid like a "preacher's kid" might be and watch ALL HELL break loose when he turns 18 and discovers porn, sex, drugs, bizzare human behaviors, and so on (kinda like what OFTEN happens to PKs in college or in the military).

(ironically chosen icon)

Amazon says it fired a guy for breaking pandemic rules. Same guy who organized a staff protest over a lack of coronavirus protection

bombastic bob Silver badge
Devil

Re: Unions? who needs them?

*ahem* all you need to do is complain to OSHA within the USA and they'll take care of any workplace safety issues. Managements comply with OSHA because they *FEAR* OSHA and for good reason.

Does UK have a similar oversight/regulation ministry? Just curious... [I would expect so]

Every time I consult I check for OSHA compliance that I'm aware of, just to make a point. Typically I'll just tell them "you need a XXX to comply". [I do this with lots of things, GPL even]. Last time I ran into this the company had no eyewash but was working with chemicals. But it was in the owner's garage, so what can you do? Needless to say, entry/exit was too dark at night (in an alley, through an old door), parking was pathetic, but it was a startup and it paid. So there ya go. Later they got an office and several regular on-site employees. Then later after that, lost funding. Ah, well.

(but yeah you needed eyewash and fireproof lockers and other OSHA compliance things to work with chemicals like finishes and polymers and fiberglass and ... you get the idea)

bombastic bob Silver badge
Unhappy

Re: Wow!

"Indeed, and all it shows is that Bezos is just another repressive tycoon who cares not for human health or welfare."

to assuage his own guilt, like so many rich liberal types in his kind of position, he'll gladly donate zillions of dollars to various "charitable causes" [but I would suggest that many such 'charities' are _REALLY_ "buying something" after all...]

bombastic bob Silver badge
Devil

Re: Unions

unions like Teamsters more or less gave unions a bad name.

A good union will provide the employer with skilled labor at a reasonable price, manage the payroll and benefits and vacations and absences and seasonal temporaries and training and labor relations and OSHA and all of that OTHER "HR Crap" that is SUCH a pain in the butt.

A bad union strikes for ANY reason and asks for too much money from the employer to the point where people get fired or the company goes out of business (right Hostess? San Diego operations closed down and Hostess had to sell their business to 'Little Debbie', who has turned it around, but apparently NOT in California, where wages would have had to be too high).

So yeah the 'need' for a union in general (rampant widespread exploitation and unsafe working conditions) has been generally prevented by other gummint regulations. But the 'good' aspects of a union would make them worth keeping.

/me points out that if I were to build a factory someplace, I'd contact the local unions and look for good prices, or at least get an idea of what the prevailing wages are and weigh it against the value added by a union force vs the possible additional cost.

bombastic bob Silver badge
Devil

Re: One Sided Reporting

correct. and those are only the KNOWN infections.

It is quite possible that back in December and January, when travel between U.S. and China was still open and on-going, that a LARGE number of asymptomatic people (and a few symptomatic ones) traveled with Corona Virus from China to the USA and landed in California, exposing California to the virus back in December and January [when I quite likely would have been exposed].

Back in December, the company I've been doing contract work for had a manufacturing related problem with a piece of equipment that's important to a new contract. To improve quality, they sent a few engineers to China [not sure where, I did not go] where they worked on getting the assembly-related issues and some design issues resolved. So far so good, right? After coming back, one guy was feeling kinda sick [I was in the office that day] with symptoms similar to Corona virus. I jokingly said that he'd make all of the rest of us sick, too, even though we were all 'generally careful' to not be exposed. But a week or two later, I had mild symptoms similar to what is describe for Corona Virus [and so did my kid, who still lives with me as an adult]. AFTER that was over, Trump issued the travel ban to China when they disclosed that the virus was spreading in Wuhan and they were trying to mitigate it. No blame, just fact.

And so, did I get Corona Virus? I think I did. And so did anyone I came into contact with, mostly grocery stores and other people at the office. But there were NO KNOWN CASES of this virus being published in the news. And yet, it was probably HERE.

And so, have people in California ALREADY been largely exposed to the Corona Virus? Not from me (or my co-worker) per se, but by the MANY THOUSANDS of people who were flying back/forth to China over that 2-3 month period from November 2019 through January 2020.

Given THAT, what are the NEW projected numbers for fatal corona virus cases? They might be a whole lot LOWER... [and if there's a test for Corona Virus antibodies, and I "pass", I should be able to return to work on-site, right???]

bombastic bob Silver badge
Thumb Down

Re: One Sided Reporting

if that were the case I wouldn't read it

bombastic bob Silver badge
Devil

Re: Troll

I would've been one of the first to criticize this if it were truly one-sided. It does leave questions in my mind, but this is an ongoing story that I expect to see more info on as time moves forward...

[not sucking up, seriously not, heh]

Now, if we could just get CA's "governor in name only" NUISANCE (and other states) to stop it with shutting down the REST of our jobs, some of which just can't be done off site [or depend on on-site people to make the work possible], we'd be much better off. I wouldn't mind practicing social distancing on site, but I want the OPTION TO BE ON SITE. [now that the supply lines for medical supplies are going into place and extra hospital beds being made available, it's time to GO BACK TO WORK].

That being said, our Amazon employee in question, who MAY have been fired for complaining too hard, should at least have been grateful for being able to SHOW UP for that job... unlike SO many others right now!

And, of course, Amazon shouldn't be firing whistle-blowers. Additional investigation into this is welcome.

Tech's big names start to disclose possible bottom-line coronavirus impacts

bombastic bob Silver badge
Mushroom

biggest losers from "shutdowns"

The biggest losers from an economic shutdown caused by the desire of gummints to be "unnecessarily safe" from ourselves [instead of practicing safer work habits like the grocery store employees are doing, we have to SHUT! DOWN! INSTEAD! - very very bad policy], the biggest losers are the ones who hire MORE people than large companies: small and startup businesses.

Those are the ones _I_ typically work for as a contractor. Small business wants to create a new product, or meet requirements for a sales contract. Contractors do the work, particularly engineering things. And when THOSE companies are SHUT DOWN, guess what happens? That's right, *ENGINEERS* have to *STAY* *HOME* *WITHOUT* *PAY*. And right now, THAT is a LOT of people! Sure, 'work from home' is common with this kind of business, too, but when you need to actually MEET with people to make decisions, or test designs, etc., THAT part is completely SHUT DOWN, and REALLY getting in the way of small and startup businesses STAYING ALIVE.

"Big Business" will take advantage of "gummint pork", and say "we can weather this", while SMALL and STARTUP businesses will often GO UNDER. [no wonder the big boys don't complain, they can watch their potential competition VANISH for a while].

And Independent Contractors will have to "absorb" the out-of-work-time (that's 'small busines' too, by the way). OK it's typical for contractors to go through periods of "out-of-work-time" but when you HAD a good contract, and it gets KILLED by GUMMINT, it STILL pisses you off!!! And I hate looking for work, it's SUCH a pain in the ass. I'd MUCH rather stick with a contract I'm familiar with for as long as it can last.

Delivery drones: Where are they when we really need them?

bombastic bob Silver badge
Devil

Re: Delivery drones of the future...

For a 'delivery blimp' you need a LOT of volume in the gas bag if you use helium. But, GOOD NEWS! A _hydrogen_ blimp takes only half as much volume in the gas bag as Helium. Nevemind that whole Hindenberg thing... that's just "old news" [heh]

bombastic bob Silver badge
Devil

Re: Not gonna happen.

"Perhaps when someone discovers the anti-graviton"

I actually figured out (through various maths) how to create gravity waves, essentially by spinning a heavy gas within a super-strong magnetic field at a high rate of rotational speed (approaching relativistic velocities). To be useful, it would probably require a prohibitively large amount of power, an impossibly strong magnetic field, etc.. But it would look an awful lot like the magnetron in your microwave oven. That being said, if the drone were the size of a 'big rig' [and consumed even more fuel] then MAYBE it could be done...

Maybe anti-grav could be "the next thing" after fusion power plants have been successfully operating for >100 years...

bombastic bob Silver badge
Unhappy

Re: "Futurist predict"

"small towns do not have the money to bury all wires and get rid of them in one go"

San Diego has had a budget for "undergrounding" the wires since the 90's. In fact, back when the 'Tank Guy' went on a rampage with a stolen tank, knocking over power poles and running over cars and fire hydrants, I called into a radio station and mentioned that if the power poles had been 'undergrounded' in front of the National Guard Depot he stole the tank from (I lived very close to there at the time) then my power would not have gone out for several hours. Needless to say (I suppose but I'll say it anyway) the wires STILL have not been "undergrounded", because, politics. Problems with my phone line (on a telphone pole, naturally) over the last decade just underscore that fact even more.

The problem: gummint and political correctness. The city (or a lawsuit, or SOMETHING) apparently "requires" that a POOR NEIGHBORHOOD be 'undergrounded' for every alleged RICH NEIGHBORHOOD. This means that utilities can't just coordinate doing large chunks of the city efficiently. Oh, NO, you have to work in WHO lives there and political correctness... and so NOTHING! GETS! DONE!!!

That means wires wires wires and drones beware.

bombastic bob Silver badge
Trollface

Re: Er ...

yeah I wonder what would happen if a 5lb box of 'stuff' were to fall 200 feet onto a car... sorta like a boss's nephew or unwanted consultant falling out of a 3rd floor window?

(a new definition for "air mail")

What's the difference between Windows 7 and a bin lorry? One is full of garbage, and the other… oh dear

bombastic bob Silver badge
Devil

Re: More to the point.

"Why do you need a bloody great digital signage on the side of a bin lorry?"

because people will be [insert tragedy here] if they don't find out about unpopular city services, and/or the trash collection services needs the ad revenue. so they can [profiteer, retire early on a fat pension, pay people way too much money to pick up trash ...]

yeah ti'll get justified somehow. Actually I wouldn't mind seeing that around here, as long as ad rates were cheap and I could make use of 'em - perhaps a pic of my naked posterior?

If you've ever wished Visual Studio Code could be more open source, the Eclipse Foundation would like a word

bombastic bob Silver badge
Devil

UI performance issues

just because we are using desktop machines that are 100 or more times as powerful as NASAs computers back in the 60's when we went to the moon does NOT justify writing hyper-inefficient Node.JS "code" for a user interface...

Eclipse's Java code was always a little klunky from my point of view, but after 20 years of hardware improvements it became usable. Similarly, the Intelli-J interface (used by Android) is also a bit klunky, but usable. These were written in JAVA, and _NOT_ JAVA SCRIPT. A clear distinction should be made.

in any case if the Eclipse tool discussed in the article is NOT "scripty" but instead uses actual Java code, I might be impressed. It's worth a look at least. I should devote some time to looking at it. Yep. Need to do that.

Seriously, though, JUST BECAUSE COMPUTERS ARE FAST does _NOT_ mean you can use a SCRIPT LANGUAGE for a UI!!! And I'm talking to _YOU_ Microsoft...

Are you extracting the urine, ESA? Why, yes it is, from Moon dwellers to build homes out of lunar regolith. Possibly

bombastic bob Silver badge
Devil

Re: nasa needs my help

since it's filling up the inside of a tunnel it reminds me of another product, often made of latex...

But yeah, portable inflatable houses are probably the first to be put there. They don't shield against radiation very well, though. However, dirt and concrete are pretty good, requiring about 1 foot per tenth thickness (where lead and steel are 1 and 2 inches, respectively). Basic idea, for every foot of regolith-crete, you'd reduce radiation by a factor of 10. You'd need about 2 feet of it to lower to 1% of what it is outside the enclosure, which would most likely be acceptable for normal humans and long-term stay.

One source suggests that radiation levels of 38REM/year (380mSv for people who were roped into using the 'new, shiny' units) are typical, and it can get as high as 100REM if there are coronal mass ejections and things of that nature. Yes, bad. 100 REM is considered a fatal dose if you get it in a short period of time. Spread over a year, you'd survive, but probably get cancer or something equally bad, and you'd probably feel sick a lot.

So 1 percent of THAT would be 380mrem/year, which is acceptable. That's about 4 times normal exposure on earth when you consider air travel, medical X rays, and other things. Radiation workers in the USA can receive up to 5 REM per year (50mSv) as occupational exposure, or at least that's what the limits were years ago when I learned about such things. Funny thing, when I was on a NUCLEAR sub back in the day, the shielding was good enough that I got LESS radiation than I normally would, and i was within 150 feet of an operating nuclear reactor most of the time...

anyway, enough science. Back to the snark and potty humor.

bombastic bob Silver badge
Pint

Re: Why ever?

I'm sure there are other nitrate-based chemicals that an be imported for that occasional need of ammonia or nitrate-based fertilizer, in larger quantities than human kidneys can produce.

This does beg the question, HOW MANY people and HOW MUCH BEER would be involved in such a construction project on the moon? I know construction workers would appreciate the beer, and no doubt give willingly of the precious pee in order to move the project forward.

Establishing a brewery on the moon, though, might make it all worth while.

Moon Brew! Regolith Ale! Luna-brau! OK I'll stop now...

bombastic bob Silver badge
Coat

Re: we have seen that a waste product...could also be used

marking our territory like dogs with fire hydrants...

bombastic bob Silver badge
Devil

Re: What goes around comes around

I'd think a portable air-filled tent would do it (to shield against vacuum while concrete cures).

bombastic bob Silver badge
Devil

Re: What goes around comes around

I've heard "make it out of glass" - since regolith is basically SiO2 and Al2O3 (and apparently other things like Titanium) it should be possible. i don't know what effect the Al compounds would have on the glass making though. It'd be a worthwhile experiment to try making moon-glass, see if it's worthy as a construction material. If properly heat treated and thick enough, it'd make an interesting dome, wouldn't it? If nothing else, THERE's your bricks for the piss-n-regolith concrete.

bombastic bob Silver badge
Devil

Re: ESA have been working on urine recyc for years on the ISS

"smells like an uncleaned nightclub toilet "

I was thinking "gasoline station" but yeah...

Might also help to spike that mixture with some CAO (aka lime) which would let them make regular old concrete. But I guess the idea was to use "lunar-only materials" so unless there's a limestone quarry on the moon, they're stuck with regolith and piss.

Remember that clinical trial, promoted by President Trump, of a possible COVID-19 cure? So, so, so many questions...

bombastic bob Silver badge
Thumb Down

Re: Donald Jenius Trump

I bet your opinion would be OPPOSITE if someone like OBAKA had said it was a cure...

this certainly would NOT pass the "shoe on the other foot" test.

bombastic bob Silver badge
Meh

I don't anyone doubts the need for proper trials. however, you also have to consider how many physicians are now trying this out on their own, and some (in New York City, specifically) have been indicating that they have promising results of having done so. Anecdotal evidence is NOT a clinical trial , but it IS evidence, and should be considered when making the choice between getting that particular medicine, or dying (so yeah only the sickets patients would be given something that is 'experimental').

For most people, of course, they won't need it.

Keep in mind that clinical trials can take YEARS and as such, won't be very helpful *RIGHT* *NOW*.

California emits latest layoff statistics. March's numbers are ugly. It's 19,000 total, including many in tech

bombastic bob Silver badge
Mushroom

Cali-fornicate-you governor "Nuisance" is an IDIOT

"Nuiscance" is an IDIOT. And Cuomo of NY is only *slightly* better.

You could deal with all of this *WITHOUT* (effectively) shutting EVERY COMPANY DOWN STATE WIDE. if this shutdown goes on for as long as is indicated (through end of April) then the already-strained-by-liberalism Cali-Fornicate-You economy will become *COMPLETELY* *FSCK*'d.

Not every business (particularly engineering) can be done 'work from home' style. I can do about 75% of my work that way for my current client. The OTHER PEOPLE I need to work with, however, can't do that. It's severely impacting that company, and I _KNOW_ there are others like it.

The fact remains, that COVID-19 _is_ worse than flu, but it is *NOT* black plague nor EBOLA. The response to it is being TAKEN WAY TOO FAR!!! [and the lame-stream media is FEEDING THE FEAR AND PANIC]

It's LUDICROUS to shut down ALL companies across a state [or a country for that matter]. _NO_ amount of gummint "help" can mitigate this. The only REAL choice is to rely on people being smart, and to make sure that there is enough "stuff" available for when people DO get sick. That's just the way diseases are, and HERD IMMUNITY (from people who have caught the disease and recovered) will eventually fill the gap whenever a vaccine does not exist. And practicing common-sense techniques like the 'social distancing' thing is probably the MOST effective.

(for those who are most susceptible, it makes more sense to partially quarantine THEM as well as guaranteeing there is sufficient medical treatment, rather than SHUTTING DOWN EVERYONE ELSE in a PANIC "do something" OVER-REACTION).

I really am SICK of the FEAR AND PANIC part of this. The virus itself [I may have already HAD the thing - co-worker at customer site came back from China in December, got sick, probably gave it to me, and I had a mild fever a couple of times afterwards...] causes flu-like symptoms, MILD ones at that, in MOST people. A few people get a nasty pneumonia which is no doubt complicated by bacteria infections which is probably what kills you [this is how flu kills]. Bacterial pneumonia is serious and often requires hospitalization. So this is where the concern is, that there's a higher death rate than influenza. But it is _NOT_ EBOLA. It does NOT kill EVERYONE. And if you get treatment, it is highly likely you will survive it. THAT much is being helped out by gummints, getting the supplies and hospital beds ready. ONCE THAT HAS BEEN DONE, then EVERYONE SHOULD GO BACK TO WORK!!! We will at THAT point be *PREPARED*. There is a promising treatment AND supplies of ventilators and masks are being produced by many companies to meet the demand. IT IS TIME TO END THE SHUTDOWNS, RIGHT FORNICATING NOW!!!

This whole SCARE has gone WAY too far already. Common sense and "deal with it like the flu". The death rates are already being revised at SIGNIFICANTLY below the fear-mongered 3 percent level. And flu season is ALMOST OVER. There is NO NEED to screw the world's economy (unless you LOVE chaos because you're a COMMUNIST and want to TAKE OVER) over this.

Just make sure we have enough equipment and medications for hospitals to treat patients. A 'short pause' probably already bought enough time for THAT, so we should JUST! MOVE! FORWARD! with COMMON! SENSE! approaches now. NO! MORE! PANIC!!! NO! MORE! SHUTDOWNS!!!

(yeah I'm working at home at the moment, not impacted in the short term, but OTHER PEOPLE I KNOW ARE IMPACTED, and it SUCKS)

What happens when the maintainer of a JS library downloaded 26m times a week goes to prison for killing someone with a motorbike? Core-js just found out

bombastic bob Silver badge
Stop

Re: JS lib house of cards - you ARE the weakest link!

fortunately, the number of 'heartbleed like' cases in the world of software support has ALREADY gone BELOW the number of NodeJS issues *caused* by this "cloudy fragile opposite model" of deploying libraries...

Some DLL Hell issues back in the day were actually CAUSED by Microsoft! One case, ODBC using the MFC DLLs _BROKE_ with Win '95 OSR2 and NT 4, and would have also been broken in Win '98 when it released. The cause: they change the ABI so that it was INCOMPATIBLE with earlier versions of their C++ compiler, when they'd been RECOMMENDING to people to "use the shared libraries" (and you STILL find that as the DEFAULT when you create a new project - you have to EXPLICITLY GET RID OF IT - that and ".Not" bindings, which are _WORSE_)

I fixed the problem by creating my OWN versions of their DLLs [which were required due to me mistakenly following ANOTHER one of their recommendations, too late to change it] with different names, defeating the whole purppse of having shared libs in the FIRST place, and ALSO teaching me a VALUABLE LESSON about their SERIOUS disadvantages!

(at the 1997 PDC I bent the ear of more than one engineer over the details of this specific issue, even one very senior guy that looked a lot like Nadella from what I can remember... not sure if he even worked for MS in 1997 but who knows, could've been him)

The point, in any case, is that I'd MUCH rather deploy a fix to my application for those RARE cases where something like 'hearbleed' has been found, than to take a chance that SOME FRAGILE COMPONENT was "updated" and CAUSED something WORSE.

So far the "something worse" has more than proven that static linking is better from a customer support perspective. But it DOES mean you have to be able to rapidly respond.

And the alternative would be to make it open source so that end-users COULD recompile on their end with the new libs. (the package maintainers on Linux distros and things like FreeBSD typically do that on our behalf).

(I guess it's worth mentioning that applications shipped as BINARIES would be statically linked - those shipped as source, or compiled by package maintainers for various OS distros, could still dynamically link if that makes sense - but another advantage of static link is IMPROVED LOAD TIMES, and so I'm inclined to do that by default even when built from source)

That awful moment when what you thought was a number 1 turned out to be a number 2

bombastic bob Silver badge
Devil

my first experience with Lotus 123

I took over a friend's entry level position in the late 80's. One of the things he'd done was create a Lotus 123 spreadsheet to track "buy cards".

The thing is, spreadsheets back then had a macro language that was somewhat primitive, and he'd never gone past the keystroke method.

Me, being an efficient typist, would often "type ahead" so that I wouldn't have to wait for things.

I did a "type ahead" one time in that spreadsheet, and the macro went NUTS and overwrote a whole BUNCH of data, including the MACRO ITSELF!

The first time that happened, my friend was still there to fix it. Unfortunately "auto save" was part of that macro, as I recall, so "fixing ti" could be rather "involved".

Needless to say after he left I accieentally killed it AGAIN, but having been so fragile I actually bothered to learn about protected cells, advanced spreadsheet formulas, and proper macro programming and fixed it properly. Then its need disappeared... so it was all just a waste of time after all!

(later I used that position as a stepping stone to an IT career, by producing a weekly report that used to take an entire WEEK, in about 3 hours, automatically starting 2 hours before I arrived monday AM, so I could monitor the printout in case it jammed - after 2 hours of copying and distributing it, I had an additional 37 hours to do "whatever" which became actual programming and data analysis - all good!).

Microsoft staff giggle beneath the weight of a 52,000-person Reply-All email storm

bombastic bob Silver badge
Devil

Re: Bcc FTW!

depending on the mail reader, you can probably disable that button on that particular computer as part of an "upgrade"

bombastic bob Silver badge
Trollface

Re: Advice

10Mb of:

a) rule 34

b) embarrassing photos of the CEO and/or spouse

c) your favorite online comics

d) cat video

e) rule 34 cat video

etc.

bombastic bob Silver badge
Devil

I actually disabled the 'reply all' button in Thunderbird, but I'm pretty sure I can make it happen anyway with a right-click [/me verifies - yep, it's there!]

bombastic bob Silver badge
Trollface

carbon footprint - what Santa Claus leaves in snow [after being in so many chimneys].

If I were to hit 'reply all' I might attach something from a shock site...

Campaigners cry foul play as Oracle funds conservative lobby group supporting its court case against Google

bombastic bob Silver badge
Meh

Re: Who expects honesty and decency from Oracle ?

'conservative' - I do not think that word means what you think it means.

Conservative != 'right wing' [see my other posts in this area]

'right wing' does a lot of what you seem to accuse conservatives of doing, and 'right wingers' are probably the 'technically ignorant and uninformed' ones you mentioned...

bombastic bob Silver badge
Unhappy

I didn't think anyone here would question the validity of a copyright of a COMPLETED work, such as an entire software library. What is at issue here is the patenting and/or copyright of an API, which is much like the patenting or copyright of a "general idea".

Patents are supposed to be VERY specific and apply to a specific invention. Copyrights are for written works, etc. and "fair use" allows a portion of that work to be used by others without paying royalties.

So the real debate is, can you patent an API? (I believe it is too much "a general case" and not specific enough to a specific invention for a patent to be granted). And can you copyright an API? (if the API were for a specific copyrighted work, such as a software library, and the library itself is copyrighted, then the API, a portion of that library, is subject to "fair use").

Any restrictive deviation beyond what I just mentioned would simply be a FEEDING TROUGH for BOTTOM-FEEDING L[aw[YERS. And you know the L[aw]YERS are the ONLY ones who WIN this kind of CRAP!

bombastic bob Silver badge
Meh

"You can't have business without government interference."

Calling reasonable regulation 'interference' implies that all businesses are inherently DISHONEST, and require 'interference' (through regulation) to protect us poor saps from those *EVIL* *CORPORATIONS*.

I don't buy that kind of viewpoint at ALL.

'Regulation' does not equal 'Interference'. 'Regulation' creates order out of what might become chaos, such as requiring all businesses to register in the form of a 'business license' [to verify zoning laws, etc.] or limiting the occupancy of a building for fire safety reasons. That's really not "interference" when it's done properly.

bombastic bob Silver badge
Megaphone

Re: Conservative?

'conservative' is what you'd call the opposite of 'activist'. By 'conserving' it implies sticking to the way things are being done already, or holding onto traditional values, or making changes slowly and with overall approval (rather than doing so rapidly, radically, and "in your face" if you don't like it).

What IAP is calling "conservative" is most likely "right-wing". "Right wing" is as bad as "left wing", just different details. Same ulimate outcome, though: less freedom for all, more power and control by government.

(bullhorn icon because it's kinda like a political stump speech)

bombastic bob Silver badge
Meh

"Government interference in business doesn't seem to me to be a particularly conservative position."

Most definitely, it is NOT conservative.

What we have here, perhaps, is a "Conservative in Name Only" organization. I read their main page, and from what it says, they SOUND like a decent bunch of people interested in OUR privacy and not letting "big tech" get away with manipulating elections, etc..

Yet shilling for Oracle's lawsuit against Google over the Java API is *NOT* "conservative"!

If IAP claims to be CONSERVATIVE and PRO-PRIVACY and even PRO-FREEDOM (I did not see that specifically, but 'conservative' would imply that), then they can NOT uphold the concept of an API patent or copyright, without being HYPOCRITES.

Hey, China. Maybe you should have held your hackers off for a bit while COVID-19 ravaged the planet. Just a suggestion

bombastic bob Silver badge
Meh

Re: Fight Fair?

That book suggests that war is expensive and should be avoided, FYI, and that peace (through strength, implied) is better than war.

(it's somewhere near the beginning, actually)