Essential skills for getting a job in programming

I am working in digital media operations. I want to move to programming. I have checked jobs and one thing i realise is just by mastering java i wont get a job. I need skills in 3 areas for getting a decent job.
Language such as java
Scripting such as HTML, XML etc
and SQL or some server
now what are the essential skills to get a junior to mid level job in programming?

search4survival wrote:
it would be a lot better than salesSo that's what "digital media operations" is. I did wonder. :-)
I would definitely read Kevin's article, because it's right on the money. Depending on how far along you are in your career, the 10,000 hours it talks about may be difficult to manage, but you may be able to get some of the way there. You might also want to ask yourself a few questions:
1. Do you like the idea of programming, or do you just think it might get you out of your current rut?
2. Are you willing to put in the graft? A lot of programming is repetitive and boring and, like most jobs, as a junior you'll probably get a lot of the Joe-jobs.
3. Are you willing to put in time outside your 40-hour week - reading and doing? Because that's likely to be where you do a lot of your learning. It may take a while for the effects to be noticed by your colleagues/managers as well.
I'm also a great believer in understanding principles, and that can involve some dry reading. So, once you've mastered the basics, look for good background material (it may also help you follow your colleagues when they're talking techno-babble):
Language such as java - not a bad place to start, but find some material on Object Orientation (the why, not the how) once you've got past "Hello World".
Scripting - a couple you might want to look at are perl and bash.
SQL or some [database] - absolutely, but try and find a book on data management theory too. It's surprising how few programmers know much about it these days.
Hope I haven't put you off too much, and best of luck.
Winston

Similar Messages

  • Guidance for getting a job

    Now I am working on Flash Action Script3.0 in xxxxx company. I want to change the company based on the experience I have gain. But the problem is, when I browse for job openings, the job description contains relavant experience on flex, developping mobile apps along with flash as3.0. From 1 year on words I was working on Flash as3.0 only. I dont know any of them mentioned above. Do I need to learn all these or Can I continue my career with only flash as3.0? Please suggest me. I want to improve my career with good salary.

    I guess a lot depends on where you are looking for work. you can certianly continue purely with AS3 but you options would be more limited.
    I haven't seen that much demand for Flex, it's certainly a small percentage of the jobs I have seen.
    As for mobile this is big area for AS developers at the moment and knowing some wouldn't hurt.
    If you want to move and give yourself as much chance as possible I would suggest trying to build demos in a variety of application platforms.
    Create a simple mobile app, do some social networking (e.g. a facebook game) and possibly a smiple Flex application and apply for these jobs. 3D demos can really impress as well. you might not have the commercial experience but if you have the demos, come accross well, demonstrating you want to learn these technologies and you know the basics you have a good chance; depending on who else applies.
    A good company will realise you have a good grounding in AS and can apply what you know to these new areas. For a good developer moving from web based AS to mobile is not hard a every company should know this. There is a little more to learn for Flex but if you have the time is well spent, however someone looking for a Flex developer might be a little more demanding in terms experience
    as a side note I got my first AS3 gig with no flash experience at all. I came from a Java background and a good relationship with Sega and developed the original sonic engine for their playSega website

  • How to get a Job as SAP BASIS Fresher

    Hello Master's,
          I'm Raju Maddu and I'm from Vizag (Visakhapatnam). I have completed my B.Tech in Computer Science and Engineering at 2012. Once I've completed B.Tech, I started my career in the Education industry as System Administrator along with CCNA training at NIIT. And I have 2 years experience in that field.
    I did a lot of research and I found that I have a good career ahead of me in the SAP BASIS domain. I joined a institute and I did the BASIS course. They have provided real time training with the SAP BASIS tools and t-codes & Security. And I have real time experience in SAP BASIS.
    However, I don't have the SAP certification. I'm trying to get in to the SAP basis field. I also don't know how to reach a right contact for getting a job as a fresher in SAP BASIS.
    Please let me know how to get a job as a BASIS fresher. Any help will be very much appreciated.
    Regards.
    Raju Maddu,
    <<removed by moderator>>
    Message was edited by: kishan P

    Hi Raju,
    its somewhat too tough to get a job in SAP as a fresher, but it doesn't mean that it is impossible.
    I will only sujjest you to upload your resume at all leading job-portals, but please search any small
    scale industry, where sap has been implemented, and talk to them (i know its not easy, but never
    loose your hope anyways).
    You have told that, the training institute has provided you real time exposure, but for your kind information, these things are not calculated as a real time exposure in any companies,
    if you work in any organization, then only it will be counted.
    So, search, search and search, untill you get a job, even in starting if salary will be low, just
    catch it, once you will get right exposure, it becomes fruitful for you.

  • Get Idoc Types Processed by Jobs Running Programs RBDAPP01 or RBDMANI2

    Hi Everyone! I would just like to ask if there is a way I can identify all background jobs which are processing a specific idoc type in SAP?
    For example, I want to get the Jobs that are processing inbound idoc type WMMBXY using program RBDAPP01 or RBDMANI2.
    Is there a way to extract this information?
    Thanks in advance!

    Vincent, we have a conservative approach RE those programs that re-process IDOCs in pending or error status : we do not define those jobs with open selections, instead we are specific in terms of message type and partner where applicable.  We also set a limit in the number or attempts on a failed IDOC by setting a 'rolling start date'  (like current date - 7).  Besides audit considerations about lingering processes,  you also need to take into account the impact of this process on the tale size. Each time the job runs and the IDOC fails, a status record will be added to the EDIDS table for each of those IDOC.  If you do not pay attention, you may end up with large amounts of data. This is not only going to unplease your BASIS and DB administrator but eventually put in jeopardy your archiving process (wchich could lead to a system crash !!).
    We usually aslo complement those jobs with a status change step (moving from error to no further processing) ; the date parameter can be set to something like anythiing with a creation date > current date + 3 months
    To come back to your question : SM37 using the program name as parameter will help you find the associated jobs, but you might need to look into the step(s) and associated variant to get the messages those jobs / steps are processing

  • Urgent:How to get the Sqltext for Oracle Sumbitted Jobs in 10g

    Dear All,
    Could you help me out in sorting the below problem.
    I use to get the current running sql's with following below query in 9i.
    SELECT A.SID,B.HASH_VALUE, OSUSER, USERNAME, SQL_TEXT
    FROM V$SESSION A, V$SQLTEXT B
    WHERE B.HASH_VALUE = A.SQL_HASH_VALUE
    AND USERNAME LIKE upper('%SCHEMA%')
    ORDER BY B.HASH_VALUE, B.PIECE;
    This is will work in 10g also for user-triggered sqls,stored procedures etc.
    But when oracle submits job i'm not able find which qurery is running.
    Seems For oracle jobs in 10g for V$session contain column SQL_HASH_VALUE as Zero and hence i'm not able find the any sql's running.
    Could you please any of you help me out how to get the Sqltext for Orcle submited Jobs in 10g.
    Please revert asap as this is very urgent for me.
    Thanks in Advance
    Anil.

    Have you tried to query WF_ITEMS? -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_ITEMS&c_owner=APPLSYS&c_type=TABLE
    bde_wf_item.sql - Runtime Data of a Single Workflow Item [ID 187071.1]
    Thanks,
    Hussein

  • I can't upload a copy I got of Adobe Photoshop CS on my Mac Mini OS X 10.5.8. All I can get for why is this  "This program cannot be run in DOS mode" I have no idea what this means?

    I can't upload a copy I got of Adobe Photoshop CS on my Mac Mini OS X 10.5.8. All I can get for why is this
    "This program cannot be run in DOS mode"
    I have no idea what this means?

    Are you certain the copy of Adobe Photoshop CS is for the Mac OS, not Windows?

  • I have windows xp. I downloaded quick time no problem still can't get itunes to install. Still get same message (a program for this install to complete could not be run).

    I have windows xp. I downloaded quick time no problem still can't get itunes to install. Still get same message (a program for this install to complete could not be run).

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I cannot get my Acrobat Pro to open. I already uninstalled it and re installed it. But still does not open. The program pops to ask for permission to open the program, but it never actually opens.  I  trouble shoot it and it says incompatible application.

    I cannot get my Acrobat Pro to open. I already uninstalled it and re installed it. But still does not open. The program pops to ask for permission to open the program, but it never actually opens.  I  trouble shoot it and it says incompatible application.

    It sounds like an issue of trying to run XI on VISTA. That combination does not work. Info on both the Acrobat full version (including sub-version) and OS would help. It might also be an issue of running 11.0.0 on a system that needs the updates to work.

  • Can you get a power point program for the mac, my daughter has a power point assignment and i am not sure how to do it on the mac

    Can you get a power point program for the mac, my daughter has a power point assignment and i am not sure how to do it on the mac

    You can use a free alternative like openoffice for this:
    http://www.openoffice.org/porting/mac/
    or libre office which is a fork of open office:
    http://www.libreoffice.org/

  • Any mid size companies for SAP HR to help to get a job as a fresher

    hi all,
    any mid size companies to get a job in sap hr

    check the dates of ur holiday calendar   ESG  DWS and PWS
    here  2 is ur ESG
    40  is ur DWS Sub Grouping
    WSR is ur WS Rule
    u will ge this error while generating the DWS manually

  • Flex developer position essential skills

    hi,
    I would like to know what essential skills are needed to have
    jobs as Flex developer ?
    Thanks,

    Depends on the company I guess. Whether they want someone
    with experience or not. A basic to intermediate knowledge of Flex
    Builder is required as well as intermediate to advanced knowledge
    of actionscript 3.0 .
    AS3 is OO so a basic knowledge of OO-programming is
    preferable.

  • ActionScript developer entry level position essential skills

    hi,
    I would like to know the essential skills needed to have
    entry level actionscript developer jobs ?
    Thanks

    Depends on the company I guess. Whether they want someone
    with experience or not. A basic to intermediate knowledge of Flex
    Builder is required as well as intermediate to advanced knowledge
    of actionscript 3.0 .
    AS3 is OO so a basic knowledge of OO-programming is
    preferable.

  • Reg Super user for schedule background Jobs

    Hi Experts,
    I have created new user copied from DDIC with the same authorization. This is for scheduling Background Jobs. Now all the standard background Jobs are running fine. After scheduling the Jobs I have changed to system user. Now for audit purpose I need SAP note to do same. Please help me to get the sap note for the same. Please respond ASAP. treat this is as high priority.
    Thanks & Regards,
    Haseem.

    HI,
    It is not necessary for user having SAP_ALL authorization under which background job is running.
    Define specific users to use for background processing. Define them as system users (non-dialog) and give them only the necessary authorizations that are needed for the executed programs
    check  http://help.sap.com/saphelp_nw04/helpdata/en/db/f6f3393bef4604e10000000a11402f/frameset.htm
    also check Note 101146 - Batch: authorization object S_BTCH_JOB, S_BTCH_NAM
    regards,
    kaushal

  • When I start PS Elements 11 editor, I get this message: "This program can't start because MSVCRT10.d

    When I start PS Elements 11 editor, I get this message: "This program can't start because MSVCRT10.dll is missing from your computer. Try reinstalling this program to fix this problem."
    When I try to dismiss the error dialogue box, the message reappears immediately and the program does not load. After dismissing the dialogue 8 or 10 or 12 times, the editor finally loads and everything works okay.
    How may I solve this frustrating problem? I've already uninstalled and reinstalled the program and that hasn't solved the issue. If I need to add a .dll file to my machine, where do I locate it and where do I place it on my computer?
    Thanks
    William Driver

    Using Holmesian deductive skills and Spadian investigative techniques, I discovered that the problem lay in a third party filter application. I determined that since the program gave me the error message when PSE 11 began its scan for filter plugins, then the problem might lie there. I removed the filter plugins from the program's 'Plugins' directory to a another folder and added them back one by one until I got the error message. Sure enough, I eventually located the faulty plugins and removed them. Now PSE 11 loads without a problem.
    Thanks for your help.

  • OMG, I totally have to get a job!

    Hi! I finished my computing degree in the summer and now daddy is like, telling me I've got to go out and get a job! I've been trying to like, get my gossip column published in the newspapers but no luck so far. Sooo I have to look at computing jobs really, because that's the only other thing I've done! Does anyone have any advice on what jobs I should like, go for? I'm totally going to have to do something with java because it's the only programming I've done before!
    Thanx!
    JS

    kajbj - I don't think being a mascot is going to like, impress daddy!
    xinyer - I don't know what I'm doing though! I don't think my business would like, be very successful!
    jsalonen - Wow, your initials are JS too! That's totally weird! I've already done some modelling but they all turned out to be perverts who just wanted me to take my clothes off.
    Dick_Adams - Thanx! I'm starting to look on there now.
    jesperdj - I totally paid someone to do a resume for me so it's like, really good already!
    JS

Maybe you are looking for