Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Driver's versus passenger - does it really matt (Score 1) 364

If your car has an interlock installed, any driver would need to use it to start the vehicle.

It's not meant to be convenient. That it's onerous is entirely intentional. It's meant to punish you by forcibly preventing illegal behavior. It provides an alternative between a fine and a suspended license. That's all. Interlocks aren't installed for first time offenders. It's likely this will be the same. Don't like it? Stop risking other peoples lives.

Comment Re:Powershell (Score 5, Interesting) 729

Two reasons:

1. POSIX environments have already been done on Windows, and they universally suck. SFU/Interix is shit. Cygwin is shit. MKS Toolkit is shit. MinGW/MSYS, which does a better job than any of them, is mostly shit. Even UnxUtils, which is just binaries modified for use with the actual Windows cmd shell are mostly shit. There are so many fundamental differences of philosophy that make working with a Windows system as though it were a POSIX system fundamentally untenable. You're stuck with mostly just munging text files in a binary world.

2. Powershell is what .NET developers think Windows administrators want in a shell. That's why you're allowed to do stuff like import .NET assemblies and use essentially unmodified C# code, but there's still no native SFTP client or server.

Powershell is about 90% of what an administrator actually wants in a shell, and it's actually not that bad. Compared to cmd.exe or VBscript it's balls out fantastic. However, an administrator shouldn't need to learn about .NET objects to be able to write a script, and they shouldn't feel like there's such a fundamental separation between what the shell can do with .NET piping and what executable programs can do. There's a very real encouragement to make everything in Powershell written in and with Powershell exclusively. Like no calling of a binary to do something unless you have no other choice. The shell and the community philosophy very much discourage that... for no real reason other than it's more difficult to get a .NET object out of a binary file and manipulate it with arbitrary .NET methods. I've seen people re-implement a command line zip program with [System.IO.Compression] instead of just using 7z.exe. Why? Just so they can use .NET objects that they never do anything with.

Honestly I really love Powershell, but I wish the philosophy were geared more around getting shit done than getting shit done with .NET.

Comment Re:So start organizing (Score 4, Interesting) 108

No the dirty secret is when IT people are young we are all naive, idealistic Libertarians who couldn't fathom the idea that Labor might need protection from Capital when the Free Market can clearly fix all ills if only the government would get out of the way. When we're older one of two things has happened: we're in management and on the other side of the table, or we're still in the trenches and we'd rather dangle in the breeze than swallow the bitter pill of our own reality or try to convince the new, naive. idealistic, Libertarian junior coworker that he's getting the shit end of the stick on purpose.

Comment Re:its why devs cringe. (Score 1) 180

Putting aside the whole whitespace debate(*), I'm pretty sure that python has its own list of issues. Maybe not to the same extent as PHP, but they exist.

Picking a programming language is like picking an application, though. It's not about picking the syntax. That's not particularly relevant unless you're looking at Brainfuck or INTERCAL or GW-BASIC. You start by deciding what capabilities you need. There are inevitably several choices that meet your technical requirements, so in the end you're picking a language based on whatever set of limitations and issues you're willing to work with.

Comment Re:Its Fine. - not (Score 4, Insightful) 348

Application support always says to turn off everything that might possibly interfere with their precious application. They would have you shut down the operating system if they didn't need it. Application support lives in a fairy land where the only thing they have to worry about is their application. They don't have to fix anything if the application isn't broken. They have no interest in anything else. A good vendor will program their application to work with the system standards. Most ISVs are not good vendors.

As a system or network admin, you have to protect the application from the rest of the network and protect the rest of the network from the application and protect everything from the users and the Internet. Part of doing that is firewalling the crap out of your core network, and if you can't do that you should be looking at adding more VLANs and controlling traffic that way.

Comment Re:Completly Blindsided. (Score 1) 285

The school district wasn't blindsided. The county was.

I work at a school district, so let me tell you how public schools get their Internet. Obviously it's going to vary, but from what I've seen our situation is the most common.

Every building in a district runs fiber between their buildings to a central building where the district's servers are kept. It could be in the basement of the high school or some administrative building, but that's what happens. It's easy enough for the district to do capacity planning. Each school district may then connect to an intermediate school district, but ultimately then connects to the county's municipal network. This network is the ISP that connects every municipal office, such as city, village, police, fire, public works, etc. to the Internet. In my state, Michigan, the county connects to a statewide municipal network originally put in place to connect the public universities to the proto-Internet for research (our ISP, Merit, was founded in 1966).

In this story, the problem is at the county level, the middle man between the school and the state-wide network. This is not particularly surprising, since since in every case I've seen, the county is a) poorly funded, b) poorly staffed, and c) tends to be forgotten about. When a neighboring district went 1-to-1 at the high school level with lots of online classes, they did reasonable capacity planning for the district's small network and quadrupled the bandwidth from the high school to the district servers, and the district to the county (the district consists of 3 buildings on the same plot of land, so it was fairly simple). What they didn't do was consider that the county level needed upgrades as well. My district is about 8500 students across more than a dozen buildings, and this was about 200 students in just one building (grades 9 and 10). They were using about 90% of the bandwidth on our connection. That district got moved to a different connection pretty quickly, but until then nobody in our district could use the Internet during the school day.

Slashdot Top Deals

The sooner you make your first 5000 mistakes, the sooner you will be able to correct them. -- Nicolaides

Working...