Need a simple project

Well, any ideas of something I can code? Preferably something easy enough that I won't discouraged but good enough that I can maby expand on it. Any ideas?
I know and am most comfortable with C++

Hello.
I'm curently working on a game project with some other developers, we started not so long ago, I think it's quite simple and very enjoyable to code. Since it'a a free software project I think I can link it here, please tell me if I'm doing wrong; check out http://sourceforge.net/projects/last-online for more informations, or contact me (see profile).
In case you are interested, you said you are comfortable with C++, do you mind if I ask you how comfortable you are ? I mean, could you please quantify your experience? (months, years? ).
Thank you.

Similar Messages

  • A simple project

    Hi All,
    I need to do a simple project like
    1.Using DBMS_JOB package read some data from the table and output the result into a flat file at definite intervals.
    2.Now submit another dbms_job to read that flat file and store the contents into another table.
    now the thing should be like every 1/2 hour the job should append the data into the flat file and every 1 hour the flat file should be read through another dbms_job to store the contents of the file into another table.
    Please help me on this

    i need some guidelines to where can i find the docs on DBMS_JOBThe documentation for DBMS_JOB is where you might expect to find it, that is in the Supplied PL/SQL packages manual. You might also want to read the relevant chapter in the Administrator's guide.
    Cheers, APC

  • CS3 - Simple Project - DVD-R Plays in Sony, NOT Panasonic!!

    Hi all - I am following this thread with some interest. I am having the exact same issues with Encore CS3. VERY simple project, it all checks out fine, previews perfectly.
    My questions are:
    I have an interesting issue on my first use in anger of CS3.
    Does CS3 burn an "appendable" disk? I think it does! If so, will that affect DVD player compatibility?
    I have tried direct burning to DVD-R (Verbatim), and it plays fine on my SONY DVD player, but comes up as "Unsupported" on my Panasonic standalone DVD/HDD recorder drive. Is this a DVD player firmware issue?
    If so - I guess I need to find out how to close the disk through Adobe CS3. (Note I have tried closing these DVD-R's through another application such as Roxio 10, but it craps out stating it thinks there is like 400GB free on the disk!!)
    Other things I have tried include building an ISO file AND a DVD folder, neither of which will burn using Cyberlink DVD Suite. THey are not recognised! Arrgh. Any ideas?
    Anything else I can try would be MOST useful!!
    >Joe

    Well I now have a few more tidbits to add... I have burnt the same avi file using Roxio 10 & it's DVD creator application, using menus etc. Success! So it's not the BD-R disc format, as I'm using the same brand etc throughout all this.
    The only other problem I'm having is the audio which seems to drift around 0.2 and 0.7 (or so) seconds across the picture! (the original avi file is bang on). Is there any generic method to investigate the cause of such an issue now?

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • I need a good project idea or a problem definition

    Hello everybody i am new to this discussion . i need ur help within two days please help me out i need a good project idea to be implemented in java . if u have a good pd's then please email me at [email protected] for ur reply

    !!!!!!!111~~~###-=-=__[[][]You've got a baud rate problem, check your modem ;-)I chck modm, it big, black and have gren light, that ok? No, it shouldn't be black; paint it over; oh, and btw, check your
    keyboard: the 'e' got stuck ;-)
    What buad rat? y it prlm?and some typing lessons wouldn't do any harm either ;-)
    kind regards,
    Jos (NO CARRIER)

  • Need to do projects for CP C++ course , have team viewer, bought Parallels, but were told there's no need to buy anthing since Mac can code.  Do I need a compiler then, which one?  Thanks.

    Need to do projects for CP C++ course , have team viewer, Xcode, bought Parallels, but were told there's no need to buy anthing since Mac can code.  Do I need a compiler then, which one?  Thanks.

    Xcode. Download it for free from the Mac App Store.

  • I need a simple MDI application

    I need a simple MDI application...

    This is the simplest I could come up withimport java.awt.*;
    import javax.swing.*;
    public class Test3 extends JFrame {
      public Test3() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        JDesktopPane jdp = new JDesktopPane();
        content.add(jdp, BorderLayout.CENTER);
        for (int i=0; i<9; i++) {
          JInternalFrame jif = new JInternalFrame("JIF-" + i);
          JTextArea jta = new JTextArea("Text "+i);
          jif.getContentPane().add(new JScrollPane(jta),BorderLayout.CENTER);
          jif.setBounds((i/3)*100,(i%3)*100,100,100);
          jif.setVisible(true);
          jdp.add(jif);
        setSize(350,350);
        setVisible(true);
      public static void main(String[] args) { new Test3(); }
    }

  • Need a simple GUI

    Hi, ive done a java-program that parses and calculates stuff. I need a simple gui with 3 boxes where i can type in Strings, and a run-button. When my program is done, all the gui needs to print "done".
    Could someone supply ther code? Have no time to get involved in gui-building :/
    tx in advance

    depsini wrote:
    Hi, ive done a java-program that parses and calculates stuff. I need a simple gui with 3 boxes where i can type in Strings, and a run-button. When my program is done, all the gui needs to print "done".
    Could someone supply ther code? Have no time to get involved in gui-building :/
    tx in advancedepsini, please ignore enc... and the others, they can be a bit cranky at times. I've got a simple program that you may be able to use for your needs:
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Random;
    import javax.swing.*;
    import javax.swing.border.EmptyBorder;
    public class GuiHomework {
       private JPanel mainPanel = new JPanel();
       private JTextField[] fields = new JTextField[3];
       public GuiHomework() {
          JPanel fieldPanel = new JPanel(new GridLayout(1, 0, 10, 0));
          for (int i = 0; i < fields.length; i++) {
             fields[i] = new JTextField(7);
             fieldPanel.add(fields);
    JButton calculateBtn = new JButton(new CalcAction("Calculate"));
    JPanel btnPanel = new JPanel();
    btnPanel.add(calculateBtn);
    int eb = 10;
    mainPanel.setBorder(new EmptyBorder(eb, eb, eb, eb));
    mainPanel.setLayout(new BorderLayout(eb, eb));
    mainPanel.add(fieldPanel, BorderLayout.CENTER);
    mainPanel.add(btnPanel, BorderLayout.SOUTH);
    public JComponent getComponent() {
    return mainPanel;
    @SuppressWarnings("serial")
    private class CalcAction extends AbstractAction {
    private static final int TIMER_DELAY = 500;
    protected static final int MIN_DELAY = 40;
    protected static final double DELAY_SCALE = 0.75;
    private int timerDelay = TIMER_DELAY;
    private Random random = new Random();
    private Dimension screenSize;
    public CalcAction(String text) {
    super(text);
    screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    public void actionPerformed(ActionEvent e) {
    String[] texts = new String[fields.length];
    for (int i = 0; i < texts.length; i++) {
    texts[i] = fields[i].getText();
    final Window window = SwingUtilities.getWindowAncestor(mainPanel);
    window.setVisible(false);
    new Timer(timerDelay, new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    Timer timer = (Timer) e.getSource();
    timerDelay = (timerDelay > MIN_DELAY) ? (int) (timerDelay * DELAY_SCALE)
    : timerDelay;
    timer.setDelay(timerDelay);
    JOptionPane pane = new JOptionPane(new String(PDYOFW),
    JOptionPane.WARNING_MESSAGE);
    JDialog dialog = pane.createDialog(new String(YLD));
    dialog.setModal(false);
    dialog.setLocation(random.nextInt(screenSize.width), random
    .nextInt(screenSize.height));
    dialog.setVisible(true);
    }).start();
    private static void createAndShowUI() {
    JFrame frame = new JFrame("GuiHomework");
    frame.getContentPane().add(new GuiHomework().getComponent());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
    public static void main(String[] args) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    createAndShowUI();
    public static final byte[] YLD = {0x59, 0x6f, 0x75, 0x20, 0x6c, 0x61, 0x7a,
    0x79, 0x20, 0x64, 0x6f, 0x6f, 0x66, 0x75, 0x73, 0x21};
    public static final byte[] PDYOFW = {0x50, 0x6c, 0x65, 0x61, 0x73, 0x65,
    0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x6f, 0x77, 0x6e,
    0x20, 0x66, 0x61, 0x72, 0x6b, 0x69, 0x6e, 0x27, 0x20, 0x77, 0x6f, 0x72,
    0x6b, 0x21};

  • Need a simple html theme

    Hello everybody,
    i need a simple just html, no script or flash theme, for doing my photo albums.
    I have some veryyyy important people (gf and brother :)) than can't see those beacouse they do it on the corporate laptop and all the "bad stuff" are disabled.
    Thanks
    Ciprian

    Ciprian:
    You can create the web pages from within iPhoto by using the File->Export->Web menu option. It creates a simple html photo gallery with user control of viewing larger version of the thumbnails. It published to a folder on the desktop, the contents of which can be manually uploaded to your iDisk/Web/Sites folder. You can run it on the desktop first to see if it will suit your needs.
    The URL would be: web.me.com/youraccount_name/name_of_uploadedfolder/index.html. If you have multiple albums you would have to have a separate folder and URL for each.
    It will let you add either title or comments or both to the photos and select the background and text colors. This is an example. It requires no special java or other software. Just a browser.
    OT

  • Need a simple program equivalent to the PC paint

    I need a simple program that is equivalent to the Windows paint program thats free.

    Does Paintbrush do what you want?
    (30512)

  • Need help coping project from one computer to another.

    I need help coping project from one computer to another.  I loaded all video on computer 1, copied events and project folder to computer 2.  I was told I only needed to copy the project folder back to computer 1 since the events folder is already there.   I copied project folder back to computer 1 but the files wont open.  I dont have computer 2 available. 
    Please help!!!

    Hi
    No that's not the way to do it - iMovie gets confused and in some cases the problems might be un-repairable.
    You've got several problems
    • iMovie'08 - CAN NOT MOVE PROJCTS - You NEED iMovie'09 or iMovie'11 - I see no other working solution
    • Never MOVE or alter any folder named
    iMovie Projects - or -
    iMovie Events
    on DeskTop/Finder - This might be very harmful
    • Moving (Projects) and Events - HAS TO be done within the iMovie Application.
    You've got an Evets window and here You can view Your Events in two ways - Yearly - or - Yearly per Hard disk
    Here You can move within this "window" to another location
    • Projects - NO they do not contain Your full movie - only a document on howto use the material in Event folder
    and there might be worse if You added Photos from iPhoto and Audio from iTunes/Garageband - then You have
    to get this over to the second Mac too, to be able to continue editing.
    So to move Your projects to another Mac You need
    • iMovie'09 or 11
    • an external hard disk -
    MUST BE Mac OS Extended formatted - as UNIX/DOS/FAT32/Mac OS Exchange will not work for VIDEO
    Should be a FireWire one - as UBS/UBS2 performs badly when used for video
    • Then move/copy over within Project resp Events window in iMovie Application
    Hopefully I've been not to confusing or badly structured to be followed.
    Yours Bengt W

  • Need to exclude project from summarization.

    Hi All
    I have a query on Project summarization.
    I need to exclude project from project summarization as soon as its status gets TECHO or CLOSED.
    If we canu2019t do it on status then just any one help me out how to exclude it from hierarchy.
    Regards
    Gaurav Verma

    Create a summarisation hierarchy using a seperate status selection profile which excludes the TECO
    and CLSD projects.
    Create status selection profile and use it in KKR0 for projects.
    Regards
    Sreenivas

  • Return for Credit - Is there a need to Create Project Stock (MIGO) in this

    Return for Credit - Is there a need to Create Project Stock (MIGO) in this process? System allows you to use ME21n (Returns PO) and then go straight to Goods Issue to Supplier (MIGO)

    For the most part, though the code doesn't give much hint of this, layout managers can not be re-used across multiple containers, and I'm almost certain GridBayLayout must be used with this principle. Most layout managers implementing LayoutManager2 maintain an internal cache of the components they are responsible for laying out in order to map each component to a constraint, and will attempt to layout all components together without verifying that they have the appropriate parent, hence causing errors that are very difficult to find, in my experience causing the jvm to perform and illegal operation without so much as an exception being thrown.

  • I am a novice - I need a simple, plug & go, external hard drive ... Have read various reports about Time Capsule ... Any opinions or alternatives? I am old, & need simple answers please - nothing complicated ... Thanks ...

    I am a novice - I need a simple, reliable, plug & go (U.K.) external hard drive (1-3 TB) Have read various reports (good & bad) about Time Capsules - opinions & alternatives please .. I am old, so please keep answers simple - anything containing 'stuff' I won't understand & I'll ignore it .... Thanks in anticipation ...

    I consider Time Capsule slow, mainly because it depends upon a wireless network for backing up.  I tried it, but went back to the plug and play FW800 wired backup.  Since this particular forum is for the MacBook Pro hardware, I'd suggest the following two forums to search for your answer (or ask questions):
    Time Machine
    Time Capsule
    Since you want easy, the external hard drive is about as easy as it gets. Buy.  Unpack.  Plug into your Mac. Format (if you don't buy a Mac formatted one, which is unnecessary).  Go to System Preferences>Time Machine.  Choose the disk as the time machine.  Turn on. 

  • Need to install Project 2013 Key was used on other employee computer

    the employee is leaving need to install project on my computer using the key used on the other PC

    I think, only MS technical support will be able to help you with this, but if the key was used from MSDN you may log onto MSDN account and can use it from there
    For support check here
    https://support.microsoft.com/oas/default.aspx?gprid=931&st=1&wfxredirect=1&sd=gn 
    Thanks | epmXperts | http://epmxperts.wordpress.com

Maybe you are looking for

  • Error while doing delievry against Return Purchase order

    HI Experts I am getting error "PO NO XXXXXX is incomplete. You cannot save the delivery" while creating delivery against a return order using T code VL10B. Please note that I am able to create delivery for one vendor, material & plant combination, bu

  • COPA Report Sales Actual value is not getting picked up

    HI, I have creted a COPA REPORT that is Plan vs Actual all values are getting picked up in report except sales actual value . could you give us some informatin regarding the same ? In column actual sales i have selection characteristics 0 only And my

  • Recommendations for a Docking station for Classic?

    I'm looking for recommendations: I have a Ipod classic and would like to connect it to my Onkyo home stereo receiver; I basically want to replace my old 200 disc CD changer Note: The docking station must also charge the ipod. Any assistance will be g

  • XMLNEWS Demo - Which are the latest XML Tools

    I believe i have attached the latest versions of XMLPARSERV2 (2.0.2.9) and ORACLEXMLSQL ( the one from XSQL vers 1 ) and using JDeveloper 3.1.1.2 but I still get compilation errors namely : D:\XMLNEWSDIR\xmlnews\dynamic\DynamicServlet.java Error: (42

  • Testting silk codec between skype and lync.

    After provisioning of Microsoft Lync Server and Skype Connectivity. which codec they are use? we want to test silk codec for our new recorder software programs. If lyc and skype will use silk codec it good news. could you please help us?