Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Perl

Ask Slashdot: Career Advice For an Aging Perl Developer? 271

New submitter ukrifleman writes: I've been doing UK based perl, JS, light PHP and JQUERY dev plus Centos/Debian sys admin on a freelance basis for over a decade now. Mostly maintaining older stuff but I also undertook a big, 3 year bespoke project (all written in legacy non OO perl). The trouble is, that contract has now finished and all the legacy work has dried out and I've only got about 2 months of income left! I need to get a full time job.

To most dev firms I'm going to look like a bit of a dinosaur, 40 odd years old, knows little of OO coding OR modern languages and aproaches to projects. I can write other languages and, with a bit of practice I'll pick them up pretty quickly. I really don't know where to start. What's hot, what's worth learning, I'm self-taught so have no CS degree, just 15 years of dev and sys admin experience. I've got a bit of team and project management experience too it's quite a worry going up against young whipper snappers that know all the buzz words and modern tech!

Am I better off trying to get a junior job to start so I can catch up with some tech? Would I be better off trawling the thousands of job sites or finding a bonafide IT specialist recruitment firm? Should I take the brutally honest approach to my CV/interviews or just wing it and hope I don't bite off more than I can chew? What kind of learning curve could I expect if I took on a new language I have no experience with? Are there any qualififcations that I NEED to have before firms would be willing to take me on? I've been sitting here at this desk for 10 years typing away and only now do I realise that I've stagnated to the point where I may well be obsolete!

Comment Re:Can it run apps from the Google app store? (Score 1) 108

But this article and the original comment are about the ZenFone 2, which is specifically running Lollipop. So it has the ART runtime, and JIT is not happening on it, and the OP was asking about things being compiled for this non-ARM architecture.

Which is why I stated multiple times that the vast majority apps are not compiled for ARM at all. They are just pure Java. So whether or not they go through Dalvik's JIT or ART's AOT makes no difference.

Comment Re:Windows? (Score 1) 108

I don't think you could be more wrong.

Except he has reality on his side. Microsoft already tried pushing "full Windows" tablets more than a decade ago. They were abysmal failures.

Yes if your talking the latest installment of Windows perhaps.

Nope, XP tablets were pretty horrendous to use.

But Legacy applications from Windows XP and even earlier days have a footprint a fraction of the size of 'current' apps while doing the exact same job.

This is hilarious considering everyone complained about how XP and its applications were "bloated" when it was the latest Windows release. Everyone was then pining for the "lightweight" Windows 2000.

Comment Re:Article doesn't answer two biggest questions (Score 1) 108

Most apps aren't geared towards any processor. Most of them are just written in plain Java and are JIT-compiled when run. So for those apps this will work perfectly fine. I believe Intel had some sort of binary translation to handle things like games where there is native code being used.

Comment Re:Great News (Score 2) 134

I think if they deliver on the promise, this will change the way people view their mobile devices. Motherboard replacements and case replacements will gain traction just like in the assemble your own PC era.

It will have quite a hard doing what you claim when only a fraction of a fraction of 1% of phone buyers will ever hear of its existence.

Government

North Carolina Still Wants To Block Municipal Broadband 289

An anonymous reader writes: In February, when the FCC rolled out its net neutrality rules, it also voted to override state laws that let Texas and North Carolina block ISPs created by local governments and public utilities. These laws frequently leave citizens facing a monopoly or duopoly with no recourse, so the FCC abolished them. Now, North Carolina has sued the FCC to get them back. State Attorney General Roy Cooper claims, "the FCC unlawfully inserted itself between the State and the State's political subdivisions." He adds that the new rule is "arbitrary, capricious, and an abuse of discretion within the meaning of the Administrative Procedure Act; and is otherwise contrary to law."

Comment Re:Make better language, not better coders. (Score 1) 149

Never claimed smart pointers solve all problems because that would be ridiculous. If you have cases that a smart pointer doesn't solve then clearly you would need to use the correct solution. But for the vast majority of cases that people use raw pointers for, they can be substituted with something safer and remove a whole host of potential bugs from their code.

Comment Re:Commitment to stability (Score 1) 149

In addition, references in Rust are guaranteed to be non-null.

As they are in C++. They are also compile-time checked to make sure they have been initialized. It's one of the whole reasons that references exist in C++ and should be used in place of pointers whenever possible.

Slashdot Top Deals

Friction is a drag.

Working...