Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Mask Work Law and Why the Heavy Process? (Score 1) 274

There are plenty of resources online that get you from nothing to your first "Hello, World!" program in a matter of minutes. The same is not true of hardware circuits -- especially if you want to manufacture them at all in a commercially viable way.

This analogy is rather flawed.

Actually... the analogy is not really that flawed. Your first "Hello, World!" program is about as complicated for software as wiring a light bulb to a battery is for hardware. I'm not arguing for or against software patents, though personally, I feel software should be patentable if it exceeds a certain threshold of complexity. Something along the lines of, "Wow! I'd have never thought of doing that." should be the litmus of whether the software is complex enough to be patentable (and should be done by someone with expertise in the applicable field).

Comment Re:Quorum looks a lot like Pascal (Score 1) 538

Quorum looked a lot like BASIC to me. Only the keywords were different. The headline for the article is horrible (as usual). The headline (and summary) neglect to mention that this test was given to people who had no experience in programming.

We compared novices that were programming for the first time using each of these languages, testing how accurately they could write simple programs using common program constructs (e.g., loops, conditionals, functions, variables, parameters).

My takeaway from this "research" is that Perl is not a good language for beginners. If you already know the general concepts of programming, Perl is fairly easy to pick up.

Comment Re:DHCP? Huh? (Score 1) 154

Exactly. All that is required is that the packet reaches the intended destination. The easiest way to do that on a TCP/IP network is the magic packet sent to one of the broadcast addresses (either network specific i.e. 192.168.0.255 or the general purpose one: 255.255.255.255). Every switch knows how to handle network broadcasts (and every hub, though I haven't seen an actual network hub in ages since small switches are commodity hardware now, transmits every packet to every connected port).

Comment Re:Costs of education? (Score 1) 551

With the exception of professions where there is either very little expansion of knowledge, but a vast knowledge base (such as literary professions) or an ever increasing knowledge base where knowledge is seldom replaced (such as medical professions), most of what a college degree proves is that you have learned how to learn. This is especially true in the IT professions where the industry changes so quickly that the curriculum is already multiple generations behind by the time changes have been approved.

My advice for those entering the IT professions: Try to get in with a start-up. The work is not stable, but they will be more willing to take a risk on those with less experience (due to the fact that the more experienced will be looking for something more stable.)

Comment Re:DHCP? Huh? (Score 1) 154

Using VNC, one can now ... power up,

Before I VNC in to power up the box, I need DHCP running so I have an IP address to connect to. No problemo, I'll just power up the box to get a DHCP address before I power up the box to power up the box. Its turtles all the way down.

I'll take it you've never heard of Wake-on-LAN. Third-party services such as LogMeIn actually can turn on remote machines as long as there is another computer on the network with LogMeIn installed. That doesn't even require an IP address. It's a packet addressed to the MAC of the NIC (which is why the originating packet needs to be on the same network).

Comment Re:Start with what you find easiest and move to C (Score 1) 510

...and then once you have learned what you set out to learn by programming in C, immediately stop programming in it unless you are doing some heavy-duty programming (like writing an OS or bleeding-edge game development) You can write robust apps in nearly any language, but the language you are using when you make a mistake (and you will make mistakes) will determine what happens. Screw up in Python, Perl, BASIC, Java, etc. and your app will crash. Screw up some memory management in C or C++ and your OS will crash.

Comment Re:Call me a Luddite... (Score 1) 97

You are aware that visible light is also electromagnetic radiation (as well as infrared and ultraviolet - both provided in gratuitous amounts by the sun... far more than produced by any artificial light source)

Of course the back pain reported by workers of electronics stores has absolutely nothing to do with the fact that they are likely moving heavy objects (probably without taking proper precautions to prevent injury) and are on their feet for most if not all of their shifts.

Ignorance does not improve the credibility of your field.

Slashdot Top Deals

It is easier to write an incorrect program than understand a correct one.

Working...