Looking to Hire As3 / Java Programmer for Game Startup in NJ

This is a great opportunity for a skilled actionscript 3 coder to create great games in a startup backed by Kickstarter in Hackensack, NJ. Position is on-site. Some with online multiplayer experience preferred (specifically Electroserver 5).
http://www.indeed.com/job/as3-java-programmer-xp-startup-gaming-company-d682eda1de9d7006

-

Similar Messages

  • Hire a java expert for java proxy server.

    hello,
    i need a expert java programmer to hire for a simple java proxy project please contact me if you are intrested please leave me a message for more info.

    http://localhost:7021/sbresource?PROXY/MySample/MyJMSProxyService is the WSDL URL of the proxy.
    Transport is is picked by the client from wsdl.
    As far as the documentation of client generation is there, there is no change.
    But meanwhile I have started working on sending the message directly to queue. JMSProxy is getting called. May be I will first run the proxy this way and then try troubleshooting the java client.
    Regards
    Ashwani

  • One JAVA programmer for voice / video app

    Hello,
    I have posted this project I need done on my web site (www.globalpatron.com) but as this site is not yet advertised to the public officially I need to manually find a developer for this first project. I need a way for my clients to send voice and if it is possible video to eachother through a java app on the site. I have a brief description on the site. I would prefer a local developer in Australia to make funds transfers easier and cheaper but I can wire transfer to you if you are overseas using my web site. Please contact me if you are interested and have good java development skills.
    Kind Regards,
    Riaz

    sorry this is posted in the wrong category. I will repost it under Web Applications. ps. you do not need to register onto the site to work on this project ! Just contact me directly and I will set up a login for you. support !( at )! globalpatron^dotcom

  • Getting the Win Server entries through java programme

    Hi,
    Windows win server have the details(Cname,ipaddress) about the connected devices.
    can any body suggest the approach which gets the Cname and ipaddress from winserver using java programme
    Here CMR will write the newly connected devices cname and ipaddress into winserver
    I need java programme for getting the those details from the windows winserver
    Othere wise please suggest, is there any alternative approach for getting those details, This is very urgent, Please help me
    Thanks in advance
    Audippa Naidu.M

    Othere wise please suggest, is there any alternative approach for getting those details, JNI will likely be involved. I promise you there is no built-in Java functionality to get data from win server, whatever that is.
    This is very urgentNothing like waiting til the last minute, eh? Look, just because you say it's urgent doesn't mean anyone will help you any faster than anyone else. So don't be that guy.

  • Weblogic 6.0 (SP2) generates incorrect java code for JSP with response.sendRedirect()

              Hi,
              Here are the steps to reproduce the problem with the examplesWebApp application
              bundled with wlserver6.0(sp2):
              Product: Weblogic server 6.0 (sp2)
              Browser: IE 5.0
              1. Add index.jsp as the welcome file in WEB-INF/web.xml
              2. Create index.jsp as below:
              <%
              response.sendRedirect("index.html");
              return;
              %>
              <html>
              <head>
              <title>Index JSP file</title>
              </head>
              <body>
              <font color="red">This is index.jsp file </font>
              </body>
              </html>
              3. Create index.html as below:
              <html>
              <head>
              <title>Index HTML file</title>
              </head>
              <body>
              <font color="red">This is index.html file </font>
              </body>
              </html>
              4. Run the examples server and make sure examplesWebApp is deployed on the examples
              server using the console
              5. Access the URL http://localhost:7001/examplesWebApp
              The page will display a compilation error as below:
              C:\bea\wlserver6.0\config\examples\applications\examplesWebApp\WEB-INF\_tmp_war_examplesServer_examplesServer_examplesWebApp\jsp_servlet\_index.java:89:
              unreachable statement
              out.print("\r\n<html>\r\n<head>\r\n<title>Simple html</title>\r\n</head>\r\n<body>\r\n<font
              color=\"red\">This is index.jsp page</font>\r\n</body>\r\n</html>\r\n");
              ^
              and a look at the generated java code for index.jsp (_index.java) will reveal
              the erroneous code snippet below in the jsp service method:
              try { // error page try block
              //[ /index.jsp; Line: 1]
              response.sendRedirect("index.html"); //[ /index.jsp; Line: 2]
              return; //[ /index.jsp; Line: 3]
              out.print("\r\n<html>\r\n<head>\r\n<title>Simple html</title>\r\n</head>\r\n<body>\r\n<font
              color=\"red\">This is index.jsp page</font>\r\n</body>\r\n</html>\r\n");
              } catch (Exception __ee) {
              while (out != null && out != _originalOut) out = pageContext.popBody();
              pageContext.handlePageException(__ee);
              The above web application works fine in Tomcat 3.2.X environment. The Weblogic
              server 6.0 servlet engine should not generate the "out.println()" corresponding
              to the html section of index.jsp. The moment it sees the "return", it should stop
              processing further.
              Can someone from Weblogic support team please verify this and let me know when
              this bug will be fixed?
              One interesting thing I noticed was when we last tried weblogic 6.0 at its beta
              stage, it worked fine after we put in a special patch jar file called "redirectfix.jar"
              we received from weblogic team but somehow it got re-introduced by the time it
              was released!!
              We are planning to migrate our product from tomcat 3.2.x to weblogic 6.0. Our
              product has a lot of pages with such conditional {response.sendRdirect("page.jsp");return;}
              blocks. We would really appreciate a faster response form weblogic team.
              Thanks in advance.
              sam...
              Sam Palanisamy
              Senior Software Engineer
              Manage.com
              2345 N. First Street First Floor
              San Jose CA 95131
              

    Why should it stop when it sees a return? Is that in the spec?
              Peace,
              Cameron Purdy
              Tangosol Inc.
              << Tangosol Server: How Weblogic applications are customized >>
              << Download now from http://www.tangosol.com/download.jsp >>
              "Sam Palanisamy" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              >
              > Here are the steps to reproduce the problem with the examplesWebApp
              application
              > bundled with wlserver6.0(sp2):
              >
              > Product: Weblogic server 6.0 (sp2)
              > Browser: IE 5.0
              >
              > 1. Add index.jsp as the welcome file in WEB-INF/web.xml
              >
              > 2. Create index.jsp as below:
              > <%
              > response.sendRedirect("index.html");
              > return;
              > %>
              > <html>
              > <head>
              > <title>Index JSP file</title>
              > </head>
              > <body>
              > <font color="red">This is index.jsp file </font>
              > </body>
              > </html>
              >
              > 3. Create index.html as below:
              > <html>
              > <head>
              > <title>Index HTML file</title>
              > </head>
              > <body>
              > <font color="red">This is index.html file </font>
              > </body>
              > </html>
              >
              > 4. Run the examples server and make sure examplesWebApp is deployed on the
              examples
              > server using the console
              >
              > 5. Access the URL http://localhost:7001/examplesWebApp
              >
              > The page will display a compilation error as below:
              >
              C:\bea\wlserver6.0\config\examples\applications\examplesWebApp\WEB-INF\_tmp_
              war_examplesServer_examplesServer_examplesWebApp\jsp_servlet\_index.java:89:
              > unreachable statement
              > out.print("\r\n<html>\r\n<head>\r\n<title>Simple
              html</title>\r\n</head>\r\n<body>\r\n<font
              > color=\"red\">This is index.jsp page</font>\r\n</body>\r\n</html>\r\n");
              > ^
              >
              > and a look at the generated java code for index.jsp (_index.java) will
              reveal
              > the erroneous code snippet below in the jsp service method:
              >
              > try { // error page try block
              >
              > //[ /index.jsp; Line: 1]
              > response.sendRedirect("index.html"); //[ /index.jsp; Line: 2]
              > return; //[ /index.jsp; Line: 3]
              > out.print("\r\n<html>\r\n<head>\r\n<title>Simple
              html</title>\r\n</head>\r\n<body>\r\n<font
              > color=\"red\">This is index.jsp page</font>\r\n</body>\r\n</html>\r\n");
              > } catch (Exception __ee) {
              > while (out != null && out != _originalOut) out =
              pageContext.popBody();
              > pageContext.handlePageException(__ee);
              > }
              >
              > The above web application works fine in Tomcat 3.2.X environment. The
              Weblogic
              > server 6.0 servlet engine should not generate the "out.println()"
              corresponding
              > to the html section of index.jsp. The moment it sees the "return", it
              should stop
              > processing further.
              >
              > Can someone from Weblogic support team please verify this and let me know
              when
              > this bug will be fixed?
              >
              > One interesting thing I noticed was when we last tried weblogic 6.0 at its
              beta
              > stage, it worked fine after we put in a special patch jar file called
              "redirectfix.jar"
              > we received from weblogic team but somehow it got re-introduced by the
              time it
              > was released!!
              >
              > We are planning to migrate our product from tomcat 3.2.x to weblogic 6.0.
              Our
              > product has a lot of pages with such conditional
              {response.sendRdirect("page.jsp");return;}
              > blocks. We would really appreciate a faster response form weblogic team.
              >
              > Thanks in advance.
              > sam...
              > Sam Palanisamy
              > Senior Software Engineer
              > Manage.com
              > 2345 N. First Street First Floor
              > San Jose CA 95131
              >
              >
              

  • Hello, is Flash the right programme for a simple interactive game with buttons and small animations?

    Hello,
    I could really use some advice with a new project I am undertaking,
    I am looking to design a step-by-step game where users will be required to click on my artwork at each stage to get the next one. I would like different animated consequences to occur according to which button option is chosen at each stage. Eventually I would like for it to be a website that anybody can enter. I was wondering which programme would be ideal to use, I have access to Adobe Flash, Fireworks and Dreamweaver, but currently I only have a very basic grasp of them. This would be a long-term project I will be working on, so I am prepared to learn the appropriate programme, but if you could help me with which one that would be and any tips, I would be really grateful.
    Thanks very much,
    Hugo

    You have already posted this question here:  http://forums.adobe.com/message/2577400
    Please do not double-post.  Redundancy in forums is not a good idea. 

  • Where can I download Java and Adobe acrobat for games

    Where can I download Java and Adobe Acrobat for games?

    Sorry you can get  flash player for iPad  has flash player is dead
    Not sure about java  may be some one else can help you on that

  • I'm a normal user, using cad programme, not using my laptop for games, my question is: do I need to get 16 gb ram in my retina macbook pro or 8  gb ram is pretty enough?

    I'm a normal user, using cad programme, not using my laptop for games, my question is: do I need to get 16 gb ram in my retina macbook pro or 8  gb ram is pretty enough?
    Thanks for support.

    8 GB may be sufficient for CAD but 16 would be a much better idea.
    All the Macs I have ever owned were eventually upgraded to the maximum amount of memory they could use. Considering that as of now, the RAM you specify is all the RAM you will ever have, get as much as you can. That is the only way to maximize its economic life.
    If Apple offered a 32 GB version I'd get it.

  • I am looking for Mac OS X programmer for AppStore

    Hi
    I am looking for a programmer for one interesting project. All additional details in person contact.
    <Edited by Host>
    Alex.

    You may want to try iPhoto, which was preinstalled on your Mac, or Aperture, Photoshop Elements, GIMP, GraphicConverter, Acorn, or any of the many other apps you can find by entering "photo editor" into the search box in the App Store application. A lot of these will run rings around Microsoft's lightweight offering.

  • Looking for games\apps that run on 3.1.3 1st Gen iPod Touch

    I am looking for a way to search for games and apps that still will run on 3.1.3.  I am mostly interested in educational\kids games.  This is
    for the iPod my 3yr old gets handed from time to time to use.
    For my own library, it's easy enough.....select all and see what won't install.  But can't search the App store by what will install....

    You can try Googling. There is no way to search the App store or Appshopper.com by required iOS.

  • Where to take  java exam for Java programmer certified

    HI,
    I wonder where to take java exam for Java programmer certified?
    Regards,
    Jason

    http://suned.sun.com/US/certification/

  • Any way to get refunded for games that looked good in adverts but turned out to be entirely rubbish?

    Ripped off? I got over 80 hours from Bloodborne, THE standout game for me this gen.

    30 days is too long for a refund. As it was mentioned earlier, it would be the death of
    small devs who are doing it proper and will be run down by something subjective.
    One middle ground solution is to wait for reviews and word of mouth (friends or news gaming sites etc.)
    before you buy any games. Marketers aren't the most honest group so stop listening/reading into them
    already. Too many idiots with short-term money keep falling for things marketers come up with and end
    up complaining everywhere. Do your own research and stop being lazy.
    -Stop pre-ordering (Producers and publishers aren't testing their products enough, and have shifted their focus on pleasing their board members too much. These board members don't know the ins-and-outs of game development so they should also be called out in comments and conversations too.)
    -More developers should go back to creating demos for games, and the Gaming platforms (Sony, Microsoft, Steam) could accomodate developers in terms of costs for demos.
    Patience is a virtue and it would be nice if game development (and all the groups involved) went back to the good
    old days of properly tested games before being released.
    /end rant

  • Java Programmer/Analyst - Houston, TX

    Hi! My name is Dharti; I need your help finding people qualified for the position listed below, be it you or someone you know! I work for ROI Staffing, an established IT Professional Service Firm headquartered in Houston, TX, dedicated to finding superior Information Technology Talent. We provide sourcing solutions to our nationally established Private and Public sector Fortune 500 clients. Our services are flexible by design and span a wide spectrum of industries and technologies.
    JOB DESCRIPTION
    JOB TITLE: Java Programmer/Analyst
    WORK LOCATION: Houston, TX
    INTERVIEWS: ASAP
    START DATE: ASAP
    DURATION : 6 months contract to hire
    MUST BE U.S.CITIZEN/GC HOLDER/ EAD HOLDER
    PAY RATE: W-2 Hourly Rate with benefits during contract & then transition to permanent employee with salary d.o.e + full comprehensive corporate benefits to include medical, dental, 401K, bonus & more!)
    Our Client is seeking a resource with strong technical skills to participate in numerous development projects involving our Client Application Team applications. These applications provide a number of critical business functions including integration of external exchanges, position, price management, and straight thru processing. Client has identified a number of projects that will expand the scope of the applications and propagate them through more areas of the business. The team is in need of a programmer to design, develop, and implement the proposed solutions in the trading organization.
    The tasks and activities expected of the position are as follows:
    * Development, support and maintenance for custom developed trading applications.
    * Analyze and devise solutions for production related issues.
    * Develop technical design and architecture specifications based on application requirements.
    * Perform unit testing and assist with integration testing of applications.
    Skill/Role Level Years Preference
    Enterprise Systems Development Intermediate 5.0 Required
    Oracle Intermediate 3.0 Required
    TIBCO Intermediate 2.0 Preferred
    Programmer Intermediate 5.0 Required
    IBM WebSphere Intermediate 2.0 Required
    J2EE (Java 2 Enterprise Edition) Intermediate 3.0 Required
    Java Swing Required
    If you are not the correct person to talk with in regards to this position, please feel free to forward this job requirement to any friends or colleagues you know that might be interested in this opportunity, whether they are currently looking or know someone that is.
    Thanks for your assistance in advance and taking the time to read over my e-mail. I hope to hear back from you soon.
    Dharti Singh
    ROI Staffing, LP
    713.600.3201 direct
    Toll Free Number: 888.884.6200
    [email protected]

    -

  • I am new for game development-suggestions

    i am very much interested in creating games in Java . i have started of the basic concepts of JAVA ( inheritance,overriding,applets ).
    i know there is lot more to go...
    But still i need know for becoming a good programmer(in games) what are the things/concepts that i must be very strong ?
    it would be helpful if u suggest some tutorials.
    i also need to know what all should i have like netbeans,etc(as i know programming using notepad editor only. )
    More importantly i need to know the order in which i have to proceed.
    jesh
    Thanks in advance for your suggestions
    Edited by: java_jesh on Nov 6, 2007 4:02 AM

    The most important thing in game programming that is usually overlooked is the game loop! Aye, it is a bummer you asked this question too late for me to provide you with some links I just recently lost.
    O'Reilly Killer Game Programming in Java by Andrew Davison is a really good Java game programming book, but the author doesn't usually go over the meaning of individual codes. He provides you with a cluster of coding and tell you what the cluster does.
    Going beyond in math, understanding OO, and being able to make decent graphics will help a lot.
    Math will help you come up with your own unique and efficient algorithms for games which can be used for many things.
    My first several games were very inefficient and hard to edit or fix errors because I did not understand OO. I had one class file that contained everything for every game and it was a total mess! OO is very handy to understand and know how to use so you and your game can benefit from using it.
    Programming doesn't require graphics skill (I don't think), but you're not always going to have somebody making graphics for you. Personally, I learned how to model and make images before I learned to program so I was able to make good looking games rather than a bunch of boxes with a bunch of happy faces doodled on them. This is not a must be able to do thing, but I think it is handy and is a advantage.

  • Java space shooter game optimization

    Hi
    I've just started a little space-arcade type of game.
    For now there's a ship but it doesn't do much:
    - moves (accelerated)
    - fires (SPACE bar)
    Now I'm going to start work on an enemy generator + collision test.
    After that: pick-ups, a status bar(remaining life, passed time and so on), etc
    Since I'm not such a experienced programmer with Java graphics, I would need any opinion I can get to optimize my code (smoother movement, less CPU/memory usage, etc.). Read about sprites but not sure if it's the case here.
    You can take a look at the game and source codes at:
    http://www.stonefixion.com/temp/game
    Please take a look over the four java files and if you have any optimization suggestions, they are mostly welcome.
    Waiting for some feedback,
    Cheers ;j

    I've done a bit of reading and I think I've already done that(double buffering) like this:
         public void update (Graphics g)
              if (dbImage == null)
                   dbImage = createImage (this.getSize().width, this.getSize().height);
                   dbg = dbImage.getGraphics ();
              dbg.setColor (getBackground ());
              dbg.fillRect (0, 0, this.getSize().width, this.getSize().height);
              dbg.setColor (getForeground());
              paint (dbg);
              g.drawImage (dbImage, 0, 0, this);
         }I put all the drawing in paint() and call it update().
    Thanx

Maybe you are looking for

  • After update to IOS 7x some apps are crashing a lot & system Reboots!

    After installing IOS 7.1.1 on 1 x iPhone 4 16GB, 3x iPhone 4s 64GB and 1 iPad mini 64GB, Apps started crashing which worked well on IOS 5.5 & IOS 6. After Updating to IOS 7, the problems started. Some of my favourite games like "Call Of Duty: Black O

  • Open Items exist.. Not possible to change parameters ??

    Hi all, I made some X account balance to zero. And now when I was trying to change the account as open item (prior not in open item mgmt), system says that 'Account balance is 0, but still open items exist. Change not possible'. What does that mean ?

  • Monitor will not power down

    Since the latest set of updates, my monitor will not go to sleep. Instead I get the Check HDMI screen saver on the display. Any ideas on how to fix this?

  • Anonymous Portal User  GP  workflow

    hi, Can  Anonymous Portal User have a role from which GP workflow can be initiated.The approvers will be normal portal users. Is this possible ? Please help to trigger a workflow form Anonymous Portal User . Thanks in advance, Shami.

  • Multiple IDOCs

    Hi, I am Doing Multiple IDocs to File Scenario. MATMAS05 I am using as the IDOC for Both. I am sending some data from From MATMAS05 idoc1 and some other data from MATMAS05 idoc2. Both should be equated by material Number. I followed IDOCs (Multiple T