• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Career Path Guidance and Advice Needed

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Disclaimer: This is my first post and I apologize if I have disregarded any protocals that resulted in a question being asked for the 1,000th time.

I've recently decided to apply myself towards developing my skill sets in Java with the intent to eventually program for mobile applications. My background is in business analysis with a degree in Informations Systems. As part of that coursework I learned C++ & SQL. However, my subsequent career path led me down a path where it wasn't required or applied accordingly. In summary, I am knowledgeable with the principles and syntax. Just never applied it. Today I find myself flooded with ideas associated with the expanding mobile application (and internet) markets, but lack the expertise or knowledge to develop. I can conceptualize the working components, the workflow, wire frame & psedo code it for the programmers I've worked with, but thats where its stopped (until today that is).

I've been reading "Head First Java" to bring myself up to speed with the concepts, syntax, and usage of Java. Its comming pretty easy thus far. However, I'm seeking all and any advice/recommendation regarding the necessary steps to progressively attain knowledge and experience. Ex: What type of applications should a greenhorn strive to achieve. What distinguishes a green horn from an intermediate, or expert. What skills are consistently in demand? (I work alot in Finance and live in NYC). What will make me more marketable. What other languages should I consider? And any other bit of advice that may be deemed notable will be appreciated.

I'll be looking forward to your responses.
 
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.com - A friendly place for Java greenhorns!

I would suggest that you study and learn FpML® (Financial products Markup Language). It is the industry-standard protocol for complex financial products and many financial organizations are using it and developing it further.


FpML® Training Course
December 7, 2010
Global Financial Conference Center
New York, New York

http://www.isdadocs.org/conf/conf_indexes/index_12-07-10fpml.html



 
Tone Stacks
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Jimmy, thanks for the advice.

However, I want to develop my Java skills and what I'm looking for is advice on how I should go about doing it with the intent to become more marketable. As I noted, I'm currently reading the HeadFirst Java, but are there other sources or methods that have proven to be successful for those to progressively succeed.

 
author & internet detective
Posts: 42056
926
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tone Stacks wrote:I've been reading "Head First Java" to bring myself up to speed with the concepts, syntax, and usage of Java. Its comming pretty easy thus far. However, I'm seeking all and any advice/recommendation regarding the necessary steps to progressively attain knowledge and experience. Ex: What type of applications should a greenhorn strive to achieve. What distinguishes a green horn from an intermediate, or expert. What skills are consistently in demand? (I work alot in Finance and live in NYC). What will make me more marketable. What other languages should I consider? And any other bit of advice that may be deemed notable will be appreciated.


Knowing about the common open source libraries is helpful. In NYC finance, there are generally two types of jobs. Server side jobs require JEE (web application architecture, message driven architecture, etc) depending on the kind of work you are looking for. Client side jobs usually require core Java and Swing.
 
Author
Posts: 3473
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you are comfortable with Java, move on to Enterprise Java (e.g. JSP, Servlets, JDBC, JNDI, etc) and sought-after technologies/frameworks to better market yourself. Learn a Web framework (e.g. Struts), and also learn a persistence framework (e.g. hibernate). Apply what you had learnt to an open-source project. Mention this in your CV.
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tone Stacks wrote:I've been reading "Head First Java"


I'll recommend you to read the next book Head First Deisgn Patterns. It'll give you plenty of idea how to write code properly.
 
Ranch Hand
Posts: 331
Python Ruby Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Tone,
After getting comfortable with java, I'll suggest that you brush up things like xml before moving over to mobile application development through Android,which is fairly documented and quite prevalent at the moment. You can also try j2me or eclipse based mobile platform tools too . Find more information here.
Knowledge in finance domain can be leveraged through Java ee as the others said and this will help you build systems that can be used in mobile applications too.
Good Luck
 
Jimmy Clark
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tone, the FpML is a data language only. What type of software applications exist for processing this type of data? Are they written in Java? Do you think that you could work on these applications without deeply understanding the FpML?
 
Ranch Hand
Posts: 343
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jimmy Clark wrote:Tone, the FpML is a data language only. What type of software applications exist for processing this type of data? Are they written in Java? Do you think that you could work on these applications without deeply understanding the FpML?



I think there are better ways to learn java than a niche data exchange format, and an almost $1000 course that you're advertising, but that's just me.

Cheers!

Luke
 
Jimmy Clark
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What if all of your work experience has been in the finance industry? What better way to learn Java? What if I told you that you could make up to $200,000 a year programming FpML-based applications? A $1000 bucks is trivial...chump change for a greater cause
 
author
Posts: 23958
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Luke Kolin wrote:
I think there are better ways to learn java than a niche data exchange format, and an almost $1000 course that you're advertising, but that's just me.




Agreed. Having worked in the finance industry for many many years, I see the Fix protocol all the time. To a much lesser extent, the Swift protocol -- mostly because I am on the trading side, and not the bank to bank stuff. I have never ever seen the FpML protocol -- describing it as Niche is pretty accurate.

Henry
 
Jimmy Clark
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Eclipse Modeling Framework (EMF) is pretty cool and would be a good thing to learn and understand. This is true for those just starting and seniors as well. The EMF is very complex and a very powerful tool for object-oriented data processing applications. It combines the best of UML, XML and Java objects ... check it out!

By the way, most FpML applications are written using EMF-based models.
 
So I left, I came home, and I ate some pie. And then I read this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic