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

 



Forgot your password?
typodupeerror
×
Education The Internet Technology

Ask Slashdot: It's 2014 -- Which New Technologies Should I Learn? 387

An anonymous reader writes "I've been a software engineer for about 15 years, most of which I spent working on embedded systems (small custom systems running Linux), developing in C. However, web and mobile technologies seem to be taking over the world, and while I acknowledge that C isn't going away anytime soon, many job offers (at least those that seem interesting and in small companies) are asking for knowledge on these new technologies (web/mobile). Plus, I'm interested in them anyway. Unfortunately, there are so many of those new technologies that it's difficult to figure out what would be the best use of my time. Which ones would you recommend? What would be the smallest set of 'new technologies' one should know to be employable in web/mobile these days?"
This discussion has been archived. No new comments can be posted.

Ask Slashdot: It's 2014 -- Which New Technologies Should I Learn?

Comments Filter:
  • Learn the basics (Score:5, Informative)

    by Anonymous Coward on Wednesday January 22, 2014 @06:21AM (#46033923)

    Get intimate with the http protocol first and foremost! I can't tell you how many times I've worked with "web developers" who have no clue what the different HTTP verbs do, or why they're there in the first place.

    Secondly, if you want to code backend I''d stick to backend. Find a serverside technology that suits you(ASP.Net, Java or PHP) and start learning. Don't waste to much time learning frontend web technologies, as that's a completely different workflow to what I think you want to do. Most serious web development companies have dedicated frontend developers for a reason :).

    Good luck!

    • Why they are there? They don't even know THAT they are there!

      If your web dev looks at you blankly and asks "Verb? What verb?", you know that you have a long way to go.

      • Re:Learn the basics (Score:5, Informative)

        by Ash Vince ( 602485 ) * on Wednesday January 22, 2014 @08:52AM (#46034495) Journal

        Why they are there? They don't even know THAT they are there!

        If your web dev looks at you blankly and asks "Verb? What verb?", you know that you have a long way to go.

        As I a web developer of the past decade or so, I can honestly tell you I have had to dive into the meaning of HTTP verbs exactly once in all that time to do stuff with HTTP PUT.

        The reality is that you can actually be a dam successful web developer without having a clue what an HTTP Verb is even though you use them every time you create form that posts its variables instead of putting them on the querystring. Does it make you a better web developer knowing a bit more about HTTP Verbs? Absolutely, it does but you can use them on a daily basis without knowing how putting Method="POST" on a form is translated into the underlying HTTP protocol since most web technologies abstract this stuff away from you.

        The time when understanding a bit more about HTTP protocols really comes into play is when you need to start creating or utilizing API's.

        • Comment removed (Score:4, Insightful)

          by account_deleted ( 4530225 ) on Wednesday January 22, 2014 @10:31AM (#46035059)
          Comment removed based on user account deletion
        • by Opportunist ( 166417 ) on Wednesday January 22, 2014 @11:40AM (#46035681)

          As a C programmer, I had to descend into the depths of ASM about twice in the decade I have been developing. But KNOWING about it sure helped me avoid stack overflow security errors, mostly because I knew just why they pose a security threat.

          The point is not that you have to USE it. The point is to know about the basics to understand WHY you do some of the things you do the way you do them. Rote programming is one of the problems of our times, where programmers do stuff a certain way because they were taught to do it that way without understanding the basic idea behind the reason to do it that way.

    • by Urkki ( 668283 )

      These days, Javascript is the hot backend technology, which is convenient when it's also the leading (and only future-proof) front end technology of its type (programming language).

      Seriously, if you have not already, give node.js a spin if you do any Internet-related development work. And I don't mean anybody should necessarily start using it, just that it is something to know today.

      • by Zenin ( 266666 )

        Seriously, if you have not already, give node.js a spin if you do any Internet-related development work. And I don't mean anybody should necessarily start using it, just that it is something to know today.

        Here's all you need to know to day about node.js: Node.js Is Bad Ass Rock Star Tech [youtube.com]

  • Work on the basics (Score:5, Informative)

    by mozumder ( 178398 ) on Wednesday January 22, 2014 @06:22AM (#46033927)

    Javascript/jquery front ends, php/python/ruby/sql backends.

    Objective-C for iOS.

    Those will keep you employed for the next 10 years.

    • by crutchy ( 1949900 ) on Wednesday January 22, 2014 @06:27AM (#46033937)

      dunno what retard modded parent down... maybe he's just an asphole

      as much as javascript is as shit as python, it's like that annoying relative that you just can't get rid of so you may as well get used to

      client-server has been at the forefront for years and will continue to be the case, particularly as clients evolve in the mobile arena the only fixed baseline is the trusty ol' web browser

    • by Anonymous Coward on Wednesday January 22, 2014 @06:41AM (#46033995)

      And Java, for Android development.

    • by Spy Handler ( 822350 ) on Wednesday January 22, 2014 @06:51AM (#46034023) Homepage Journal

      Objective-C for iOS

      This. Since you already have 15 years of C experience, you should pick this up quick. And it will set you apart from all the noob JS/php "developers" whose only knowledge of C is that it's the third letter of the alphabet.

    • the jobs I see the majority of adverts for (by far) are all ASP.NET (yes, I know its poo, but technical quality was not a criteria in the question).

      That said I am also seeing a lot of jobs wanting embedded linux (with networking stuff to get at cloud-connected servers)(probably so companies can filch your data and sell it to advertising companies), that pay rather a lot. So frankly, learn that!

      • In what way is it poo? Or poor technical quality?

    • by mysidia ( 191772 ) on Wednesday January 22, 2014 @07:53AM (#46034249)

      Javascript/jquery front ends, php/python/ruby/sql backends.

      Don't forget to learn SQL and libbdb/BerkeleyDB for databases; Qt for user interfaces; Davlik for Android. Java.... Java EE... Java JUnit.... C#. C++... Objective-C OCUnit, Cedar. Behavior-driven test tools, JBehave. Selenium framework; Cucumber, RSpec, and Capybara for testing: Javascript jasmine; Python Lettuce or Splinter . C# MSpec, SpecFlow, WaitN.

      • And while you're at it, don't forget to learn to work in CMMI5 and Agile/Scrum environments.

      • Javascript/jquery front ends, php/python/ruby/sql backends.

        Don't forget to learn SQL and libbdb/BerkeleyDB for databases; Qt for user interfaces; Davlik for Android. Java.... Java EE... Java JUnit.... C#. C++... Objective-C OCUnit, Cedar. Behavior-driven test tools, JBehave. Selenium framework; Cucumber, RSpec, and Capybara for testing: Javascript jasmine; Python Lettuce or Splinter . C# MSpec, SpecFlow, WaitN.

        Sounds easy.

    • by olau ( 314197 ) on Wednesday January 22, 2014 @08:21AM (#46034355) Homepage

      Python is a really nice language. For a Python backend, you could start with the Django tutorial [djangoproject.com]. Go through that and a Python tutorial, and try to remember not to program Python as you would C, and you'll have a good start.

      For the front end, you'll need to spend some time with HTML, and learn a bit of Javascript/jQuery for any dynamic parts. And if you want it to look any good (and you should care about this because people on the web are generally less forgiving of not caring about the looks), you'll also need to figure out how to mimic a graphical style from a designer with CSS. For hobby stuff, you can just mimic some existing designs, if you're doing it as a business you'd probably want to pay someone to come up with the design, or buy a pre-existing one.

      It sounds like a lot of work, but Python + Django is actually lots of fun because you can get a lot done in little time (there's a video of someone doing a wiki site in 20 minutes), and the whole front-end thing is also quite fun because a browser is an interactive beast so you can quickly change things around and see things happen graphically.

      • by njnnja ( 2833511 )

        This. I write a lot of modeling algorithms in c++ but to make it useful to the team where I work I wanted to develop a front-end/gui. I learned python/django and now I can get a basic front-end working in about a day. Add javascript/jquery/a commercially available javascript UI library or two for "spreadsheet-like" tables and twisties and such and you can have a very complex system with a nice UI that you understand from front to back.

      • Comment removed (Score:5, Informative)

        by account_deleted ( 4530225 ) on Wednesday January 22, 2014 @01:15PM (#46036779)
        Comment removed based on user account deletion
    • by JaredOfEuropa ( 526365 ) on Wednesday January 22, 2014 @08:33AM (#46034429) Journal
      For mobile development, learn about tools, platforms and methods for cross-platform development. And once you master the tools, learn about UI/UX and what makes a great interface on mobile platforms. These are skills in short supply, even in mobile development shops.
    • Re: (Score:3, Funny)

      by Giblet535 ( 3480751 )
      iOS is a shrinking market (not growing as fast). Don't fanboy out on us. Android owns the vast majority of that market and is growing rapidly (very rapidly in China and other emerging markets). Obj C is a good skill, but not as valuable as jscript/jquery. C++ pays better, but the jobs are few and the projects boring. Python has more real-hire jobs. Java still leads in real-hire for some weird reason. If employment security is your focus, learn Linux, Java and javascript/jquery (Android path). Learning LAM
  • It's 2014 (Score:5, Funny)

    by StripedCow ( 776465 ) on Wednesday January 22, 2014 @06:25AM (#46033933)

    Answer:
    Corporate Finance, Intellectual Property Law, Data Mining

    • Re:It's 2014 (Score:5, Informative)

      by coastwalker ( 307620 ) <.moc.liamtoh. .ta. .reklawtsaoca.> on Wednesday January 22, 2014 @07:01AM (#46034055) Homepage

      Spot on. All those posts advising on what tools to learn are missing the point. The world isn't hiring people with toolboxes, its hiring people who know how to use the toolbox to make stuff. Concentrate on finding the right Stuff to become expert on and you will enjoy your toil and make money doing it.

      Sitting in a basement learning how to use a bunch of tools will just see you end up on a production line making dog food. Which is OK if you like the all pervasive smell of dog food I guess, but probably wasn't in your plan for life when you thought that being an Astronaut might be fun.

      • might be fun.

        Well learning coporate law and finance won't help with the fun thing. To be honest data mining probably won't either.

  • JS and HTML5 (Score:3, Insightful)

    by Anonymous Coward on Wednesday January 22, 2014 @06:38AM (#46033983)

    By what you said, I guess I would recommend you to start with HTML 5 and Javascript. Both are growing, well stabishled, not very hard to learn and very usefull (for desktop, mobile and even server-side using node.js).
    Learning something about OOP is good too. I love Ruby, so that's my first choice. But java and others are ok too.

    Good luck.

  • Universal... (Score:3, Interesting)

    by Anonymous Coward on Wednesday January 22, 2014 @06:40AM (#46033991)

    Learn to lie and bullshit with a straight face.
    These skills can take you everywhere. Even right to the top if you're good enough at them.

    Being willing to use people and steal are also good.

    • Re:Universal... (Score:5, Insightful)

      by Opportunist ( 166417 ) on Wednesday January 22, 2014 @07:40AM (#46034201)

      If you can lie and bullshit people into thinking you know what you're doing while at the same time you can keep talking and talking 'til they believe you based on how they don't have the foggiest idea what you're talking about but can't afford to look like they don't because they think their job depends on understanding you 'cause, well, you're expensive... ...congrats, you're a consultant.

    • by mysidia ( 191772 )

      Being willing to use people and steal are also good

      If you're going into politics yes.

      It's more satisfying if you learn to identify lies and bullshit from others, even when given with a straight face.

      Even better, if you learn how to use it against the liers and b*s'ers, learn to how to use it to get what you want out of these folks.

      Or get a job where you get liers and b*s'ers locked up behind bars, or lay down the fines for their crimes.

      • For employability?

        Learn to flip burgers... for a job at McDonalds.

        Learn to drive, for a job at Dominos where you have to clock out whenever you're actually doing your job, and use up your own car, and the company charges a delivery fee that goes in the owner's pocket and ends up eliminating the actual tip.

        Learn to smile and say welcome to Walmart, then turn around and ask to see people's receipts when they leave.

        Learn to lie and cheat and steal and backstab your opponents' friends for a job in politics.

        Lear

  • Javascript! (Score:4, Insightful)

    by Anonymous Coward on Wednesday January 22, 2014 @06:41AM (#46033993)

    Learn Javascript. It's everywhere:
    * client-side in browsers as little helper fragments attached to buttons, etc
    * used for building rich client applications within browsers
    * can be used server-side with things like Node.js
    * is embedded as a scripting language into various tools

    And it's actually not a bad language. The underlying concepts are simple and elegant, although some features for large-scale programming are lacking (no module system, etc).

    It's also fun to learn, because you can achieve interesting/amusing results within a browser with just a few lines of javascript.

    With some solid javascript knowledge for both client and server-side style code, a lot of job opportunities will open. Learning something like Python is an alternative, but even then employers who look for Python programmers for web-based apps will usually also want javascript skills...

  • by rodrigoandrade ( 713371 ) on Wednesday January 22, 2014 @06:41AM (#46034001)
    You got 15 years experiene writing C code, good luck finding a "whiz kid" who can do it better than someone who's been doing it for that long.

    You said it yourself, C isn't going away anytime soon. Stick to it as your bread and butter.

    If you want to learn to program for Android/iOS, that's great, but do it as a hobby. Employers nowadays want 10 years experience on a tech that's only been available for 5 years (yes, it's that crazy), so by the time you get up to speed, the market will have already moved on to the next shiny thing.

    You started with "It's 2014..." What will you do in 2025? Like I said, when it comes to your bread and butter, stick to what you know best.
    • by cyborg_zx ( 893396 ) on Wednesday January 22, 2014 @07:05AM (#46034077)

      Pretty much - let the hipsters chase the shiny tech. When the littered remains of abandonded technologies is cleared away the old stalwarts will still be there because there hasn't been any *real* innovation in languages for a long time. The basics were invented early on.

    • by ebno-10db ( 1459097 ) on Wednesday January 22, 2014 @07:32AM (#46034173)

      Employers nowadays want 10 years experience on a tech that's only been available for 5 years (yes, it's that crazy)

      a/k/a H-1B job listings - meant only to prove that there are no Americans to fill the job. The real disadvantage Americans have is that we have no time portals which allow you to get 10 years of experience with a 5 year old technology. Some other countries are obviously filled with these time portals, as companies are able to find people meeting the job qualifications in those countries.

      FWD.US is obviously on the wrong tack with their "think of the children approach", when what we need is a program to make time portals widely available.

      • by Tablizer ( 95088 )

        The real disadvantage Americans have is that we have no time portals which allow you to get 10 years of experience with a 5 year old technology. Some other countries are obviously filled with these time portals...

        No, they work them 80 hours a week instead of 40 so they have 10 years of experience in 5. It's like Dog Years (life is ruff).

    • by Opportunist ( 166417 ) on Wednesday January 22, 2014 @07:48AM (#46034229)

      Someone has a mod and, unlike me, hasn't posted yet? That's about the best answer there is.

      If you have experience of 10+ years in a field that isn't, say, Visual Basic or something similar that nobody would willingly touch anymore with a 10 foot pole, cling to it. You're gold, you have 10+ years of C. It doesn't get any better than that.

      Instead of trying to reach into some other language or technology, I'd broaden my horizon and delve into other fields that you can combine with your deep C knowledge. Security is currently a big deal, and embedded C almost screams that you should take a shot at physical security and surveillance. I'd take a look into that field (if you're at all remotely interested).

    • by gr7 ( 933549 ) on Wednesday January 22, 2014 @10:38AM (#46035111)

      On the plus side, Embedded programmers get about twice as much as web programmers. Switch to contracting if you want more money - around $50 per hour for web developers $30 to $75 and around $100 per hour for embedded programmers ($75 to $200). I'm not an expert on rates. This is just people I've met. It's a small sample but it makes sense. Embedded C programmers with more than 3 years of experience are damn hard to find. It's a niche market.

      On the minus side, there are fewer Embedded programming jobs out there so you have to travel farther and often you can't work from home because you need to be with the hardware and often there aren't enough hardware to let you take one home. Or you need expensive debugging equipment like oscilloscopes, etc. Again I'm talking about contracting where you will have to travel to different places every time you get a new contract and they will be farther away than those web development contracts.

      I recommend you stick with embedded C and if you want to learn something, learn how to use an oscilloscope, read a schematic and study some basic electronics so that when something doesn't work you can tell the Electrical Engineer exactly what is wrong instead of just saying "it's broken". This is how you get in the upper end of the salary range.

      If you do switch to web programming then obviously you need to know: html, javascript, SQL. Those are the most basic and key things you need to understand.

      • by Necron69 ( 35644 )

        I'd stick to embedded systems. There is more and more of it all the time, and a lot of it runs Linux/C. I graduated in '93, and moved to embedded systems (switches) six years ago. I really only program in C and Perl, but I make well over six figures, work only 40 hours a week, and live nowhere near Silicon Valley.

        Let the kids chase the hot new stuff.

        - Necron69

  • But learn whatever it takes to webify those embedded systems with utterly pointless interfaces to appeal to the new generation of people who wont even buy a loaf of bread unless it can be monitored by their mobile device. Now, off to the shop to buy toilet paper as my iWipe assroll monitor says that the bathroom is reporting only 3 slices left. Get off my........
  • by Anonymous Coward

    If you want to have more job opportunities learn C#. You will then have a solid base for both mobile development and web technologies. You can also use your C# skill to develop for android using Xamarin Studio (standalone, or there is a handy plugin for Visual Studio) or you can learn Java faster because they have similar syntax and functions (there are exceptions, of course).

  • by Anonymous Coward on Wednesday January 22, 2014 @06:55AM (#46034035)

    So we wont have to put up with this horrible slashdot beta crap.

  • Learn the backbone (Score:5, Informative)

    by taikedz ( 2782065 ) on Wednesday January 22, 2014 @07:01AM (#46034053) Homepage Journal

    In web programming specifically? I'd say, make sure you know the fundamentals first and foremost.

    As a previous poster said, knowing the HTTP protocol well (RFC2616 - be familiar with RFCs in general) will be important (more than you'd think - a misused verb led to Google's standard webcrawlers hosing a site because said site didn't implement forms/links properly), I'd recommend also getting intimate with some of the other building blocks such as SMTP, POP, FTP, SSL, ... you get the picture. They'll come in handy when trying to piece together/troubleshoot a larger solution.

    On top of that, know the roles and differences between different server apps (app servers like JBoss/WebSphere; web servers like Apache, nginx), know at least 2 popular database engines (I personally favour MariaDB and SQLite but that's up to you; you might want to look at PostgreSQL or CouchDB for something radically different), after learning HTML and XML/DOM fundamentals, know about cookies and AJAX specifically (which are part of your HTTP knowledge, but revisit later) and a take a web security course, or at the very least read far and wide on the matter. Someone suggested focusing only on back-end - fine if that's what you want to do, but at least be aware of how things behave in theory on the front end. Again, fundamentals.

    After (all) that (a fortnight's worth of reading, not counting any experimentation?), the choice of languages to work with these building blocks is entirely up to you. Most commonly mentioned are PHP and Ruby in different setups (honourable mention to JSP), Perl and Python for CGI and general scripting, Ruby on Rails as language+framework...

    When staring out and for longevity, choose fairly popular languages that run in open source runtimes (they're durable, they're documented, there are plenty of communities), and stay nimble with frameworks - a previous ask.slashdot [slashdot.org] showed how some of them can easily get canned despite a strong user base, and frameworks are just a flavour of the year... more likely than not, someone else (project lead, customer, policy...) is going to tell you what framework to use, so just make sure you've mastered your chosen language set.

    For iOS devel you're not going to escape Objective C. Android I understand is purely Java. But most things you're likely to want to do that are web facing, you might as well do in a web page.

    And, in general, stay nimble. But you knew that, right?

    • Reading subsequent comments, 2 points stand out

      If you know C, and it's not going anywhere soon, why change? Are you bored of the current projects you're on? Or do you think you'll be better off elsewhere? Greener grass etc

      Some are being a bit more meta and suggesting fields to apply computing to, like data mining, marketing, etc. Worth investigating if you float that way, but I didn't think that was the point of the question.

      You could also consider going into management as a techie, to at least have someone

  • by Viol8 ( 599362 ) on Wednesday January 22, 2014 @07:01AM (#46034059) Homepage

    ... learn C++, Objective C or Java, all of which should cover you for mobile development in one form or another. And if you learn C++ you'll be a bonus to any project that hires you since too many C++ devs these days don't have a clue about low level bit twiddling or memory management - its all frameworks and objects for them without a real appreciation of whats going on under the hood.

    If its web you want then HTML5/javascript.

    • by ebno-10db ( 1459097 ) on Wednesday January 22, 2014 @07:45AM (#46034219)

      if you learn C++ you'll be a bonus to any project that hires you since too many C++ devs these days don't have a clue about low level bit twiddling or memory management

      Unfortunately being a potential bonus to a project and getting hired are often two different things. My brother is an excellent C++ bit twiddler as well as knowing the "higher level" stuff. He was out of work for a long time despite that skill. Finally he got a job at a security company where the person hiring him saw an understanding of low level stuff as an important asset. That makes sense as obviously hacking into corporate systems involves a lot of low level twiddling. Maybe my brother's problem is that he was only interested in white hat stuff. You can't make money if you're too ethical.

      A few caveats to my pessimistic view. He was looking for work back in 2010 when the economy was even worse than now. Also his degree is in a completely non-CS related subject.

  • mobile devices. (Score:3, Insightful)

    by hooiberg ( 1789158 ) on Wednesday January 22, 2014 @07:06AM (#46034085)
    Make sure not to mistake 'technologies' for 'programming languages'. For now, I would say programming on mobile devices. Now that many people have mobile phones with apps and all that, and tablets becoming fairly popular. Learn what has to be taken into account with mobile device architectures, and learn the languages used to program on them.
  • by magic maverick ( 2615475 ) on Wednesday January 22, 2014 @07:08AM (#46034095) Homepage Journal

    If you are already a programmer, or even if you're not, then there are three technologies that you should attempt to learn (or at least recognize and be able to say "yeah, OK, this makes a sorta sense"). These are HTML, CSS and JavaScript. HTML is the basis for web pages. It is what they are built upon. I suggest starting with HTML 4.01 (strict) and XHTML 1.1 (there are major differences that may not look like being major), and then moving onto HTML 5 (yet to be fully finalized). The older HTML should teach you some good habits, as should the XHTML (and while you're looking at XHTML, learn what XML is, and why XHTML exists). Then you need some style to make your pages look pretty. That means CSS. CSS is broad, and you can just learn the basics and pick up the more complicated stuff as you go along. (That basically means start with CSS 2, and learn "CSS 3" modules as and when you need them.) CSS is capable of doing a lot of stuff that previously required JavaScript.

    JavaScript is not an essential. But you should know the basics. And most importantly, you should know two things, when not to use JavaScript, and what progressive enhancement is. (Progressive enhancement might also be called graceful degradation. It's basically the same thing, in the way that Open Source Source and Free Software are basically the same thing. There are philosophical differences, but they still do mostly the same thing.)
    ---
    And that's the web. Finished. You can go home now.

    Oh, still with me? Yes, there is still more to learn. Learn PHP. "But I heard it's awful" you cry. And it may well be. But it's also probably the most popular backend web language. It's what major and widespread software is written in. WordPress, MediaWiki, Drupal, and others are all written in PHP. But, like with JavaScript, unless you want a job, you don't need to learn more than the basics. There are great docs that can help you with almost anything.

    Similarly, learn SQL if you don't already. If you're learning PHP from scratch, use the PDO functions, then you can easily switch databases (and not be stuck on MySQL).
    Also, learn how to wrangle an Apache .htaccess file, and especially redirects.

    Next, I hear Ruby is getting a lot of press. Maybe learn some of that, and Ruby on Rails.
    ---

    Finally, and this is more important than Ruby on Rails, make sure you don't get hung up on pages looking the same in every browser. But do learn the fuck out of how to test in different browsers, and on different devices. And test the fuck out of your pages in different browsers. If you're page isn't readable in Lynx, maybe you need to do some reconsidering.

    • by magic maverick ( 2615475 ) on Wednesday January 22, 2014 @07:17AM (#46034125) Homepage Journal

      Oh, and I should have mentioned (and others have already), you also should learn at least the basics of the various protocols. You should be able to recognize the various parts of a HTTP message, and know what most of the verbs (e.g. PUT, POST, GET) and codes (e.g. 200, 404, 408) mean. You should know how HTTPS works (and for bonus points, know at least two major flaws with it). And you should know what TCP/IP means (and if you're really good, how they work), what DNS and DHCP are, and so on.

      Good luck.

    • by MrKaos ( 858439 )

      JavaScript is not an essential. But you should know the basics. And most importantly, you should know two things, when not to use JavaScript, and what progressive enhancement is.

      Though I agree with most of what you have said, I think that also what parts of JavaScript you use is important, combined with some good patterns of design for your code most of which is achieved by convention in JavaScript and C. I've found JavaScript to be quite nice when used in a minimal 'language features' way.

      'Javascript: The good parts' is about as thick as 'The C Programming Language' but not as dense, which sums my comparison of the two nicely.

  • 1) JavaScript. And one of the technologies building up on it, or improving it. Google V8 seems a good candidate 2) Some new, web-oriented programming language. Try Dart.

    You should know a minimum about databases. RDBMSes are going to die, so learn how to interact with one of the major no-SQL databases. Apache Cassandra is a good starting point. So are MongoDB and Couchbase / CouchDB. The most bleeding-edge ones are Titan and neo4J, both graph databases.

    Godspeed !

  • Duh (Score:5, Funny)

    by hackertourist ( 2202674 ) on Wednesday January 22, 2014 @07:26AM (#46034151)

    Antigravity, nuclear fusion, holodeck.

  • C++11 (Score:2, Informative)

    by speps ( 1108625 )
    I think given the momentum C++ has right now (for better or worse, I can't say yet) you should try to learn C++11 and all the new tricks that come with it. It's a pretty different experience from C and C++98 in my opinion. Watch this for a nice roadmap and insights : http://channel9.msdn.com/Event... [msdn.com]
  • by GauteL ( 29207 ) on Wednesday January 22, 2014 @07:33AM (#46034175)

    Unless you are simply passionate about web technologies and just really want to work with it, stop trying to chase the latest and greatest here. You will find it remarkably hard to compete for the Javascript/web/whatever jobs as the 20 year old wizz-kids will have more experience than you in web-stuff but will probably need much less money.

    Instead focus on improving what you already do, and expand into new areas of the embedded sphere. All that fancy web tech will in the end use and require embedded devices. We will get many more embedded devices, rather than fewer of them. Furthermore, try to expand your embedded domain knowledge. Perhaps there are some really exciting new embedded devices (drones, wireless home management devices, etc) you'd enjoy working on as a hobbyist? Expand into other embedded languages as necessary to work on the range of devices you like (i.e. Objective-C if you want to write iOS apps). You will only really learn properly if you have something concrete you want to do anyway.

    The point is; unless you hate what you're doing, you should work on ways to make all those 15 years of embedded experience count. Chasing some Javascript web-stuff will not achieve that.

    • I have to disagree. If you expand too much on what you already know and become too specialized, you can end up unemployable. Chase the JavaScript stuff and then use that 15 years of experience to end up managing those 20 year old whiz kids.

  • by pla ( 258480 ) on Wednesday January 22, 2014 @07:50AM (#46034237) Journal
    First, a disclaimer: Yes, I understand that the "cloud" means nothing more than playing Buzzword Bingo with the same old crap hosted by someone else, with a shiny new billing model that lets the service providers rub their hands while cackling with glee over all the idiot CEOs out there willing to pay more for what they don't recognize as the same ol'.

    That said, if your resume says you've worked in the trenches with VPSs and hosted solutions, you can expect the HR drone's eyes to glaze over because it doesn't match any of the buzzwords on their pre-screening checklist. If, however, you say that you've "Deployed critical corporate assets to the Azure cloud", well now, you may well have yourself a job!

    Just make sure when you actually get to interview with a real IT manager, you know the difference between the PR bullshit and reality; the pain of trying to integrate between different "clouds" you don't control; how to code in C# and Javascript and SQL. The rest just gets you in the door, you still need to do the same old job as ever.
  • by Tom ( 822 ) on Wednesday January 22, 2014 @07:58AM (#46034271) Homepage Journal

    Check if there's a Free Software project you're interested in, or you have a project of your own that would benefit.

    Learning is one thing, practical experience is what matters. So unless you actually use those skills, they are close to worthless. And learning and using something is a lot easier if it is linked to something that matters to you.

  • by Anonymous Coward

    I'd caution you first to take a good look at this article by Jeff Atwood (http://www.codinghorror.com/blog/2008/01/the-magpie-developer.html) discussing what he calls "Magpie Developers" - developers that flock to new shiny things just because they are new and shiny,

    Once you've taken a look over that, here's my take on web and mobile technologies.

    You are going to have to learn JavaScript for the purposes of front end development. You should also learn the principles of responsive web design and graceful de

  • As there seems to be quite a buzz around the "internet of things" right now, why not leverage your existing expertise by focusing on that rather than mobile and web. Focus on web services rather than web pages, familiarize yourself with HTTP rather than HTML and stick with C and maybe Java and Python (a lot of "embedded" devices are running Linux under the hood and some Android, and other uses of Java such as Bluray get embedded) as higher level languages that are less stressful to code networked apps in th

  • If I knew C back-to-front and wanted to get into 'web development', I'd be sending my CV into Mozilla and getting a job on the rust/servo teams.

    They're constructing a systems language to rebuild firefox from the ground up.

  • Obviously you need to learn COBOL and FORTRAN. Like 'C', they will never go away. :)

  • You have to learn the technologies that make you competitive in the job market. Your competition isn't the guy down the street, it's the guy in India or other like countries. You have to substantially market yourself against someone that could be making as little as 1/6th what you make now. In order to do that you have to have the skills that they can't bring to the market or that they don't tend to have. Any type of skills that requires personal presence is well worth adding.

    Any skills that could be commod

  • The caveat to the rest of this is that I'm somewhat new to the web development frontier. (a yearish of unpaid experimentation)

    Having said that here are a few technologies/languages that I find highly useful, perhaps you will too.

    Redis [redis.io], everyone needs a cache/queue, if someone says otherwise they're lying to you. The really cool part about redis is that operations done with it are (mostly) atomic at the operating system level, and it has persistent records of transactions, which sets it far apart from i
  • There really is no future in IT. The bubble has burst and Everything 'IT' is in danger of becoming just another commodity.
    If you aren't already a manager then just don't bother.

    Take up a new career NOW before it is too late.
    I've been writing software for 40 years ranging from cobol on Punched Cards through C, C++ , Java and onto to more modern things like Ruby, PHP and NOSQL.
    I'm just hoping that I can hold on and keep employed until I retire in a couple of years.

    Or you could slap on some makeup and pretend

  • by Charliemopps ( 1157495 ) on Wednesday January 22, 2014 @08:57AM (#46034519)

    My Shop uses (in order of importance):
    C#
    Java
    ASP.NET
    All popular versions of SQL (recommend learning MYSQL or PL/SQL first and then the rest of them will be cake)
    Office/VBA (I know this sounds stupid, but you get a lot of requests from office managers with no clue what they are doing in the form of word Docs, Excel spreadsheets, etc... etc... Knowing all the ins and outs of these programs will save you a lot of time. Like how the Excel Average function converts nulls to 0s by default)
    PHP
    VB

    Hope that helps.

    Oh, and I think VM is the way of the future (for good or ill) so I'd get used to using VMs.

  • Try learning about formalised testing (ISTQB), then look at the mobile testing market http://opensignal.com/reports/... [opensignal.com] and make a killing out of the lack of standards in the Android Market.
  • Learn object oriented programming, using Java or C++. That will give you a strong basis for almost anything else you want to do (I used to be a C++ programmer, and was hired as a Java programmer in spite of having no Java experience, on the strength of the C++).

    if you want to do web stuff, learn a little HTML and CSS - you don't need to become an expert because most companies have people who specialize in HTML and CSS. You just need the basics so you can understand and modify pages. Also get familiar with H

  • by TheloniousToady ( 3343045 ) on Wednesday January 22, 2014 @09:32AM (#46034717)

    You're already good at a low-level language, C. Now, add a high-level language (aka "scripting language") like Python. The two are complementary. Low-level is best when computer time is more valuable than programmer time, and high-level is best when programmer time is more valuable than computer time.

    Python is fairly easy for C programmers to learn because it imitates C as much as it can while still being Python. It's also a nice way to learn OOP, if you don't already know that. It's also very pleasant and fun.

    Some people don't like Python's lack of braces, but I think they're mostly being paid off by orthodontists. However, if you appreciate the minimalism of C, you should appreciate the minimalism of Python even more.

  • by BillBarnhill ( 3509219 ) on Wednesday January 22, 2014 @09:41AM (#46034771)

    Ok, most of the advice on here seems way off the mark, though some was good. Who am I to say something like that? A self-taught dev making six-figures and having worked 20 years.

    First, always be learning a new technology. Ignore the folks that said stop trying to learn new things.

    As for what to learn, there are two ways to go.

    One way is to track trends. You try to track all the trends and you're head will spin. The major trends though, as I see them, are: HTML/Javascript apps (including mobile apps), functional languages (on JVM learn Clojure, off JVM learn Haskell or Erlang), distributed and parallel computing (which are not the same, here again Erlang is good to learn, Go is another alternative, and Rust will be as well once they stop changing the syntax).

    Another way is to track the kinds of problems you want to solve. If you don't have a kind of problem you are passionate about, find one! That is a key way to differentiate yourself, market yourself, and enjoy what you do. Here though you'll need to do the research. Some popular problem areas right now are healthcare, sharing to address resource scarcity or cost (think Uber), and disaster management. A great way to get involved in these areas and learn while doing is to volunteer. You also will make a lot of great connections, learn a lot, and feel great about yourself in the process.

    To finish: always be learning something new, do something that you are passionate about, and give your time to others because you will be paid back many fold.

  • There are a lot of companies/ISP running horrid programs written in Java or whatever not. Learn the APIs for communications and Internet protocols.
  • by the eric conspiracy ( 20178 ) on Wednesday January 22, 2014 @11:24AM (#46035521)

    Would be Java and HTML.

    Java gets you entry into mobile app writing and a lot of server side stuff for the web at the same time. Plus the amount of Java out there is immense. It's the Cobol of the 21st century.

    HTML gets you into the presentation and UI.

    Later add in Javascript. You can even pick it up on the fly, it isn't particularly hard.

    Good Java and C expertise is a pretty sweet combination.

  • by Anonymous Coward on Wednesday January 22, 2014 @11:37AM (#46035653)

    I'm a front end developer with around 15 years experience. I spent half of 2013 during a job transition experimenting with IT Recruiting. During sequestration, I spoke with a lot of C/C++ embedded guys that had been happily siloed at government contractors for the last 10-15 years and were suddenly confronted with a job market focused on web/mobile technologies. At least in the Philadelphia market where I work, I can tell you it was very tough for them.

    In my experience these technologies had the highest earning potential and demand in order.

    C#/ASP.Net - these developers had the most power and earning potential in the job market. Managers that took too long in their hiring/decision making process found their first, second, and third choice candidates were all snapped up before they could extend an offer.

    Java - is tenacious and still commands very high salaries.

    Objective C - falls into the category of managers wanting more years experience than the iphone has been in existence, so few developers match the requirements. Very high demand.

    HTML5/JavaScript/Jquery

  • by Ed Johnson ( 2881561 ) on Wednesday January 22, 2014 @11:41AM (#46035687)
    I worked for 17 years as a mostly hardware and low level software person, with just enough MFC/Windows/Qt to make reasonable UI's. At the job I started 6 years ago everything is web based "enterprise" software. I now work on a small engineering team (about 8) in a very large company. I got hired for my expertise in C++ an dLinux to work on a biometrics project but as I finished it I needed to acquire skills more generally useful to the team. I started with PHP - it's very C like but with less type safety :). Modern PHP is much more object oriented, if you are comfortable with C++ it'll be very easy. Javascript is absolutely essential; JQuery and Knockout are nearly as essential (frameworks that clean up javascript and make it more portable). Any web app with more than 2 or 3 users needs to use AJAX rather than postbacks to have reasonable performance. In a windows shop you must learn ASP .Net and C#, Ojective C is useful if you want to target Apple products (phones or computers), but with HTML 5 you can do an awful lot without going native. Our apps use an abstarction framework to let one code base target all the popular phone O/S's with pretty standard web apps. (javascript/HTML front end, windows or linux backend REST service) Some SQL is very useful but you don't need to be an expert - any serious web development team will have a database expert who will do the DB stuff, you just need enough to code up test setups, prototypes and to talk to the DB guy. A Pluralsight subscription is very useful (no I don't work for them) I have learned a lot in a short time form their courses. Finally if you are going to work on "Enterprise" development you should really learn about Kanban and agile development since most of them use it in some form.

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...