Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment It's the syntax (Score 5, Insightful) 341

I would be interested using Rust if it weren't for the poorly chosen language syntax. Same goes for Kotlin and Swift. Coming from C/C++ background I don't care for declaring variable names before their types. val/let, fn (instead of say "func" or "function"), etc... I hate implicit types and operations instead of being explicit.

fn plus_one(x: i32) -> i32 {
        x + 1;
}

Ugly as hell compared to

int plus_one(int x) {
        return x + 1;
}

it's also far more explicit as to what's going on in the C version that it's returning a value instead of just automatically returning the result of the last expression (implicit operation) in Rust which I definitely hate.

Comment Yet lacking compared to 28 years ago (Score 5, Informative) 160

And yet it'll still have less options than Windows 3.1 for GUI color customization. Pretty fucked up that the "colors" setting is just a choice of contrast (light and dark) and a single color used for accent. Can't even change the stupid bright white window title bar non-focused color, that is a huge source of eye strain when using dark mode in a dark room, without having resort to weird registry hacks.

Need to bring back the full color customization options that Windows used to have from 3.1 through XP. Cause since Vista it's all been piss poor choices. Well in terms of Windows 10 basically no choices at all.

Comment Re:Please just give a real video autoplay blocker. (Score 2) 53

My about:config settings that seem to work so far on various news sites, netflix, youtube, and etc

media.autoplay.ask-permission true
media.autoplay.block-event.enabled true
media.autoplay.default 5
media.autoplay.enabled.user-gestures-needed false

It does however somewhat break web-based media players that use queue's such as amazon music where you'll have to explicitly play the first and second song before firefox then allows auto playing the rest of the queue/playlist. And have to explicitly play the video twice on amazon prime video as first video is an ad then next is actual requested show/movie.

Medicine

Why Prescription Drugs Cost So Much More in America (ft.com) 348

The US spends more per capita on medication than anywhere else in the world. It's a key electoral issue. From a report on Financial Times (paywalled): All over the world, drugmakers are granted time-limited monopolies -- in the form of patents -- to encourage innovation. But America is one of the only countries that does not combine this carrot with the stick of price controls. The US government's refusal to negotiate prices has contributed to spiralling healthcare costs which, said billionaire investor Warren Buffett last year, act "as a hungry tapeworm on the American economy." Medical bills are the primary reason why Americans go bankrupt. Employers foot much of the bill for the majority of health-insurance plans for working-age adults, creating a huge cost for business.

In February, Congress called in executives from seven of the world's largest pharmaceutical companies and asked them: why do drugs here cost so much? The drugmakers' answer is that America is carrying the cost of research and development for the rest of the world. They argue that if Americans stopped paying such high prices for drugs, investment in innovative treatments would fall. President Trump agrees with this argument, in line with his "America first" narrative, which sees other countries as guilty of freeloading. For the patients on the trip, the notion is galling: insulin was discovered 100 years ago, by scientists in Canada who sold the patent to the University of Toronto for just $1. The medication has been improved since then but there seems to have been no major innovation to justify tripling the list price for insulin, as happened in the US between 2002 and 2013.

Comment robots.txt is retroactive (Score 5, Interesting) 73

Doesn't matter when robots.txt is retroactive. It's annoying when crawl snapshots of dead sites on expired then bought-up domains' content aren't accessible due to changed robots.txt by the new domain owners. Lost a lot of useful information in old bookmarks because of this.

So how is it any different now? Will they finally stop the retroactive bullshit?

Comment Re:6 milliom views and 40,000 likrd? (Score 4, Informative) 60

It's a sign that more viewers are not logged into YouTube, of which is required in order to Like or Dislike videos. Most likely means majority of them are mobile device using viewers. While others, like myself, are possibly those who view videos via Private/Incognito mode so it makes it more difficult for tracking who's watching.

Just something to give you some perspective as to why Like/Dislike sum is so disproportionate to view count.

Comment Good (Score 2) 77

It took Google Chrome doing this to have websites like Netflix fix their broken video player when you have autoplay disabled (in firefox my case).
Vimeo is still broken though, even after countless bug reports to them over the years about it.

Wonder when Google will fix YouTube where you have to press play twice in order for it to start playing a video with autoplay disabled.

Comment Re:Seriously? Look at SiliconDust (Score 2) 564

I've been using a HDHomeRun dual-tuner since 2007 with mythtv on my home linux server, a schedules direct subscription (since 2010) for guide information, and basically just using VLC and MPC-HC for playback via "Direct Download" URLs from mythweb interface. The setup has worked out very well for me.

Comment Stop trying to be Chrome then (Score 5, Insightful) 189

Mozilla has been pushing hard to make Firefox to be exactly like Google Chrome along with its limitations and lack of customizability. By Firefox v57 there will be no reason to ever use Firefox anymore because of Web Extensions won't allow users to install real extensions that allow them to actually change Firefox's behavior and UI as they want it to instead of Mozilla's ideology of having Firefox be a Chrome copycat. The pathetic Theme options in future Firefox versions is just as awful as Windows 10's themes and limited color choices, meaning no real options at all.

So I find it hilarious that somebody from Mozilla is concerned with Chrome becoming the only web browser in town when it's Mozilla themselves pushing the remaining Firefox users away towards Google Chrome because of their behavior and border-line user hostility. Because why bother using a gimmick when you can use the real thing?

Comment Re:System Requirements (Score 1) 255

They even stopped supporting devices like the first generation amazon FireTV Stick as won't show up in app search and going directly on amazon's appstore website says both netflix apps are incompatible with it. But of course netflix's support site doesn't mention this. Along with them only allowing up to 720p on Firefox, these arbitrary changes netflix has been doing is making me reconsider keeping my subscription.

Submission + - Publish Georgia's state laws, you'll get sued for copyright and lose 2

Presto Vivace writes: If you publish Georgia’s state laws, you’ll get sued for copyright and lose

Malamud thinks reading the law shouldn't cost anything. So a few years back, he scanned a copy of the state of Georgia's official laws, known as the Official Georgia Code Annotated, or OCGA. Malamud made USB drives with two copies on them, one scanned copy and another encoded in XML format. On May 30, 2013, Malamud sent the USB drives to the Georgia speaker of the House, David Ralson, and the state's legislative counsel, as well as other prominent Georgia lawyers and policymakers. ... ... Now, the case has concluded with US District Judge Richard Story having published an opinion (PDF) that sides with the state of Georgia. The judge disagreed with Malamud's argument that the OCGA can't be copyrighted and also said Malamud's copying of the laws is not fair use. "The Copyright Act itself specifically lists 'annotations' in the works entitled to copyright protection," writes Story. "Defendant admits that annotations in an unofficial code would be copyrightable."

It could have been worse, at least he was not criminally charged liked Aaron Schwartz.

Slashdot Top Deals

Lots of folks confuse bad management with destiny. -- Frank Hubbard

Working...