Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:There are more reasonable alternatives (Score 1) 128

Some options for a systemd desktop OR server Linux system:

  • Devuan - a fork of Debian with systemd removed (https://devuan.org/)
  • Arch + Openrc (http://systemd-free.org/)
  • Gentoo + Openrc (http://gentoo.org)
  • Funtoo (http://funtoo.org)

and many more. All of which many find to be much more suited for servers than Fedora or Debian with systemd.

Honestly, even with systemd[1] Gentoo is actually a pretty awesome distro for a server; definitely better than Debian. The compile-times are less of an issue since most of the really large programs aren't ones you'd install on a server (chrome, libreoffice), and being able to install any of the last N stable versions (sometimes side-by-side using slots) of a package is pretty convenient when you have third party software. The way configuration files are updated after an upgrade instead of during is also much more convenient, and the stable branch is also significantly more up-to-date than Debian's.

[1] While I use systemd on my own system and find it works well for me, I can easily understand why some people would prefer to stick with one of the alternatives (at least until all the bugs get ironed out).

Comment Re:Dream laptop. (Score 1) 46

Last I heard there were no plans for a new FX chip.

It's a little unclear if it'll be part of the FX lineup, but apparently AMD will be releasing a new line of CPUs next year under the codename Zen. The core count will go up to 16, so it sounds like it'll definitely be a spiritual successor to the FX line, even if it's not part of it. (That is, it could actually be competitive against an i7.)

Source: http://www.fudzilla.com/news/p...

Comment Re:Timeo Danaos et dona ferentes (Score 1) 285

The impressive part of the tab completion of Powershell is how context sensitive it is. When I typed the where command, I entered -p and it expanded it to -Property (although just -p would work too). But the fun part was that I could then type e and then go through the list of property names that are returned from the dir command that begin with the letter e; first Exists, then Extension. So it was aware what was being passed to the where command on the pipeline and returning the correct properties for that object.

It's worth noting that this is also available in zsh, which (I believe) has always been more feature heavy than bash.

(Not to say it isn't cool that Powershell can do that, merely that bash probably isn't the best comparison.)

Comment Re:albeit costing three times as much (Score 1) 126

The result was I paid $200 for an FX-8350, which probably wasn't AMD's fastest chip at the time

Maybe not, but close - the FX-8370 is just a slightly better binning of the same part.

I remember all of the benchmarks compared it to the i7, which of course trounced it.

Funny thing about that - there were some pretty major discrepancies at the time between benchmarks done using Intel's compiler and those done using GCC. When using GCC, the FX smoked the i7 - it wasn't until the next generation (or possibly the one after that) that the FX started to lag behind. Even today it's reasonably competitive (if not faster than) against Haswell i5s.

The FX-9590 doesnt seem to be a significant step up in performance from the 8350.

The FX-9590 isn't even a step-up - it's the exact same part, overclocked ridiculously (hence the 220W TDP). It's a stop-gap measure by AMD to try and disguise the fact that the FX line-up hasn't been updated in years.

I'm planning an upgrade myself atm, and as much as I prefer AMD, they're literally a non-option to me (even with the sticker shock from i7 prices). I hope Zen goes well for them, because otherwise Intel has a monopoly on high-end CPUs...

Comment Re:Heart valves? Refrigerators? Pah! (Score 1) 65

You don't need pressure to write with a fountain pen -- at all. (The modern competitor is a rollerball, not a ballpoint; rollerballs don't give you amount of flexibility on nib grind or opportunities for flex and shading effects that you get with a fountain, but at least you're not forced to use tons of pressure). Allows different, more comfortable grips.

I'll second this - using a fountain pen is worth it just for the ergonomics alone. Before I used (not inexpensive) rollerballs, and even then my hand would be hurting after a test or exam, but with a fountain pen I could easily write for more than double the time. It also worked out cheaper too - a $10 bottle of ink with a $20 pen lasted me the duration of my 6 year course, and the bottle is only half-empty.

Comment Re:App Permissions ring hollow (Score 1) 83

The App Permissions seem to be missing the crucial ability to deny internet access to an app. There are apps where network data connectivity is the problem. Similarly, I wonder if Google will have this permission setting capability on its internal applications. I know that I have a rather tightly worn tin foil hat when it comes to Google and the information they get, but the Xprivacy 'deny' list on my phone is a mile long, and that's with most of their apps frozen or forcibly pulled out, I find that Google's data access on the platform demands a tight leash, leading the 'privacy' and 'permissions' charge to ring of hypocrisy - "we'll make sure that only we have your location" doesn't mean much to me :/

The ability to block internet access would effectively block ads. On the plus side, there are plenty of firewall apps in the Play store (though they do require you to have a rooted device).

Comment Re:Alternate story title (Score 1) 445

If they actually overloaded the Knowledge Graph it would appear in a special box at the top of the results. In this instance it's still just a link.

I just googled it, and it absolutely does appear in that special box. (Interestingly, this is despite it being the #2 result, with #1 being the PBS website.)

Comment Re:C++ Template Syntax (Score 1) 414

The syntax isn't what makes C++ templates hard. They're hard because they're templates.

However, they're powerful because of it. There's no "generics meta programming" because generics don't offer any sort of comparable power. That said, the reason template meta programming is so useful is because C++ lacks reflection.

I disagree. Take a look at D templates (and compile-time function evaluation) - that syntax will be easily readable to anyone familiar with a C family language, because it's the same syntax (just with 'static' or 'pure' peppered everywhere).

C++ template meta-programming is hard for two reasons. The first is that templates use a syntax of their own, which is one more thing to learn. The second is that the template language is functional, which is quite alien to most C++ programmers. D uses native D syntax to do the same thing (with the requirement that functions be pure), and that's much easier to read.

Comment Re: Do most of the work? (Score 1) 443

Seriously IDEs are great! I don't understand people on Slashdot who think if its not hard, its not worthy!

That's a bit of a strawman. IMO, the real issue is that people see it as a false dichotomy between a good text editor (Vim, Emacs, etc.) and a kitchen sink of tools attached to something little better than Notepad with syntax highlighting + autocompletion (e.g. Visual Studio). In that comparison, the text editors win because the vast majority of programming comes down to text editing (and possibly thinking, but you don't need a computer for that), and typical IDEs are pretty mediocre at that.

Note that it's a false dichotomy - you can get the benefits of both, either by integrating a proper text editor into your IDE (e.g. Eclim adds Vim to Eclipse) or by adding many plugins to your text editor - I use Vim with 53 plugins, and I have every feature on your list (although hovering over a variable is replaced with typing a shortcut while the cursor is over it). You only need about 10 to get most of the benefits though, especially if you only work with one or two languages.

Comment Re:Let's hope that Plasma 4 is kept as an alternat (Score 1) 60

- Plasma 4 had the best systray in all the linux ecosystem, allowing KDE native, "new" Unity-style indicators, and old tray icons. Now neither of those work in Plasma 5, leaving empty space or not showing at all. Even Unity has ways to show old tray icons such as Pidgin. When asking about it, was instructed to install stuff like stalonetray...are we in FVWM now?

I've got a pretty good idea why this is happening. The old API for tray icons didn't handle the case where you had multiple systrays correctly (e.g. dual monitors) - the icon would only appear on one of them. The new API fixes this, but as you have noticed not everything supports it. The best solution is probably for someone to go around submitting patches to all the projects using the old API, but that's obviously going to take some time...

Comment Re: SystemD added? (Score 1) 494

The overarching problem is that systemd can decide to rearrange the boot sequence at any moment.

If a admin has set a sequence to be XYZ they have a very good reason for doing so. So why should the init suddenly decide that YZX is the way to go?

Because parallelism is good for performance, or so the argument goes.

The real issue is that there's no way to reproduce that partial-ordering. IMO, there should be some kind of debug facility to restrict it to sequential startup, then try all possible orders. (Yes, factorial complexity is never fun, but at least it would provide a means to debug this kind of problem. Making open source software easy to debug (or at least capture logs for) is hugely important, because that's where most of your drive-by patches come from.)

Comment Re:Time to start masculanism movement (Score 1) 599

Time to start masculanism movement, because anti-male gender discrimination hit mainstream.

It exists, but isn't particularly well known.

IMO, feminism and masculinism are both inherently flawed, in that they only focus on one set of symptoms and don't try to fix the underlying issues. Both genders have issues, but the moment you try to draw attention to this people tend to take it as a competition / zero sum game. The real solution is something like egalitarianism, where the focus is on not discriminating against people regardless of their gender, etc.

Comment Re:Here we go again (Score 1) 64

KDE 4 broke a lot of the functions I used on 3 (like, for instance, email. KMail was great, now I'm stuck with the inferior but functional Thunderbird). And they never did fix them. Still broken and worse with every revision.

So I'm dreading the day when the only supported KDE will be the still-not-fully-functional version 5. What have they broken now, never to fix?

Speaking as someone who only started using KDE after 4 had stabilized, what did they break in Kmail?

Comment Re:HTTP.SYS? (Score 1) 119

The reasons are clearly described here

I read through that and didn't see anything about "We're all idiots".

Their reasons involve context switching and interprocess communications. Context switching has got to happen (unless they run IE in kernel space) so just get it over with. Interproces communication has always been a weakness in Microsoft systems. Since day one. Multitasking OSs are here, folks. Get over DOS.

If your context switches are too slow, the correct solution is to fix the kernel or add syscalls to reduce the overhead (see sibling post). Moving parts of your application into kernel-space is bad design no matter how you look at it. (Besides, wasn't it only a few years ago they had a vulnerability in their kernel-mode font driver?)

Slashdot Top Deals

The Tao is like a glob pattern: used but never used up. It is like the extern void: filled with infinite possibilities.

Working...