Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Submission + - Aging perl developer seeks career advice.

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!

I was thinking maybe 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!

Any advice at all will be heartily accepted :-]

Comment Re:Is socket connection latency all that relevant? (Score 2, Interesting) 102

Well, the trick is having them open for longer than the frequency of querying the server. Most server software (unless you use a very inefficient code/server) tend to be CPU and not memory-bound (noteworthy exception - cheap virtual machines).

Besides, creating a connection is more costly than actually maintaining it for longer, even if done at the same frequency. You might run out of file descriptors, you might want to mitigate it, besides that, a single open stalled connection is maybe 4-32kB of RAM, depends on the chosen platform, if a single thread can handle multiple connections.

This is the magic cometd does - it basically herds these connections.

Comment Re:Is socket connection latency all that relevant? (Score 5, Interesting) 102

Having worked at a large firm that is one of the local market leaders in social networking, I can tell you that polling your system every 5 or 10 seconds can cost you a lot of money in hardware and bandwidth.

Even an empty HTTP request is about 1kB with all the overheads (browsers sending cookies, etc). If you've got 1M visits daily, each spending 60 mins on your site, that easily gets you in the bandwagon of 720GB of traffic *daily*.

This is in addition to all the server workload - the best server can roughly deliver 1000 requests/s. Your 500k of peak simultaneous users would then require 50 servers just to handle their idling.

At the same time, a long pooled connection can stay open at least 3 minutes, and often enough well over a day, sending small (60byte) keep-alive packets every few minutes.

This is much, much cheaper.

Comment Wrong problem... (Score 1) 709

Wrong answer. It seems that for today's population, texting is more important than driving. This always-online trend is going to continue.

Possible solutions:
-> Car-pooling. Everyone but the driver can text
-> Usable public transit. Everyone can text
-> Commercialization of Urban Challenge winner: Cars that just drive themselves.

I believe if the money spent on ridiculous policies was spent improving alternatives, people would choose those.

I choose public transit or taxis.. precisely because I can have a phone call, text, review documentation.. and leave the mundane tasks like actually driving to others or machines.

I also own a car, enjoy driving and drive quite aggressively. That's for my enjoyment, and almost never in heavy traffic - which is why you're most prone to text anyways.

Comment Restraining order perhaps? (Score 1) 931

I am not a lawyer, but it might be grounds for a very interesting loophole.
(I wonder how HS could get out of it).

File a police report, talk to a lawyer, try getting a restraining order against her for harassment/willful destruction of property (it can be done prior to hearings about the actual conduct, if there are grounds to believe she'll commit additional petty crime).

I wonder if the teacher would even be able to legally work at that school.

Slashdot Top Deals

"Probably the best operating system in the world is the [operating system] made for the PDP-11 by Bell Laboratories." - Ted Nelson, October 1977

Working...