Slashdot Mirror


Ask Slashdot: What Should I Study?

A fellow Slashdot reader is seeking advice on a new field of study: After many years at the same company, I'm now thinking of a change. At my current place of work, I have worked on many different projects, from server side development, to UI development, and most recently, a lot of data science work. If I were to rate myself, I consider myself to be a good developer, thorough, conscientious and always willing to learn new things. Even my recent foray into data science (though not entirely new, since my graduate studies specialized in machine learning) has had reasonable success, and ideally, I'd really like to continue working in this space.

But, I'm starting to feel in a rut and I'm looking for a change. And looking outside my company, I'm not sure how to begin. Should I hit the books again? Should I focus on any specific technologies? I haven't particularly kept up with new technology -- after working for so long, I tend to think of that as something I can learn, when I need to. Any advice on how I should go about preparing for interviews? I'm quite willing to put in a few months of work into prep, so all suggestions are welcome!

214 comments

  1. AI? by Anonymous Coward · · Score: 0

    If you're tired of data science already, jump on the AI bandwagon!

    1. Re:AI? by geoskd · · Score: 2

      If you're tired of data science already, jump on the AI bandwagon!

      I would have to agree, if you have an interest in big data (data science is the gateway to big data analytics), then by all means, pursue it. You're already ahead of the curve by quite a bit.

      If you want something outside your comfort zone, but close enough to your experience to be very interesting, I would suggest playing with a Raspi, especially the hardware end of things. Understanding RS232/RS485, I2C and/or SPI communications can be very rewarding work, both intellectually speaking and financially. Embedded hardware is fascinating because it really forces you to start considering all the ways that things can go very very wrong. High level development has a lot of simplicity in that you can pretty much always count on a certain subset of fundamental operations always working as expected. In the embedded space, you can write data to an I2C bus, and what arrives at the far end isn't always what you sent. The only error correction is whatever you bring to the table.

      You might even be set in a very enviable position of being able to bridge the divide between big data and embedded systems. In the near future, the IoT will start producing simply vast quantities of data, even by today's standards. All of that data will be worthless without data analytics to figure out how to make it actionable.

      --
      I wish I had a good sig, but all the good ones are copyrighted
    2. Re:AI? by vtcodger · · Score: 1

      AI is worth considering, although it may be too late to catch that particular wave in the sense that by the time one knows enough to be employable, interest may be fading. It'll come back in the long run of course, but like J M Keynes said -- In the long run, we are all dead. All depends on how far current capabilities can move beyond the parlor trick stage I think. I'm guessing not very far, but maybe I'm wrong.

      Security OTOH looks like it will be a pressing issue fpr a **LONG** time, The population of exploitable bugs appears to be immense and most folks are operating on the decidedly dubious assumption that the tradeoffs between security and usability are not a big deal. That leads to the belief that magic like 2FA can somehow get around the fact that secure systems tend to be unusable and usable systems tend to be insecure. I'm guessing that people will be creating new security issues at least as fast as old ones are resolved for decades.

      --
      You can't see ANYTHING from a car, You've got to get out of the goddamned contraption and walk...Edward Abbey
    3. Re:AI? by SunTzuWarmaster · · Score: 1

      No worries - you'll be good enough o catch the next wave!

      https://en.wikipedia.org/wiki/...

      The Wikipedia page is a stupidly-good document of the "AI winters" thus far - 1966, 1974, 1987, 1993, 2001... We're about ready for another winter, and if it takes you 5 years you'll be ready to catch the next summer!

    4. Re: AI? by Monster_user · · Score: 1

      Reading that wikipedia article, and looking at the tech that is available currently, and I would hazard to guess that we are at the end of "AI Winters". Siri, Cortana, Alexa, and Google's digital assistant would seem to be a realization of the dream which funded AI during the "AI Summers", so I expect the present reminder of actual results would mitigate or eliminate a full blown winter of AI funding.

      AI in its current form is all about big data analytics. Thus there is work to do and value, regardless of public hype and popularity. Though, self-driving vehicles may experience a winter of their own, which may impact image recognition algorithms. One just has to make sure the job in AI is a boring field, not a trending one.

  2. Business Administration or MBA by WillAffleckUW · · Score: 1

    They also have MBIT if you want to stay in IT.

    Money is the root of all Google.

    --
    -- Tigger warning: This post may contain tiggers! --
  3. What a loser! by Anonymous Coward · · Score: 0, Funny

    The submitter sounds like a total loser, on par with all of the weasels who keep attacking APK.

    1. Re: What a loser! by Anonymous Coward · · Score: 0

      APK? Is that you?

    2. Re: What a loser! by Memnos · · Score: 1

      No, it's a version of Tay that got into the wild.

      --
      I don't trust atoms -- they make up stuff.
  4. FP by reanjr · · Score: 1

    If you haven't delved into it, try learning more about functional programming. In my experience, most devs haven't really built anything using FP, and it can be illuminating. react.js is a pretty good example of a system that works well with FP.

    1. Re:FP by Anonymous Coward · · Score: 0

      Functional programming is shit. It's complex, it's difficult to learn and use, it's slow to develop, and it's just plain inefficient. It's nothing more than a thought exercise except to those who want to masturbate publicly to demonstrate their egos for knowing how to use a useless language paradigm.

    2. Re:FP by Anonymous Coward · · Score: 0

      Functional programming is shit. It's complex, it's difficult to learn and use, it's slow to develop, and it's just plain inefficient. It's nothing more than a thought exercise except to those who want to masturbate publicly to demonstrate their egos for knowing how to use a useless language paradigm.

      oh, it feels so good ;)

    3. Re:FP by ShanghaiBill · · Score: 2

      try learning more about functional programming. In my experience, most devs haven't really built anything using FP

      Functional programming is a hot topic ... yet very little has actually been built using it. That indicates to me that it is just hype. Programming with "pure" functions sounds nice in theory, but the real world has "state", and you don't get far by pretending that it doesn't.

    4. Re: FP by Anonymous Coward · · Score: 1

      Functional programming is a hot topic ... yet very little has actually been built using it. That indicates to me that it is just hype. Programming with "pure" functions sounds nice in theory, but the real world has "state", and you don't get far by pretending that it doesn't.

      Huh? In functional programming, state is passed in the arguments to the functions.

      Seems like you don't really understand FP.

    5. Re: FP by ShanghaiBill · · Score: 1

      Huh? In functional programming, state is passed in the arguments to the functions.

      Which means it doesn't scale. At all. Please show me a device driver written in FP. A backtracking parser? A deep-learning engine? Are you going to pass around 200MB tensors with every function call?

      Seems like you don't really understand FP.

      If you understand it so well, show us your useful applications.

      Functional programming was invented by mathematicians who want chicks to think they earn as much money as real coders.

    6. Re: FP by phantomfive · · Score: 1

      Programming with pure functions is a great idea that reduces bugs. I do it even when I am using oop . It is not good in all situations of course, so it is a case of using the right tool for the job.

      --
      "First they came for the slanderers and i said nothing."
    7. Re:FP by LynnwoodRooster · · Score: 2

      Ever done real-time embedded firmware? It's pretty much all functional because it's highly deterministic, stable, and easy to debug with limited UI access. EVERY paradigm has its place; only a rather ignorant engineer would claim "X is a useless paradigm"...

      --
      Browsing at +1 - no ACs, I ignore their posts. So refreshing!
    8. Re:FP by 110010001000 · · Score: 1

      "most devs haven't really built anything using FP"

      Gee, I wonder why that is?

    9. Re: FP by ShanghaiBill · · Score: 1

      Programming with pure functions is a great idea that reduces bugs.

      Functional programming makes sense for simple things that are inherently stateless. Sqrt(), sin() and cos() have been "pure" functions for as long as there have been compilers. But it does not make sense for things that are inherently stateful, which happens in almost any useful application.

      I do it even when I am using oop.

      So does everyone else. Many oop apps use simple stateless functions. But if you are actually passing around objects by-value by shoving them onto the call stack, you are taking it way too far.

      It is not good in all situations of course, so it is a case of using the right tool for the job.

      The whole point of functional programming is to wedge the use of pure functions into places where it is the wrong tool. Otherwise it would be nothing new.

      Can you give a single example of "functional programming" providing a better solution than traditional methods?

    10. Re: FP by phantomfive · · Score: 1

      Java strings are an API that is functional even though it is in an oop language. Each time you make a transformation on a string you get a new string, the strings themselves are immutable.

      --
      "First they came for the slanderers and i said nothing."
    11. Re: FP by nowwith25percentmore · · Score: 1

      If you want to delve into functional programming, try Erlang. It's a practical distributed functional programming language that's been in production use in telecom systems for quite some time. It's also a mind-screw to learn.

    12. Re:FP by mnemotronic · · Score: 1

      Functional programming is shit. It's complex, it's difficult to learn and use, it's slow to develop, and it's just plain inefficient. It's nothing more than a thought exercise except to those who want to masturbate publicly to demonstrate their egos for knowing how to use a useless language paradigm.

      oh, it feels so good ;)

      Sounds kinda like it's the programming version of a major in Art History.

      --
      The Russians have won. They have made the world a cesspool of distrust, greed, fear and hate.
    13. Re:FP by mikael · · Score: 1

      Every language is like this - they are wonderful at small-scale academic proof-of-concept experiments with a few hundred lines of code. Start going to the millions of lines of code for things like large scale GUI applications and then every language starts to have problems: C - too low level, requiring a whole set of functions to be written for a simple ADT's to represent a new list structure. script-based GUI's - impossible to debug and step through. C++ - too many ways of doing things and everyone starts trying to demonstrate their extreme cleverness by trying to find the most insanely complex way of doing something using STL and Boost. The "slightly slower" speeds of languages of just-in-time compiled languages also start to show themselves in terms of performance - the spinning wheel of fate.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    14. Re:FP by ShanghaiBill · · Score: 1

      Every language is like this

      ... but not equally. Some are much worse than others. If you were starting a big new project, and expecting to write tens of thousands of lines of code, then Java or C++ would be reasonable choices. Haskell or some other FP language would not. Here is a list of Haskell programs. The list is short, is mostly small programs, and many of them are mathematical utilities, which is a narrow field were FP actually makes sense.

    15. Re:FP by serviscope_minor · · Score: 1

      Functional programming is a hot topic ... yet very little has actually been built using it.

      Try: half of C++. The C++ templating mechanism is a pure funtional functional language with an um interesting syntax.

      Programming with "pure" functions sounds nice in theory, but the real world has "state", and you don't get far by pretending that it doesn't.

      Doesn't mean the techniques aren't useful. It's become popular in C++ for instance to take those ideas from functional programming, like pure functions. The modren style is to have as many functions as possible be pure, and keep the state well contained. That makes the program much easier to reason about. And, have constexpr functions which are a limited form of pure functions now.

      --
      SJW n. One who posts facts.
    16. Re: FP by serviscope_minor · · Score: 1

      Functional programming makes sense for simple things that are inherently stateless. Sqrt(), sin() and cos() have been "pure" functions for as long as there have been compilers.

      They have not been. All of those will set errno. This in fact has turned out over the years to be a right pain in the arse for threading and optimization.

      But if you are actually passing around objects by-value by shoving them onto the call stack, you are taking it way too far.

      Going too far towards making your program fast...

      C++ is very hot on value semantics as a style and the passing by value thing on the stack also means the compiler can reason perfectly about the scope of varibles for conforming programs. This gives it an advantage over GC languages like Java, since they have to rely on escape analysis which is always less good than perfect knowledge.

      --
      SJW n. One who posts facts.
    17. Re:FP by Hognoxious · · Score: 3, Informative

      That's a totally unfair comparison.

      A major in Art History could land you a job as a museum guide.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    18. Re: FP by Anonymous Coward · · Score: 0

      I'll second that apart from the mind-screw bit. I've been programming since the late seventies and Erlang is by far the most worthwhile language for modern computing. It has lots of faults and is definitely getting old/creaky in many ways but there's still nothing else that comes close. One of the great shames of computing is that so many devs got hung-up on OO and C++ in particular instead of aiming for the scalability, reliability, resilience and clear-mindedness that Erlang offers.

    19. Re:FP by serviscope_minor · · Score: 1

      Unless it's the other kind which is a fuck off massive state machine.

      --
      SJW n. One who posts facts.
    20. Re: FP by angel'o'sphere · · Score: 1

      A backtracking parser?
      This is a prime example for functional programming.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    21. Re: FP by angel'o'sphere · · Score: 2

      You don't know much about functional programming, first of all it is not what you think, your functions here like sin() have nothing to do with it.

      Secondly, real world functional languages allow to modify state via monads. https://en.wikipedia.org/wiki/...

      In a functional language "functions are first class citizens", that means they behave like objects. e.g. the following code:

            a = sum(sqrt(3.7), sqrt(4.2)

      Creates three function objects, one instance of sum and two of sqrt, then it evaluates the "expression tree"
      Behaving like objects means, you can store them, pass them around as parameters, create new functions by combining existing ones.

      Regarding your answers: FP is not a hype, it is ages old, most likely older than you.

      All modern languages support features of FP (C++ with functor objects, and now with lambdas), and nearly all modern languages either have lambdas or closures.

      Depending on project and Java Version I use lambdas every day. If you use the STL in C++ you can not help yourself doing FP (albeit a bit limited)

      Most prominent is probably Erlang. They used to write all the router and switching software in Ericssons gear in Erlang. https://www.erlang.org/about

      That FP is only limited used is because the modern implementations e.g. in Java are so watered down and only support a subset of usages (e.g. lambdas/closures and the Streams API: http://www.oracle.com/technetw... )

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    22. Re: FP by Anonymous Coward · · Score: 0

      Our code, optimization software for telcos using big-data (spark) is quite functional, actually the only way I would build it is as such.
      With Scala i have much less code, simpler, easier to debug...
      Except for GUI, where they make a weird couple, functional is a much better approach.

      But hey, do as you see fit.

    23. Re: FP by serviscope_minor · · Score: 1

      Kind of sounds like you're replying to the GP, not me.

      --
      SJW n. One who posts facts.
    24. Re:FP by epine · · Score: 2

      C++ - too many ways of doing things and everyone starts trying to demonstrate their extreme cleverness by trying to find the most insanely complex way of doing something using STL and Boost.

      You think that's bad?

      Someday you should count up the number of different ways God invented to compute pi.

      pi = 16 arctan(1/5) - 4 arctan(1/239)

      Seriously, any computation of pi more clever than that is pure showboat.

    25. Re: FP by Anonymous Coward · · Score: 0

      You don't know much about human interaction.

    26. Re: FP by angel'o'sphere · · Score: 1

      True, how could that happen ... I answered to ShanghaiBill.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    27. Re: FP by Hognoxious · · Score: 1

      But if you are actually passing around objects by-value by shoving them onto the call stack, you are taking it way too far.

      Nobody would be that stupid.

      I just put everything in a massive struct of doom and pass a pointer to it everywhere.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    28. Re:FP by Hognoxious · · Score: 1

      Somebody, somewhere, is thinking that simplifies to 12 arctan (1/234).

      The worrying thing is that he's probably somebody's boss. The other worrying things is that apart from "it just obviously doesn't" I can't really explain why.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    29. Re: FP by reanjr · · Score: 1

      I would guess it's because you don't need nearly as much FP code to do the work of comparatively large amounts of OOP code. All the good FP is being handled by a relatively small group of talented coders, while we keep shoveling more bad coders out of university who are more comfortable with OOP.

      For example, erlang is used in absolutely massive telecom systems. Meanwhile, OOP developers are trying to figure design patterns that work well with parallel processing, and designing complicated build and failover systems to overcome the inability to live patch.

    30. Re: FP by reanjr · · Score: 1

      "Object oriented programming is shit. It's complex, it's difficult to learn and use "correctly", it's slow to develop, and it's just plain inefficient. It's nothing more than a thought exercise except to those who want to masturbate publicly to demonstrate their egos for knowing how to use a useless language paradigm."

      Fixed that for you.

  5. Look at the hardware by Anonymous Coward · · Score: 0

    If it's machine learning and ai you are after, look at the hardware being released for this purpose.

    Familiarize yourself with the development tools.

  6. What is your goal? by guga.hagenbeck · · Score: 1

    Why do you want to study a new field? What are your expectations from it, your goals?

    1. Re: What is your goal? by Anonymous Coward · · Score: 1

      I'm in a similar situation to OP and for myself, the reason is because most employers expect you to be able to hit the ground running day 1. If you want to transfer you better find your exact position somewhere else or you have to start adapting to whatever specific tools, technologies and approaches you want to get into. A bit ridiculous but hey that's the landscape these days.

  7. Complete change of pace may be required. by Anonymous Coward · · Score: 1

    Become a plumber.

    1. Re:Complete change of pace may be required. by Anonymous Coward · · Score: 0

      Seriously.
      If you're going to be an employee you're dealing with other people's shit. Might as well cut out the middle man.

    2. Re:Complete change of pace may be required. by rogoshen1 · · Score: 1

      Well, that's removing one of the middle men at least -- perhaps try proctology ?

    3. Re:Complete change of pace may be required. by The+Fat+Bastard · · Score: 2

      I knew a guy who retired from IT to start his own roofing company in his mid-50's. Makes more money in a summer than he does all year in IT.

    4. Re:Complete change of pace may be required. by Anonymous Coward · · Score: 0

      And his job won't be outsourced to China ou India.

    5. Re: Complete change of pace may be required. by Anonymous Coward · · Score: 0

      Might as well cut out the middle man.

      That's why I dropped out of med school and became an undertaker

  8. What do you find interesting? by Anonymous Coward · · Score: 1

    Studying things that other people want you to sounds like a recipe for boredom.

    1. Re:What do you find interesting? by Anonymous Coward · · Score: 0

      YES - do you love. May you wake on Monday morning and actually look forward to going to work - that is the measure of success!

  9. Don't change career and job at the same time by Anonymous Coward · · Score: 0

    Just saying - try a change in your own company first and put in 2 years experience while studying. Then look for a new job with the education and experience in the field you are looking to change to.

  10. Become a Renaissance Person by al0ha · · Score: 3, Insightful

    Look at the opportunity out there and become skilled at something completely different. There's a crapload to be made in many skilled trades now that Baby Boomers are retiring out. Some trades like plumbing and electrician can't find enough people, and the opportunity to become very successful is wide open. Be a long time before robots take the job of a plummer, electrician and other skilled laborer.

    This is what I'd do if I were in my 30s even.

    --
    Did you ever wake up in the morning, with a Zombie Woof behind your eyes? -- FZ
    1. Re:Become a Renaissance Person by b0s0z0ku · · Score: 2

      What about teaching/academia? Neither is going anywhere quickly either.

    2. Re:Become a Renaissance Person by geoskd · · Score: 4, Insightful

      Look at the opportunity out there and become skilled at something completely different. There's a crapload to be made in many skilled trades now that Baby Boomers are retiring out. Some trades like plumbing and electrician can't find enough people, and the opportunity to become very successful is wide open. Be a long time before robots take the job of a plumber, electrician and other skilled laborer.

      It is also painfully difficult to break into either of those trades from the outside. Most places require you to be licensed to practice, and even if they don't, no insurance will touch you if you don't have the requisite certifications and/or licenses.

      If that doesn't sound too bad, look at what is required to get those credentials. Almost all accreditation programs and licensing rules require you to have at least a year or two as an apprentice under a master. The problem with that, is that there is absolutely no reason in the world that any master is going to want to take on a random apprentice. For the first two years of apprenticeships, on average the apprentice has negative value to the master (They cost more time and effort to look after than they produce in useful output). That is why the few that do offer apprenticeships, do so at minimum wage for two years. Most of the rest, even if it were of net value to the master to take on an apprentice, they would still be wary because every new apprentice that you support now will be a competitor in 5 years, and in any given middle size city (50,000 - 100,0000 metro area population), can have as few as a few dozen actual plumbers or electricians. For each new master that gets added, every single existing master will take an approximately 3% paycut; why would they willingly do that to themselves?

      Most times when you see an apprenticeship, it is a son or daughter following in the family trade, and the only reason that elder master takes on the apprentice is because they are kin.

      --
      I wish I had a good sig, but all the good ones are copyrighted
    3. Re:Become a Renaissance Person by Strider- · · Score: 2

      It really depends on where you are. In a lot of places, the trades are absolutely starved for people, and will readly accept anyone who is willing to put in the effort to actually work hard and learn the trade.

      If you're interested in electrical, always a good idea to contact your local IBEW branch, many of them will have all the information you need to get into the trade, and get better wages/benefits than you would otherwise.

      --
      ...si hoc legere nimium eruditionis habes...
    4. Re:Become a Renaissance Person by geoskd · · Score: 5, Insightful

      10 years ago, I asked at the local IBEW about it. I already have a degree that would allow me to skip half of the requisite experience to get my license, and I know what I am doing thanks to a family history (Grandfather was a lineman for a utility in California before he retired). Because I would be coming in at low seniority, I could expect two years of hit and miss work (maybe one week a month of paid work, and when they call I must show up or get dropped). After that, they said once I got a permanent position somewhere, I could begin my actual apprenticeship and could expect 2 more years of full time employment at $15 per hour before I could test for my license. Once I got the license I would have more options, but until then I was effectively a slave.

      Even at that time, I was making $25 as a line supervisor. Granted it was a dead end job at what can only be described as the shittiest company I have ever heard of, but to get that license I would have to basically go back to living in my mothers basement for 5 years, and wait with my fingers crossed that I got lucky and got the shorter end of the waiting period. Even then, I could expect a cap of around $80k per year unless I was willing to put in 80 hour weeks for years to start my own company and handle all of the business side of that deal.

      I elected to go a third route. I fought tooth and nail to get back into my principle field of study and now I make that same 80k, working 40 hour weeks, and can expect to go management sometime within the next few years to get into 6 figures.

      Going into the trades only makes sense when you still have the option of living at home to cover the rough years, and even then it only makes sense if you don't have the means to get that higher education and the degree that goes with it.

      --
      I wish I had a good sig, but all the good ones are copyrighted
    5. Re: Become a Renaissance Person by nowwith25percentmore · · Score: 1

      Is there really that much demand for new electricians? I've been seriously considering switching to that field, but the demand & pay stats I was finding online didn't seem horribly motivating.

    6. Re:Become a Renaissance Person by RKThoadan · · Score: 1

      You can rise to the top *real* quick though. My brother and brother-in-law are both master electricians. Many of the people who try to fall-back on the trades are people who are barely able to succeed at tying their shoes every morning. If you show up on time (sober), work hard, can follow instructions and aren't a total jerk you're doing better than 80% of the people and will quickly be become a guy the master electrician wants with him on every job - that can be way before any official apprenticeship starts. If you happen to understand how electricity works that's nice as well. I doubt they pay more than $15/hr, but that's not a bad wage for somebody without a degree. If you already have a degree, probably not the best idea, but far from the worst.

    7. Re:Become a Renaissance Person by GLMDesigns · · Score: 1

      Disagree totally. Academia is going to be rocked sooner rather than later.

      Right now people are saying that it's real use is making connections. Ha!!! Learning. No. Connections. (As a parent of a teenager I hear this constantly.)
      "Video killed the radio star" comes to the current university system.

      ALL lecture courses will be gone. Lab work is a different story.

      --
      If you're scared of your govt then you need to further restrict its powers
      Vote 3rd Party in 2016 and beyond
    8. Re:Become a Renaissance Person by b0s0z0ku · · Score: 1

      That's what was said 100 years ago when audio movie projectors were invented and 50 years ago when VCRs were invented. I'll believe it when I see it.

    9. Re:Become a Renaissance Person by Anonymous Coward · · Score: 0

      You have a point, but as someone who is deals with a lot of skilled trades people and unions; getting in is easier than it ever was.

    10. Re:Become a Renaissance Person by Anonymous Coward · · Score: 0

      Look at the opportunity out there and become skilled at something completely different. There's a crapload to be made in many skilled trades now that Baby Boomers are retiring out. Some trades like plumbing and electrician can't find enough people, and the opportunity to become very successful is wide open. Be a long time before robots take the job of a plummer, electrician and other skilled laborer.

      This is what I'd do if I were in my 30s even.

      Yep, then you can get a median salary of $55k a year doing more physical work instead of 3x that. Trade skills only pay well when compared to non-skilled labor or white collar make-work. And you'll still be replaced in under 20 years.

    11. Re:Become a Renaissance Person by Anonymous Coward · · Score: 0

      You can rise to the top *real* quick though. My brother and brother-in-law are both master electricians. Many of the people who try to fall-back on the trades are people who are barely able to succeed at tying their shoes every morning. If you show up on time (sober), work hard, can follow instructions and aren't a total jerk you're doing better than 80% of the people and will quickly be become a guy the master electrician wants with him on every job - that can be way before any official apprenticeship starts. If you happen to understand how electricity works that's nice as well. I doubt they pay more than $15/hr, but that's not a bad wage for somebody without a degree. If you already have a degree, probably not the best idea, but far from the worst.

      You can say this about ANY job. Be half-decent, which takes nothing, and you're practically seen as a rockstar today. $15/hr is sad for skilled labor. That's what fast food workers claim they should make. Average pay is $27/hr for a master electrician (per Google) which is about $56k pre-tax, dues, and whatever else. That's less than my first salaried job at 20. Trade skills are better than some things but they are hardly the windfall people make them out to be. If you want to be well paid, get a currently relevant degree and NEVER STOP LEARNING. It's that simple.

    12. Re:Become a Renaissance Person by Hognoxious · · Score: 1

      Almost all accreditation programs and licensing rules require you to have at least a year or two as an apprentice under a master.

      I doubt that's true for everything everywhere. My brother was looking at getting his CORGI (gas fitting) cert some years back and it was possible to do an intensive course in a couple of months if you already had the hands-on skills - which as a plumber, he did.

      In the end he was put off by the classroom side of it, but I think he could have done it if he tried.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  11. Data Science is growing hard. Developing is not. by Anonymous Coward · · Score: 0

    If you already have skills in data science, then you'd be smart to pursue it. It's a rapidly growing area, and there appear to be good salaries associated with it.

    Development, not so much.

  12. AI/Networking/Security/Law by sdinfoserv · · Score: 4, Insightful

    I'm in Seattle area... People with Cisco CNE's, Security CISSP's are constantly getting poached. Good security people bring $200k-$1M salaries out here. Network engineers make in the $100K range (as do programmers out here).
    AI is really growing an high paid, but you need a Phd to grab a top salary in AI. If you have that, you can start at the same wages (or more) of a neurosurgeon.
    If I were 21 today and starting over... seriously.. I would spend 4 years in the military. Get out and get a job as a fire fighter. They start out here at $80K. Some work 10 days on, 20 days off..(those 10 days you live in the house). Retire at 53 or 54 with a full pension and health care and spend the next 30-40 years fishing, hunting, playing with grand kids, traveling... what ever.

    1. Re:AI/Networking/Security/Law by Anonymous Coward · · Score: 0

      You may be surprised to learn that firefighters tend to die 10 to 15 years sooner then non-firefighters.

      http://futurefirefighters.org/health-and-life-expectancy-of-firefighters/

      Still, it does seem like a cool job to have and most everyone loves firefighters.

    2. Re:AI/Networking/Security/Law by jon3k · · Score: 4, Interesting

      Came here to post this. Security, security, security. It is an absolute gold rush right now and the problem is getting worse not better. I don't know how many people outside of the Bay Area or NYC are making $200k-$1M in security, but $100-$200k with only a couple years experience and a CISSP can probably get you 100-200k in pretty much any tier 1 or tier 2 city. Alternatively you can get into government contract work, get a TS(/SCI) and bounce around contractors with insanely good insurance and pretty much guaranteed work.

    3. Re:AI/Networking/Security/Law by Anonymous Coward · · Score: 0

      if you didn't die in a fire! :/

    4. Re: AI/Networking/Security/Law by Anonymous Coward · · Score: 0

      If I were 21 today and starting over... seriously.. I would spend 4 years in the military. Get out and get a job as a fire fighter. They start out here at $80K. Some work 10 days on, 20 days off..(those 10 days you live in the house). Retire at 53 or 54 with a full pension and health care and spend the next 30-40 years fishing, hunting, playing with grand kids, traveling... what ever.

      So don't see your wife and kids for 10 days at a time? Good luck with that.

      I know a lot of fighties; they don't have stable lives. None of them are going to be playing with grandkids when they are 94.

    5. Re: AI/Networking/Security/Law by Anonymous Coward · · Score: 0

      Well, as morbid as that is, I suppose it implies that you don't have to save as much for retirement.

    6. Re:AI/Networking/Security/Law by Alypius · · Score: 1

      This is hugely reassuring. I live on Whidbey Island, halfway through my MS in infosec, and about to start on a second career. I know enough to keep my 4.0 and my current day job is risk management. Can't get the CISSP because of the employment requirement, but I can get close enough and I enjoy the subject matter. Thanks!

    7. Re:AI/Networking/Security/Law by b0s0z0ku · · Score: 1, Flamebait

      Thing about the military is that you may be required to kill or do harm for causes you might not believe in. Is it really worth having this on your conscience?

    8. Re:AI/Networking/Security/Law by Anonymous Coward · · Score: 0

      This is hugely reassuring. I live on Whidbey Island, halfway through my MS in infosec, and about to start on a second career. I know enough to keep my 4.0 and my current day job is risk management. Can't get the CISSP because of the employment requirement, but I can get close enough and I enjoy the subject matter. Thanks!

      You could, however, gain an associate level CISSP with minimal work experience and upgrade to the full CISSP when you meet the employment requirements. Conversely, as you currently work in risk management, why not look at obtaining a CRISC (www.isaca.org) which is also currently a hot certification and the risk management silo of the information security field is growing.

    9. Re:AI/Networking/Security/Law by sdinfoserv · · Score: 1

      You're conscience, don't speak for me.
      Humanity is a tiny thread from chaos and mass killings. Every single event in animal history - humans included - where resource contention happens, survival turns us into vicious killing machines. Civility today in America (most of it), is a result of a rare time in human history where most have "plenty". That has never endured in the course of human existence so don't assume it will continue. ...... but it's nice that you're life, and the lives of those you care about is so sheltered, blissful and bountiful you never have to consider strife.

    10. Re:AI/Networking/Security/Law by b0s0z0ku · · Score: 1

      Why be a part of adding to strife worldwide, though?

    11. Re:AI/Networking/Security/Law by RPI+Geek · · Score: 1

      Getting a full-time firefighting job is harder than you might think.

      My brother-in-law was in the military, was deployed in a combat zone, and upon discharge (honorable and with multiple letters of recommendation) spent ~5 years trying to get into a decent firefighting academy. He went up and down the east coast and despite being in the top 10% of the test-takers, both academic and physical, he was frequently turned away because of the rampant nepotism and one person just "not liking him" (the ones who DID like him there told him he could appeal the decision or sue, but it was basically the same person who ran the appeals board and he'd just be wasting his time - but would he like another letter of recommendation?).

      He did end up with his dream job as a firefighter and is happy and secure now, but the competition is fierce and not even close to fair.

      --

      - "Nobody came out that night, not one was ever seen. But Old Man Stauf is waiting there, crazy sick and mean!"
    12. Re:AI/Networking/Security/Law by david_thornley · · Score: 1

      That's not really relevant to someone enlisting. The strife will happen, and one more or less recruit will have approximately no effect.

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
    13. Re:AI/Networking/Security/Law by Hognoxious · · Score: 1

      That's like saying that if I throw one empty bottle on the beach it doesn't matter. It matters if everyone takes the same attitude.

      Since you apparently aren't a millennial I'm surprised you haven't heard the expression "Suppose they gave a war and nobody came.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    14. Re:AI/Networking/Security/Law by david_thornley · · Score: 1

      I have heard that expression. I sang songs on that theme when I was in college. Realistically, however, large numbers of people will enlist.

      Also, in the real world, that depends on nobody from either side showing up, and that's a lot harder to arrange. It's a good thing people from all over the world showed up in WWII.

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
    15. Re:AI/Networking/Security/Law by b0s0z0ku · · Score: 1

      It's not a good thing that people showed up for WW2. It's a shame there weren't more people like Stauffenberg -- one of them would have been a true hero if they were successful.

  13. What's the question? by DogDude · · Score: 2, Insightful

    This is a terrible submission. What the hell kind of question is "what should I study" with zero context? How fucking arbitrary is this?

    --
    I don't respond to AC's.
    1. Re:What's the question? by RonLillycrop · · Score: 1

      Agreed. The answer is "whatever makes you most happy" which could be "what will make me the most money" for some and "will get me to travel the most" for others and "give me lots of social interaction" for others and "let me get my elbows-deep in pig shit" for others. It's anybody's guess what will float this guys boat.

    2. Re:What's the question? by Anonymous Coward · · Score: 0

      It deserves an ObBetteridge answer: No.

    3. Re:What's the question? by wvmarle · · Score: 1

      It also makes the answer simple.

      Study what you find interesting! If only because personal interest tends to be the strongest, longest lasting motivator.

    4. Re:What's the question? by Anonymous Coward · · Score: 0

      But duuude, he's a special snowflake and a unicorn. How can you trivialize his life decisions like that?

      --
      Agreed. This is in the top 1% of BeauHD's shitposts.

    5. Re:What's the question? by serviscope_minor · · Score: 1

      What the hell kind of question is "what should I study" with zero context?

      You know, what would be really neat is if slashdot would provide a longer summary to go along with the very brief headline. They could even have links in there. Honestly though I don't think that would work because no one would read the summary let alone the links.

      --
      SJW n. One who posts facts.
    6. Re:What's the question? by Anonymous Coward · · Score: 0

      What the hell kind of question is "what should I study" with zero context?

      You know, what would be really neat is if slashdot would provide a longer summary to go along with the very brief headline. They could even have links in there. Honestly though I don't think that would work because no one would read the summary let alone the links.

      Your post is too long, so I didn't read it. Could you provide a summary?

  14. Clarification from the original poster by Anonymous Coward · · Score: 5, Informative

    Original AC here. I should clarify - I don't want to entirely change my field of work. I still want to stay in programming, and possibly data science. I'm just really nervous about interviewing after a *very* long time, and I'm wondering how to go about it. I also have a very varied set of experiences, not specializing in any one thing - just really a matter of doing what was needed, when it was needed. I'm not sure how this will go down in interviews, and how to best portray it.

    1. Re:Clarification from the original poster by Arzaboa · · Score: 2

      Just go try it. Failing is how you learn to succeed. If you're nervous about a few interviews, go interview at a few places you don't want to work for practice. You'll figure it out, just takes some practice learning to talk the talk.

      --
      "Thanks All Folks" - P. Pig

    2. Re:Clarification from the original poster by Hognoxious · · Score: 1

      If that's the best you can do when asking a question I'd suggest you try to work your way up to ditch digger or road-sweeper.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    3. Re: Clarification from the original poster by Camembert · · Score: 1

      In general, try not to interview first for your dream job, best to have a little experience handling interviews.

    4. Re:Clarification from the original poster by LostMyBeaver · · Score: 4, Insightful

      You're making the mistake of thinking that a person in your age group should interview. I'll imagine that you're at least 35+ possibly even as high as 50. We don't interview at that age anymore. We figure out what we want to do, then we think about who we'd like to work for. Then we make the friends through social networking that would present us with the opportunity to meet the right people to get us on payroll.

      I don't even hire people I have to interview. I sometimes have lunch with someone that's recommended to me. But to be fair... as soon as I see a resume and I hear job interview, that's over with. I sure as hell don't want to hire anyone who is over 30 who is going to send me resumes.

      I have often talked with people who I find on Github and Gitter. If I like their code and they play well with others and display a good work ethic and they make the comment they're looking for a job or make hints they're interested in moving, that's a great way to meet people. Meetups are more for desperate people. It's like speed dating for people who were splashed with acid.

      If you're interested in something, invest the time in making sure people know you're a smart guy and willing to move. This way you draw jobs to you not the other way around.

      Interviewing is something you do as a college grad trying to get that first job. Or it could be something you do if you're trying to pimp yourself off to Microsoft, Amazon or Google for example. But even with those companies, I'd just make friends with senior level developers and mention that I think it would be interesting to work for a behemoth from the inside for once... but I wouldn't want to be just another badge number. I would recommend in that case that you don't express interest in their vest and rest plans.

    5. Re: Clarification from the original poster by Anonymous Coward · · Score: 1

      Actual data scientist here. Want to up your game? Learn the rarest skill among those who bill themselves as data scientists: statistics. Not R, not SPSS, for ghu's sake not SAS. Pencil and paper statistics. It's incredible how many people in data science simply cannot reason statistically, or solve elementary problems without software.

    6. Re:Clarification from the original poster by tigersha · · Score: 1

      I did that a few months ago when it looked like our company was going down down down.

      I put my name up on a online job matching agency and got one Skype interview after another. The first was a bit touch and go but is went better very quickly and I got a good feel for what the local market (Germany) is looking for. I also got a few nos but one or two interesting offers. I am 48 years old btw, with experience in SE since before Windows came out.

      In the end the company I have worked at split off our division. Into a small sort-of-startup with a research lab backing it with money so I decided to stay.

      --
      The dangers of excessive individualism are nothing compared to the oppressiveness of excessive collectivism
    7. Re:Clarification from the original poster by ranton · · Score: 2

      You're making the mistake of thinking that a person in your age group should interview. I'll imagine that you're at least 35+ possibly even as high as 50. We don't interview at that age anymore.

      That isn't my experience when job hunting. My last two roles came from recruiters / partners contacting me, but I still needed to interview. Last time I actively job searched it was a combination of companies whose recruiters contacted me and openings I found through my network. In every case if it went past a basic screening and I felt they had the necessary budget for my salary expectations, there were still interviews. For the four companies where it progressed to interviews, I interviewed with at least three people at each (one I interviewed with 10 people in 3 panel interviews). Even my previous company when one of the co-owners sought me out for the position, I was interviewed by his partner and one other senior staff member before being given the position.

      I am in the 35-40 age range and all of these roles were for Solution Principal, Development Manager, or Technical Architect positions, so they weren't entry level. I'm sure there are plenty of employers who don't care about resumes and hire purely based on recommendations or Github work, but I sincerely doubt they are the norm. I haven't run into one of these companies yet anyway.

      I would say that by your 30's you probably shouldn't be posting your resume to job boards and HR portals and just hoping for an email response or call. But that is far from saying you should expect to not interview for roles at any level of seniority. My current company just finished interviewing three candidates for our COO position (three that I know of, maybe more).

      --
      -- All that is necessary for the triumph of evil is that good men do nothing. -- Edmund Burke
    8. Re:Clarification from the original poster by mikael · · Score: 1

      I agree with this. Set up your website and blog documenting what you are interested in and have done. Then have companies come to you. Not sending your resume to startups and corporations begging for scraps.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    9. Re:Clarification from the original poster by Anonymous Coward · · Score: 0

      study C, assembly, Cobol, and Fortran. That's what I would be doing if my circumstances were optimal. Get close to the metal and traverse back into the past. It's really interesting down there. Everyone else is inventing infinite scroll web pages, destroying the internet, and dumbing things down to the lowest common denominator. Master the past to get a hold on the future.

    10. Re:Clarification from the original poster by Anonymous Coward · · Score: 0

      A question that might help you understand why you're nervous: are you nervous about the technical part of the interviews or the "human" part of them?
      If it's the technical part, maybe you need to work on your skills before thinking of moving. If it's the human part, there are YouTube videos for that.
      "I consider myself to be a good developer," -- If you've worked in one place for a long time, you should probably try to do a project with someone much more experienced from a different company. If you're in the UK, try hanging out with some contractors.
      Also, head onto a jobs board and look at jobs that pay two+ levels more than your current salary. That can give you an idea of where you'd like to head. The more jobs for a particular title/skill, the more likely you will be able to move in that direction easily.

    11. Re:Clarification from the original poster by Anonymous Coward · · Score: 0

      You're making the mistake of thinking that a person in your age group should interview. I'll imagine that you're at least 35+ possibly even as high as 50. We don't interview at that age anymore. We figure out what we want to do, then we think about who we'd like to work for. Then we make the friends through social networking that would present us with the opportunity to meet the right people to get us on payroll.

      I don't even hire people I have to interview. I sometimes have lunch with someone that's recommended to me. But to be fair... as soon as I see a resume and I hear job interview, that's over with. I sure as hell don't want to hire anyone who is over 30 who is going to send me resumes.

      I have often talked with people who I find on Github and Gitter. If I like their code and they play well with others and display a good work ethic and they make the comment they're looking for a job or make hints they're interested in moving, that's a great way to meet people. Meetups are more for desperate people. It's like speed dating for people who were splashed with acid.

      If you're interested in something, invest the time in making sure people know you're a smart guy and willing to move. This way you draw jobs to you not the other way around.

      Interviewing is something you do as a college grad trying to get that first job. Or it could be something you do if you're trying to pimp yourself off to Microsoft, Amazon or Google for example. But even with those companies, I'd just make friends with senior level developers and mention that I think it would be interesting to work for a behemoth from the inside for once... but I wouldn't want to be just another badge number. I would recommend in that case that you don't express interest in their vest and rest plans.

      It's pretty clear you haven't actually worked for or spoken with the people that you're talking about at Amazon, Google, MS, etc... A recommendation from a Senior Principle at Amazon, for example, will definitely give you a leg up and could even help push you to a higher position but you will absolutely still interview. An interview is about getting to know someone, how they think, how they work, if they're team players, can they work in YOUR environment and in some cases do they have a specific set of knowledge.

      You sound like an FOSS or consulting person which are often hired via word of mouth only. Of course they're also seen as very disposable at a project level, at least. Can't do the job as well as they said they could, just replace them. Finished whatever they were good at? Replace them with someone who's good at the new project. Basically you're a recruiter for an IT gig economy.

  15. As long as you remain task oriented by bferrell · · Score: 1

    You're gonna stay stuck doing tasks and getting bored.

    If you can, find a principal you like/admire/challenges you.

  16. Medicine, law, geology by Anonymous Coward · · Score: 0

    But not tech unless you like it as a hobby. Too many people get a price of paper and hate the job.

    Find a passion and learn that.

  17. Slow news day? by OrangeTide · · Score: 1

    I thought I accidentally went to Reddit.

    --
    “Common sense is not so common.” — Voltaire
  18. Landscaping by Anonymous Coward · · Score: 0

    It's pretty simple to make a pile of dough for yourself. Get a pickup truck and small trailer for lawmowers. Buy a couple of Snapper push mowers. Hire two beaners from that bunch that hangs around 7-11. Pay them cash $10/hr, but only when you have work from the to do. Print a few flyers. Mow rich people's lawns for $150 to $200 per pop. Once you get rolling, you can do about a dozen customers per day, as many days as you are willing to work. Figure $2K per day, $60K per month.

    Fuck DevOps.

    1. Re:Landscaping by Anonymous Coward · · Score: 0

      Spoken like a lifelong cubicle slave who has no fucking clue about starting a business.

  19. See job 1st, later pick course for your job. by Anonymous Coward · · Score: 0

    If you want to get much $$$ money, i recommend you to study Economy, Marketing, etc.

    The rest of courses are dying ... and for badly paid jobs.

  20. Derp by TimMD909 · · Score: 1
    1. Re:Derp by UnknownSoldier · · Score: 5, Insightful

      That's partially crap advice by Mike Rowe.

      The secret to happiness is to remove false expectations

      Yes, some people absolutely SUCK at what they love. The deluded ones are the ones who definitely SHOULD follow Mike's advice. They suck and always will, and no amount of talent will save them.

      The problem Mike is painting everyone with the same brush. That does NOT imply that they will NEVER get better.

      When I first started programming I sucked -- like every other fucking newbie -- because that's what a beginner is. Someone who DOESN'T have the knowledge and skills. I kept at it because I _loved_ it. I invested the years to becoming great. Today it pays the bills and I have a job that doesn't suck.

      One of the secrets to life is to find what you love, and what your talents are.

      Chances are, that if you invest in yourself, you can find a way for it to make you money.

      There is no guarantees in Life. That's what makes it frustrating. Life isn't a simple checkbox-follow-these-instructions-and-success-is-guaranteed. Life is what you make it. Sometimes you need to _try_ things in order to know what _not_ to like.

      Invest in yourself -- because chances are, no one else will.

    2. Re:Derp by Anonymous Coward · · Score: 0

      He founded MikeRoweSoft. That multi-billion company.

      How can his advice be "crap" if he's so successful?

    3. Re:Derp by Anonymous Coward · · Score: 0

      That's partially crap advice by Mike Rowe.

      One of the secrets to life is to find what you love, and what your talents are.

      It's only crap advice if you follow it blindly without trying to understand it. Same thing also applies to all advice by the way.

      My take away is apparently different than yours. You seem to be under the impression that you need to work really hard to be a good enough programmer to make a living at it. Ok, if it makes you happy, but I think that's missing the point.

      In my opinion, that advice was about finding something you're inherently good at that will relatively easily allow you to earn a decent living. Then you go and find your passion and happiness already having the needs for a sense of security and purpose fulfilled, without trying to force these needs on whatever passion you find.

      Basically... poster needs a hobby, not a new career.

    4. Re:Derp by UnknownSoldier · · Score: 1

      > It's only crap advice if you follow it blindly without trying to understand it

      Exactly.

      > You seem to be under the impression that you need to work really hard to be a good enough programmer

      I didn't say "good", I said "great" -- sorry if I gave the wrong impression.

      You k now that cliche:

      It takes 10,000 hours to master something.

      People seem to think that success is an over-night thing -- and forget that it takes years before you truly master something.

      Programming has always been extremely easy for me. It has been my 1st love; nothing even comes close. I have invested most of life in it due to:

      * I started around ~10,
      * There is a LOT to know,
      * I am always looking to be better,
      * There is ALWAYS something to learn,
      * I love tearing apart programs and reading what the assembly is doing, and.
      * 50% of what makes a good programmer is only technical. The *other* 50% has nothing to do with programming. If you aren't responsible, can't communicate, can't estimate, can't prioritize, etc. then you will suck regardless of how great technically you are.

      i.e.
      If you are not working to improve your craft then you are in danger of being stagnant.

      Programming was my passion. I just happened to be "lucky" that it was also my talent. Mike gives the false impression that being passionate about your talent is not possible -- which is simply false.

    5. Re:Derp by david_thornley · · Score: 1

      I've got a friend who followed his passion and got a degree in medieval history. After a rather unpleasant attempt at a career, he went back and got his MBA, and things improved. Fortunately, my passion when young was mathematics, which is a heck of a lot more salable in the job market.

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  21. AWS Cert by TheSync · · Score: 2

    Get an AWS Cert, best study material is Udemy A Cloud Guru (Ryan Kroonenburg). I spent a few weeks on it, and passed my AWS cert, plus have a great introductory understanding of AWS cloud.

  22. Innovation by JaredOfEuropa · · Score: 3, Interesting

    I have worked on many different projects [...] I tend to think of that as something I can learn, when I need to.

    Sounds like you're a bit of a generalist with the will and ability to dive into a specialism when needed. If you really feel you need to "pick a side" and specialize, then all advice I can offer is: find something you love doing and specialize in that. But if you enjoy the learning process itself, the experimenting and ground-breaking work with new tech, then maybe you can find a job working in an innovation team.

    Innovation is a bit of a buzzword, but there is plenty of legit innovation work out there. Innovation teams often offer a chance to learn new tech or new ways of doing things, and require a lot of flexibility from their team members. Perhaps that will suit you... I've been involved in innovation for 20 years or so, and I not only enjoy the great variety of technologies I have to deal with, but also the fact that I often get to wear many different hats: from project manager, team lead, architect, to coder and business analyst. Sometimes you'll be a one man team, sometimes the team will need someone to write a couple of tests for tomorrow's experiment or prepare a short presentation for a visiting VC, and yes I am sticking up my hand to volunteer. If you think that doing something yourself is often faster than getting others to do it for you, and if you can actually deliver results that way, then innovation might be something for you.

    Positions in innovative work are few and far between and are often sought after, so you need to position yourself well for that when preparing your CV. Your background in data science and your machine learning study will help, since those fields are currently firmly hanging ten at the top of the hype cycle. But also emphasize your versatility as it's a key quality in such roles: show that you have experience in adapting to circumstances, and in diving in when the project calls for it.

    --
    If construction was anything like programming, an incorrectly fitted lock would bring down the entire building...
  23. Art. (No joke) by Qbertino · · Score: 4, Interesting

    Study art. Better yet: *Train* for an art.

    Seriously. Is there an art (performing art in particular) where you say "OMG that is so awesome, I wish I could do that."? Study/train that. Obviously there are limits. If you're in a wheelchair doing ballet won't work. But perhaps music, singing, acting is something that would be an interesting challenge. I have a diploma in performing arts and even though I've never done anything remotely like that in the last 2 decades (except being quite good at social dancing (Argentine Tango)), the experience was like nothing else. It does help me do presentations, that's obvious, but I've also learned about styles and aesthetics, art history and how to move gracefully. It helps me with GUI design and understanding emotional aspects of the user experience.

    Imagine getting a Chello and learning that. Your horizon will expand into a universe you couldn't dream of knowing doing IT/Software every day for the rest of your life. You probably have IT pretty much down and getting into some newfangled technology or PL is a walk in the park once you've got a broader perspective on life in general.

    Art most likely won't earn you big bucks but from what I get that's not what you need right now anyway. Note that fine art is closer to programming as an art than performing arts, so I strongly suggest performing arts, but perhaps you do want to get into drawing or painting or illustraiont or - an intersection with IT - 3D/VR and stuff - then fine art might be a neat alternative.

    But generally rest asured, if you move away from IT and into an art, your life in general will improve for the better. Especially with your life right now having you struggling for sense and meaning. If only art becomes an enriching addition to your life as an IT expert right now, that will spill over into your IT career and have measurable positive effects. Promise.

    My 2 cents.

    --
    We suffer more in our imagination than in reality. - Seneca
    1. Re:Art. (No joke) by tigersha · · Score: 2

      In particular, if yiu have anything to do with UI work at least take a dedign course. Lots of them around. Start with reading David Kadavys book ‘Design for Hackers’

      --
      The dangers of excessive individualism are nothing compared to the oppressiveness of excessive collectivism
    2. Re:Art. (No joke) by nastyphil · · Score: 1

      I second this. I am completing my masters in Art History this year, on the back of 25 years in IT. It has been a phenomenally broadening experience.

      If you are already a mature expert in *anything*, then an interdisciplinary study is a significant multiplier to your ability to think abstractly and architecturally.

      --
      Dialectician. Archology.
    3. Re:Art. (No joke) by Anonymous Coward · · Score: 0

      Study art. Better yet: *Train* for an art.

      Seriously. Is there an art (performing art in particular) where you say "OMG that is so awesome, I wish I could do that."? Study/train that. Obviously there are limits. If you're in a wheelchair doing ballet won't work. But perhaps music, singing, acting is something that would be an interesting challenge. I have a diploma in performing arts and even though I've never done anything remotely like that in the last 2 decades (except being quite good at social dancing (Argentine Tango)), the experience was like nothing else. It does help me do presentations, that's obvious, but I've also learned about styles and aesthetics, art history and how to move gracefully. It helps me with GUI design and understanding emotional aspects of the user experience.

      Imagine getting a Chello and learning that. Your horizon will expand into a universe you couldn't dream of knowing doing IT/Software every day for the rest of your life. You probably have IT pretty much down and getting into some newfangled technology or PL is a walk in the park once you've got a broader perspective on life in general.

      Art most likely won't earn you big bucks but from what I get that's not what you need right now anyway. Note that fine art is closer to programming as an art than performing arts, so I strongly suggest performing arts, but perhaps you do want to get into drawing or painting or illustraiont or - an intersection with IT - 3D/VR and stuff - then fine art might be a neat alternative.

      But generally rest asured, if you move away from IT and into an art, your life in general will improve for the better. Especially with your life right now having you struggling for sense and meaning. If only art becomes an enriching addition to your life as an IT expert right now, that will spill over into your IT career and have measurable positive effects. Promise.

      My 2 cents.

      Worst advice ever. Seriously. Incredibly misguided, almost certain to destroy this persons life and almost cult like in tone. "Moving away from IT and into art, your life in general will improve for the better?" What sort of asinine blanket statement is that? Who are you to know what will improve anyone's life but your own. What if he doesn't like art? Since when is living in poverty an improvement? You just assume the OP doesn't need money but maybe that's because he has a decent paying job. Starving artist was coined specifically because most people can't support themselves, let alone a family, on an artists salary. And where does the OP say their struggling for sense and meaning in their life? Project much? They actually said they were happy in their general field and were looking for advice on how to transition into something more targeted and probably at a different company.

      Many people in IT have these things called hobbies. These hobbies often fall outside or are ancillary to their main job. Personally, my hobbies include things like playing various instruments, photography, and mountain climbing. You CAN make these into jobs but they are niche. Art is a niche industry and most artists will be poor by most people's standards. It makes far more sense to just cut back to freelance or consulting work and spend more time on hobbies, maybe even playing around with monetizing them, then it does to shit all over your career to become a starving artist.

  24. Real Estate by Anonymous Coward · · Score: 0

    Real Estate at Trump University. It's just makes good business sense. With a small loan of one million dollars you could be well on your way to becoming our next president! We salute you, good sir, and will see you at the polls adrer a few erections.

  25. Japanese by Anonymous Coward · · Score: 0

    So you can watch all the anime when you are unemployed.
    Seriously, why do people think it's a good idea to change fields after doing the same job for years without any interest in advances in technology?
    You think going back to school is going to help you there?
    It's a mind set, not something you can just read in a book.

  26. Computer Aided Productivity/Living Might Be Cool by dryriver · · Score: 1

    Imagine some kind of quasi-intelligent software technology that lets you manage all the scattered pieces of your digital life in one slick UI. Your photos/videos. Your emails. Your office documents and source code files. Your daily task list. Your games and apps and movies and music. Phonecalls you should make. People you should meet up with. Places you want to visit or dine at. Websites and blogs and social media accounts you should check for news or information or research on. Things you have to pay for. Things you have to file or send off to somewhere. Things you have to physically do. Things you are waiting to be delivered to you. Pretty much anything you have to do or want to do in any given week of your work and leisure time. But not a stupid "cloud service" where all this sits on somebody else's datacenter servers half a world away where it is datamined to death, or is accessed through some stupid smartspeaker device that is also tethered into the internet, peeking into your home and work and general life all the time. A fluid, intelligently designed visual user interface that sits firmly on your computing devices/home server of choice, does not constantly send collected info about you to some faceless corporation, and can keep track of pretty much anything in your life for you, and even launch 3rd party software for you when you click on a task, or intelligently automate many tasks for you, such as ordering flowers for your wife from a particular internet site on Tuesday, or waiting for a certain stock to hit a certain value level and then buying 500 Dollars worth of that stock. Your server side coding, UI design and data science experience would probably be perfect for creating something like that. A sort of Super-UI through which you can perform and keep track of a hundred different necessary tasks, but one that gives you peace of mind because all data is local - not sent to 3rd parties over the internet. If I had your particular skills, I'd probably build something like that.

    --
    Why did the chicken cross the road? Because Elon Musk put an AI chip in its head.
  27. Three options by Anonymous Coward · · Score: 0

    Want to make serious money = get a CISSP and be a security professional. Crazy money is being made now and for the next 10 years easy.

    Want to take the mind off, not work in an office and like working with your hands = electrician or plumber. They make good money some of the work sux but you are not stuck in an office/cube.

    Want to be happy = do what you like/love but don't expect money.

  28. Those who can't do... by Lab+Rat+Jason · · Score: 2

    teach.

    --
    Which has more power: the hammer, or the anvil?
    1. Re:Those who can't do... by b0s0z0ku · · Score: 4, Insightful

      Nothing wrong with teaching, often more enjoyable than doing, when the people who hire you to "do" typically treat you like disposable trash. OTOH, teachers in blue states and at university level are actually valued.

    2. Re:Those who can't do... by Anonymous Coward · · Score: 0

      They're not valued in blue states, they're worshipped.

    3. Re:Those who can't do... by Anonymous Coward · · Score: 0

      And those that can't teach... teach gym ;-)

    4. Re:Those who can't do... by Anonymous Coward · · Score: 0

      Better to worship good teachers than a god who requires you to hate on someone else.

  29. Merkin Maker by Anonymous Coward · · Score: 0

    You might really enjoy making merkins.

  30. Re:How old are you? by Anonymous Coward · · Score: 3, Insightful

    Why does it matter?

    Stop being an ageist prick.

  31. Re:How old are you? by Memnos · · Score: 2

    They mentioned "after many years at the same company" and "since my graduate studies", so you can probably set a lower bound just from those hints.

    --
    I don't trust atoms -- they make up stuff.
  32. University Staff or Faculty by Anonymous Coward · · Score: 0

    Depending on your feelings about it, you might consider seeing if you could help out a university looking for people to help with their data science programs. It would be a major shift, it would probably be a lot of fun, and you'd get to help students out, so it's at least worth looking into. In the alternative, maybe pick up a masters in a new field.

  33. Ask Slashdot: What should I have for lunch? by Anonymous Coward · · Score: 0

    For all the Facebook outrage, this site is resembling FB more every day.

  34. How tall are you? by Anonymous Coward · · Score: 0

    You could try out for the NBA.. seriously

  35. There are only 2 real answers: by UnknownSoldier · · Score: 3, Informative

    * Do what interests you, and/or
    * Do what pays.

    Next question.

    1. Re: There are only 2 real answers: by TJHook3r · · Score: 1

      Pick one :(

    2. Re:There are only 2 real answers: by Anonymous Coward · · Score: 0

      right answers but in wrong order

    3. Re:There are only 2 real answers: by UnknownSoldier · · Score: 1

      Did you catch that: "and/or" ? ;-)

  36. AI, ML, automation by Pfhorrest · · Score: 1

    For long-term job security, either get into AI / machine learning / anything to do with automation, or else something as immune to automation as possible, because those will be the last jobs to go.

    --
    -Forrest Cameranesi, Geek of all Trades
    "I am Sam. Sam I am. I do not like trolls, flames, or spam."
    1. Re: AI, ML, automation by TJHook3r · · Score: 1

      Last job to go will be soldier, fighting the robots!

    2. Re:AI, ML, automation by Tablizer · · Score: 2

      For long-term job security, either get into AI / machine learning / anything to do with automation

      It's possible we are in an AI bubble*, so be careful, because in the shorter term you still have to pay the bills.

      I would suggest you pick 3 areas that pique your interest and explore them deeper, including asking practitioners. After you know the 3 better, then select 1 to focus on in a formal career sense.

      By the way, genetics/data-biology seems like it has a bright future: it doesn't smell as bubbly as AI, yet gene scanning is growing ever cheaper such that there will be tons of genetic data to analyze. We will soon get to the point where it's economical to scan the entire DNA of an individual patient.

      * AI is not going away, but we may hit a wall or two where too much money is chasing too few practical results for a few years and investors lose patience, pulling the plug on tons of R&D, sending AI researchers flooding the resume boards.

    3. Re:AI, ML, automation by Anonymous Coward · · Score: 0

      Pssst, plastics!

  37. Something that allows you to teach... by b0s0z0ku · · Score: 1

    Go back to school, get a master's or Ph D. If you can teach at a university level, the working conditions (hours, ability to have fun, ability to do one's own research, prestige) can't really be beat.

    Medical school (even abroad), residency, and working as a physician or researcher is also a nice gig. Consider going abroad and staying -- steady pay from a public system + benefits + ability to help people are good things.

  38. Teaching? by Anonymous Coward · · Score: 0

    You might consider becoming a high school computer science teacher. Thereâ(TM)s tremendous demand for people with your skills, although you would also need to learn/develop classroom management, curriculum design and other teaching skills (non-trivial). I left high tech to become a high school teacher 17 years ago. For the right person, teaching is an amazing, rewarding and demanding career. Many states have professional hire programs for computer science teachers that help you shortcut the typical two year ed degree rigamarole. Give it some thought. JR

  39. Try Psychology... by Anonymous Coward · · Score: 1

    ... especially the Dunning-Kruger effect.

  40. Formal logic and critical thinking by Anonymous Coward · · Score: 0

    Everyone believes they have it. Most believe they have studied it. Only the rare few actually can truthfully say they have books on their shelves on syllogisms, categorical logic, set theory, and criticality.

    Do that and you will leave the echelons of truly good developers below you.

  41. The cynical yet logical side of me says. by AbRASiON · · Score: 1

    Wilderness survival.
    Cabin building.
    Water cleansing.
    Very Basic engineering / how to use your hands.
    Woodworking.
    AGRICULTURE.
    Animal husbandry.
    Basic medicine / biology.
    Basic weapons and self defence training.
    Sustainable energy generation.
    How to build a basic windmill / watermill.
    Oh and did I mention
    AGRICULTURE?

  42. Re:AlexJonesExposed.info by Anonymous Coward · · Score: 0

    Fucking jews.

  43. Be Careful About Your Salary by Anonymous Coward · · Score: 0

    I have a theory about careers and life. Most people are doing the thing that they can get paid the most for. OK, sure, some people lumber along with untapped potential, and occasionally they break out of their rut and hit the big time. That is not the usual story though.

    So you must be very careful about your salary. If you do something sufficiently different, you will 'starting over' in some sense. Yes you have experience but your employer won't be willing to accept that experience as relevant for your new job. Or at least that's the danger.

    Are you willing to take a major salary hit? Most are not. We tend to adopt a lifestyle up the level of our ability to pay. This means that you have limitations on your level of change you can accept.

    Should this be true, then either:

    1). Branch out to different activities at your current company. This is the safest play. Unfortunately it sounds like you have already done a lot of this and it no longer appeals. I'm speaking of different activities in your current position, by the way;
    2). Apply for a different job at your current company. Still reasonably safe, this will be helpful in getting credit for all those years of experience you now have;
    3). Apply for a very similar job at a different company. While this might seem to keep you in your rut, I doubt that's true here. Certain kinds of jobs have cookie-cutter duties in most companies, but IT is rarely one of those cookie-cutter situations.

    Personally I'm a fan of #3. I did it years ago to escape a poor employer and it paid off. The different organizational dynamics played out at both the macro and micro levels. It refreshed my entire career prospects and revitalized my personal outlook as well.

  44. The dick sucking factory is hiring by Anonymous Coward · · Score: 0

    and they give on the job training

  45. Follow either passion or money, pick 1 by Anonymous Coward · · Score: 0

    Follow either passion or money, pick 1.

    When I got all the money I was willing to whore myself out to achieve, I started following my passions. Been doing that the last 10 yrs. I sleep better, lost 80 lbs, travel more, see family much more, and life is fun again. I work about 80% less than before.

    If you can find people who want to pay you for following your passion, that isn't so bad either, provided it fits your new desired schedule.

  46. Re:How old are you? by Anonymous Coward · · Score: 0

    Why not ask if they are a woman, eye colour, black, jewish, have ginger hair, or how many kids they have?

    You're being an utter cunt by asking this question, and the real tragedy is you don't even realize it.

  47. Porn production by Anonymous Coward · · Score: 0

    It's the one business that's guaranteed to never become obsolete.

    1. Re:Porn production by Anonymous Coward · · Score: 0

      As one Linotype copper-plate print-shop worker said, "No one wants a stripper that's over 50".

  48. How near to 40? by TJHook3r · · Score: 1

    Retirement age in IT!

  49. Phrenology and Astrology by goombah99 · · Score: 2

    Historically Phrenology has been a more reliable source of income than AI skills. AI comes and goes in popularity. Phrenology and Astrology are forever.

    --
    Some drink at the fountain of knowledge. Others just gargle.
  50. why don't you study by Anonymous Coward · · Score: 0

    how to not be a whinging douchebag

  51. Re:How old are you? by Anonymous Coward · · Score: 0

    Hmmm, you seem new to the human race. Here's a hint: OTHER people *will* ask.

  52. Biotechnology by coastwalker · · Score: 3, Insightful

    Bioscience. We had digital technology in the 20th Century and we will have Biotechnology in the 21st. You can thank me later.

    --
    Facts are history now plebs have politics for religion on social media.
    1. Re:Biotechnology by Anonymous Coward · · Score: 0

      Broscience. No carbs after 6pm. Curls for the girls, tris for the guys. 2g protein/day/lb of weight. You can thank me later.

  53. Girls and drinking by Bite+The+Pillow · · Score: 1

    Girls and drinking. Or boys and weed if that's legal. Or just social customs on websites or people.

  54. Re: How old are you? by Anonymous Coward · · Score: 0

    actually that is important information at the dick sucking factory

  55. Plumbing and HVAC by Virtucon · · Score: 1

    I'd avoid any career in IT or Software Development. Why? Companies 20 years ago viewed IT as a core competency that needed to be developed in house and fostered. Now they view it as something that they can buy or outsource. That's not good if you're starting out and looking to get 40+ years in the industry. Sure, there's always web development jobs but all these bootcamps and schools popping out web developers only plays into the hands of minimal wage growth.

    My suggestion, apprentice as a Plumber or HVAC tech. Both are well paid, in-demand and everybody has plugged up a toilet from time to time.

    --
    Harrison's Postulate - "For every action there is an equal and opposite criticism"
    1. Re:Plumbing and HVAC by Anonymous Coward · · Score: 0

      Excellent advice!

      And you get to use your hands to physically build something, instead of, um, using them in front of a computer

  56. Re: How old are you? by Anonymous Coward · · Score: 0

    No, you're being an utter fool.
    Age matters. If you're old, male, and white good fucking luck finding a new career.

  57. Re: How old are you? by Anonymous Coward · · Score: 0

    itâ(TM)s pretty goddamn easy though. Maybe you just suck

  58. easy by e**(i+pi)-1 · · Score: 1

    decision science with focus on cost-benefit analysis.

  59. Re: How old are you? by b0s0z0ku · · Score: 4, Interesting

    Funny, I know quite a few 35-40 year old men just starting med school. I know some 45 year old new Ph D.'s as well. Problem is that American white men are their own worst enemy -- they're expected to follow a career for life by society, like some 1950s nightmare. Society doesn't jugge a 40 year old woman going back to school OTOH.

  60. Re: How old are you? by Anonymous Coward · · Score: 0

    " Society doesn't jugge a 40 year old woman "

    I haven't jugged a 40 year old woman recently, is it like motorboating?

  61. Here is something to consider.. by Anonymous Coward · · Score: 0

    Life !

  62. Do what interests you by guruevi · · Score: 1

    If you're looking for variety, go into sysadmin/operations type jobs with a healthy dose of in-house development, perhaps a small business or startup.

    Alternatively given your brief resume, I have a feeling you may be more into research/academics, if you want to do research yourself, get/finish/use a PhD but otherwise good institutions are always clamoring for good people (data/computational/research scientist) regardless of your degree. If you go more into the administration/operations of a research institution rather than the academia, you'll get to do a lot of stuff.

    If you just want to make money, right now I'd say, find the recent buzzword and apply for jobs - hundreds of applicants are lining up for AI-related point-and-click programming and for some weird reason companies are paying up the wazoo for them. But real commercial programming is not very prevalent anymore, you're usually tying together some cloud accounts these days and a workflow in between them, it's boring.

    --
    Custom electronics and digital signage for your business: www.evcircuits.com
  63. Tits by Anonymous Coward · · Score: 0

    And pussies.

  64. The answer by Provocateur · · Score: 1

    Rocket science.
     
    To boldly go where no man has gone before.

    --
    WARNING: Smartphones have side effects--most of them undocumented.
  65. Re:How old are you? by mnemotronic · · Score: 3, Insightful
    Does age matter? Let's say you're Baby-boomer age, say 55, and do some math ....

    What's that you say?

    ... so all suggestions are welcome!

    Well OK then. Let's really try thinking outside-the-box. Start studying medicine with a long-term plan on getting a job in Pediatric ICU or Pediatric cardiac OR.

    • 4 years undergrad (unless you've already done it)
    • 4 years Medical school
    • 3 years Pediatric Residency
    • 3 years Anesthesiology Residency
    • 3 years Pediatric ICU Fellowship
    • 1 year Pediatric Anesthesiology Fellowship
    • 1 year Pediatric Cardiac Anesthesiology Fellowship

    Roughly 19 years schooling, residency and fellowship.

    That means you'll be about 75 by the time you're ready to start work. You might have racked up some enormous education bills to pay off. Just guessing that'll take 10 years to pay off. Then you can start saving for retirement. Another 30 years ought to do the trick. Assuming that Parkinson's or Alzheimer's hasn't set in by then, you can probably look forward to settling into a nice relaxing retirement at 105. Tee time's 5am. Be there!

    Did I go for a worst-case scenario? Obviously. Just to make a point age can be a relevant factor.

    --
    The Russians have won. They have made the world a cesspool of distrust, greed, fear and hate.
  66. Re:How old are you? by Anonymous Coward · · Score: 0

    No, you are still wrong. Your argument for being ageist is fundamentally: "don't advise people to do things they can't be guaranteed to complete".

    There is a lot to be had by going on the journey, and if someone wants to start a medicine career at 55 then good on them. If they can't complete it because they die along the way, then so be it.

    I assure you that the use of age as a qualifier for advice, will only ever result in prejudice and cannot be useful or constructive in any way.

  67. What did I just read? by Anonymous Coward · · Score: 0

    Your graduate studies specialized in machine learning...but you 'haven't particularly kept up with new technology' and 'after working for so long' are here asking what you should study next?

    You didn't work long - graduate studies specializing in machine learning and working 'long' don't go hand in hand. Maybe it's long to you...but it's not long to people that have been working long lol.

    1. Re:What did I just read? by Anonymous Coward · · Score: 0

      Spoken like someone who doesn't know jack shit about machine learning.

      Maybe he was doing expert systems in the 1980s and he just said machine learning because it was easier, but more likely it was actually machine learning in the 1990s because that is when it was popular. Hell, I worked with genetic algorithms as an undergrad in the late 1990s and we had an intro to AI course.

      Or maybe he actually did cutting edge research (unlike most PhDs) that was just based on some original works from the 1950s.

  68. Data analysis by thePsychologist · · Score: 1

    Every second job involving a little math is basically data analysis right now. If you already some data to play with, you can get hands-on experience as well.

    --
    "What lies behind us, and what lies before us are tiny matters compared to what lies within us." Ralph Waldo Emerson
  69. Re:How old are you? by Anonymous Coward · · Score: 0

    You're being an utter cunt by asking this question, and the real tragedy is you don't even realize it.

    What do you suppose calling someone a cunt says about yourself?

    Some professions have practical and or mandatory retirement ages. For older people ROI on perusing career choices requiring spending $$$ and time in school for many years may not add up. You can forget about joining virtually any branch of military once you've reached mid 30's.

    Why not ask if they are a woman

    Female prostitutes, porn actresses, models, hooters girls and booth babes are in much higher demand than their male counterparts. Younger women tend to be more attractive and can be expected to make more in these fields.

    eye colour ,blacks, jewish, have ginger hair,

    All seems rather pointless.

    or how many kids they have?

    This is a very important question. The more kids you have the more you have to make and the less time you have to make it. This means whoring yourself out to the highest bidder without regard for personal choice or moral consideration. If you end up at Facebook or LinkedIn or a Male Gigolo that's fine so long as your making bank and punching out at 5.

  70. Re:How old are you? by Anonymous Coward · · Score: 0

    use your skills in the service of what is right... avoid companies who are evil... such as facebook, google, amazon, microsoft, apple and sony

  71. Quantum Computing by Darkling-MHCN · · Score: 1

    Go to a seminar on Quantum Computing, one thing you'll quickly pick up in the audience is that there are a lot of people who have experience with quantum physics.
      There are also a lot of people who have great skills in computer programming. There's almost no one who has an understanding of both.

    At some stage in the future quantum computing may be abstract enough for developers to not need an understanding of quantum physics in the same way most developers don't understand nand and nor gates transitors, multiplexors etc etc. However we're a long way from that and in the interim there'll be shortage of people who understand quantum computer design and programming

  72. I was in a similar position. by wertigon · · Score: 1

    After five years at the same company doing the same soul-sucking work in web development, I decided to hit the books again.

    For me, I decided to start fresh and go to university for a bachelor and master title in embedded systems, but if you already got those under your belt, then you can always apply for a Ph. D. position at any university in the world. While an MIT or Stanford Ph. D. does come with great bragging rights, many other smaller universities, especially abroad, are happy to have you. Like the one I went to, which is a small but focused university able to compete with many bigger universities in my specific field (Embedded).

    If Academia isn't a suitable position then pick any field of interest and learn enough to land a job in that.

    --
    systemd is not an init system. It's a GNU replacement.
  73. Re:How old are you? by Anonymous Coward · · Score: 0

    "What do you suppose calling someone a cunt says about yourself?"

    I don't give a shit what you think about me. I know I'm not a prejudiced dick-head who is stuck defending an indefensible position, brought about through your delusion.

    Good fucking luck with life, cunt.

  74. Re: How old are you? by Anonymous Coward · · Score: 0

    You're a sad person.

  75. Re: How old are you? by Anonymous Coward · · Score: 0

    Hello, OP here

    That sounds like something right up my street

  76. And I cannot overemphasize by gargleblast · · Score: 1

    Animal husbandry

    1. Re:And I cannot overemphasize by AbRASiON · · Score: 1

      I'm not sure if you're kidding (because I certainly think the term is hilarious) but sadly, it is the right term, I believe, for animal rearing for breeding.

      Christ I hope that's the right 'rearing' in context.

  77. Do physics by Anonymous Coward · · Score: 0

    Lots and lots of Physics.

  78. Re:How old are you? by Anonymous Coward · · Score: 0

    "Tee time's 5am."

    Bit early for 18 holes, no?

  79. tl;dr by zifn4b · · Score: 1

    You need to get a piece of paper that demonstrates that you have mastered an in-demand discipline in the economic sense so that you can have a place to live and food to eat and hopefully be able to retire some day. The consequences of not doing this are likely to be poverty unless you come from a wealthy family.

    --
    We'll make great pets
  80. Additive manufacturing by Anonymous Coward · · Score: 0

    Study any programming applicable to additive manufacturing. Many facets of this. Build path generation. Building cloud apps to run algorithms on shape optimization. Ananysis codes to presict behavior. User interfaces to manipulate 3d geometry. The industry is on a high growth trajectory.

  81. No guarantees by Anonymous Coward · · Score: 0

    This is an difficult question to answer mostly because we are in a period of incredibly rapid change and there are no guarantees. To put that remark in perspective, see the Metcalfe Foundation's report for the Ontario (Canada) government called "Working Better" (https://metcalffoundation.com/stories/publications/working-better-creating-a-high-performing-labour-market-in-ontario-2/). On p. 23, you will see a graphic showing the fragmented career path that is currently our reality. This is how things are and it isn't likely to change in the near future.

    One of the best choices you can make is to study something different from what you are doing now, but which could apply to what you are doing now. If, for example, a programmer was working on computer games, studying art might be useful. If you are working for a bank, studying eCommerce might be useful. It all depends. Carl Bereiter (Bereiter, C. (2002). Education and mind in the knowledge age. Mahwah, NJ: Lawrence Erlbaum Associates) suggests that a traditional liberal arts education, with its emphasis on diverse subjects, analysis and clear thinking, is very useful when things are as uncertain as they are now.

  82. No new tech by Anonymous Coward · · Score: 0

    Don't worry, no new software tech since the 70s. Mostly just brushing up on the latest buzzwords and finding out which of the 50 year old technology they're actually talking about. Getting familiar with the latest tools is important, even if those tools are just reincarnations of old tools.

  83. Nursing by Anonymous Coward · · Score: 0

    There's a high demand for nurses (male or female). .....and commercial truck drivers.

    1. Re:Nursing by b0s0z0ku · · Score: 1

      Truck drivers are at risk from automation.

      There's a lot of demand for nurse practitioners, but for the amount of education it requires to be an NP, might as well go to med school. 2 years post-collect vs 4 years for med school. Yeah, yeah, residency, but residency is already a paid "job."

  84. You shouldn't by OneHundredAndTen · · Score: 1

    If you are even wondering about it, you clearly do not have what it takes. Do some menial work instead, or go into management - you can still make lots of many with either. With the former, at least, you will be useful.

  85. Electrical Engineering by midifarm · · Score: 1

    Super versatile and not too specialized. It will always be in demand, even after the fall of society. Don't just stick to theory, learn practical applications and uses as well.

  86. Foreign language by Not-a-Neg · · Score: 1

    Learn the language of another country you have an interest in, move there and work with startups trying to get off the ground that have solid financial backing. If family makes that too difficult to pursue, then get your MBA and prepare for a management position before you get age-discriminated out of your field of work.

    --
    -==- Buy a Mac and leave me alone!
  87. I want to say one word to you. Just one word. by XxtraLarGe · · Score: 1

    Are you listening? Plastics.

    --
    Taking guns away from the 99% gives the 1% 100% of the power.
  88. A warning before quitting your day job by lyz · · Score: 1

    As someone who just earned a couple of Masters degrees in business for an insane price tag, I recommend that you exercise caution when transitioning careers. Breaking into a new field that is more of a passion project than one that is in demand is just brutal. Unless you are financially set and don't need the income, a transition could wreck you financially. The absolutely insane cost of graduate school cannot be understated and needs to be weighed against any advancement you may experience through it. It is massively easier to have a career track inside of a company that supports you rather than doing it on your own.

  89. Re:How old are you? by mnemotronic · · Score: 1

    No, you are still wrong. Your argument for being ageist is fundamentally: "don't advise people to do things they can't be guaranteed to complete".

    There is a lot to be had by going on the journey, and if someone wants to start a medicine career at 55 then good on them. If they can't complete it because they die along the way, then so be it.

    I assure you that the use of age as a qualifier for advice, will only ever result in prejudice and cannot be useful or constructive in any way.

    Point taken. For many of us, the journey is the destination.

    --
    The Russians have won. They have made the world a cesspool of distrust, greed, fear and hate.
  90. Re:How old are you? by mnemotronic · · Score: 1

    "Tee time's 5am."

    Bit early for 18 holes, no?

    It takes a while to get both the user and the walker out of, and back into, the cart 12 times per hole. Times foursome.

    --
    The Russians have won. They have made the world a cesspool of distrust, greed, fear and hate.
  91. Re: How old are you? by Anonymous Coward · · Score: 0

    I think the parent of your comment (grandparent) was merely trolling/expressing discontent with the practice of ageism in the industry, and forewarning the OP of a challenge he or she might face other than skillset or field of study.

    I do agree that the age of the OP should not be made available in order to avoid unnecessarily influencing the results. By not knowing the age of the OP it will provide the OP with more accurate knowledge of the situation. The age of the OP and the time frame required for a field of study and gaining experience does matter, but that is a decision to be made by the OP, not the Slashdot commentors.

  92. Re:How old are you? by Anonymous Coward · · Score: 0

    You forgot the part of studying for the MCAT. That'll be at least a year.

  93. Break as good as a Change by ElitistWhiner · · Score: 1

    Write down your dilemma questions and solution set. Take a break; a sabbatical maybe travel year trip live in hostels around the world just off the technology planet you are consumed with every day.

    Ugly ruts comforting familiarity are the bane of existence. Freedom is the emergency parachute out of the uglies onto planet reality.

    Return in a year, return to your list. You'll have no problem answering the questions.

  94. Study something interesting by TJHook3r · · Score: 1

    Go on Coursera and find something interesting... learn a foreign language, study geology or biology. Sounds a bit like you have learnt to use useful tools but don't have anything to do with them. Data analysis is boring when you have no interest in the data - find something you want to learn more about and worry about tools and frameworks another day.

  95. History by Anonymous Coward · · Score: 0

    History means you get learn about all fields of human endeavour.

  96. Welding by Anonymous Coward · · Score: 0

    Welding and NDT.

  97. Re:How old are you? by Anonymous Coward · · Score: 0

    OMG, you're such a


    SOLIDER tot O ; `^ AREAL on AREAL . SOLIDER `SOLIDER `
    O us are . O O on O tot O `O tot O `O tot O tot O tot
    O us are `O . O . O us are O us are O tot O tot O tot
    AREAL on O tot O `O `NIGH `O `NIGH `O tot O tot O tot
    O us are SOLIDER `O tot O `O tot O `O tot O tot O tot
    O us are O tot O `O tot O `O tot O `O tot O tot O tot
    O us are O tot O . AREAL on AREAL . SOLIDER tot O tot

  98. Re:How old are you? by Anonymous Coward · · Score: 0

    There is a lot to be had by going on the journey

    Indeed. A lot of debt.

    if someone wants to start a medicine career at 55 then good on them. If they can't complete it because they die along the way, then so be it.

    You must be a trust fund brat. It's becoming rarer, but in some jurisdictions liabilities can be passed on.