The path of learning; where next

Just a broad question.
I'm slowly making my way through Head First Java (Sierra, Bates). Good book for fundamentals.
I've also read a majority of Thinking in Java (Bruce Eckel). Yes, its all self-study with no formal classes.
So where do I go next. So I have two books read... no big deal and that doesn't make anybody a programmer nor software expert.
What's the most effective next step? Do I get on a dev team for a small project? Do I just code small projects on my own? I'm trying to avoid wasting time doing something when someone else found that they learned much faster doing something else.
Can someone keep me on a productive track? I'm willing to put in blood and sweat, but don't want to waste any either.
Thanks for any help.

I have on a couple occasions. There's one problem
that I see. I don't usually know the answer right
away. So I go research and read up on what the issue
was be it an API issue, bad output issue etc. The
issue comes in when some of the hotdogs that REALLY
know Java and spend a lot of time here blast out an
answer in 5 minutes. So I essentially check my answer
against what they post. Sometimes I'm right,
sometimes wrong.Same thing happens to me all the time, there's many times I can answer a question after working with it for a little while. But by the time I have the question has been answered many times by those more knowledgeable than myself. But I still enjoy working out some of the problems and feel that it helps me learn some new things and review some things I may have previously learned but haven't used since. I would suggest trying to solve as many of the questions that come up here as possible even if you don't do it as quick as others here, it still worthwhile.
Definately come up with a program like the one you mentioned and do it from start to finish. My first one while self-learning was a simple program to compute a golf handicap. Seemed easy enough, enter some numbers, do a calculation and so on, but by the time I was finished (doing the GUI and all) I had learned things out that I would have never considered.
Good Luck

Similar Messages

  • What is the path and filename where the profile paths are stored?

    I currently am storing my profiles on a network drive. Due to some changes coming up in my home network I need to relocate them to a different drive and drive letter. I know there is a file in Firefox that has the locations of the profiles in it. I need to know the fully qualified path to find this file. The operating system is Windows XP and I am currently running the latest Firefox 3.6 on it.

    Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    See also:
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Moving_your_profile_folder

  • Where is the path of default.css the .rpt file

    I'm trying to use CSS in my report file, I in research on the internet see much talk of "set css class" I know I can assign this way the NAME of the css class, but I want to change the file CSS in itself, where it is? which the 'path' of him
    and where I find this way in the file?
    I'm using MVC C # to load the file and export in stream that converts PDF to display in the browser.
    To create the file I use Crystal Reports for VS2013 and within the own VS I create the rpt file
    Looking into this rpt the way for the much-talked 'default.css' you see in the internet research.
    wanted to change the path or know where it is to include classes on it.
    thank you

    Hi Ludvig,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor. About you said the
    path of default.css for the .rpt file issue, I suggest you can ask your issue directly on SAP Crystal Reports:
    http://scn.sap.com/community/crystal-reports/content?filterID=content~objecttype~objecttype[thread] for
    better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [SOLVED] Renaming Desktop folder in XFCE, where to change the path?

    I'd like to rename the folder Desktop to Czech equivalent Plocha, but of course when I do it, it prevents xfcedesktop from loading it's content to actual desktop (so I have empty desktop than, or only with Trash bin). I'd say I have to change the path from /home/behemot/Desktop to /home/behemot/Plocha somewhere. The question is, where should I do it? :-)
    Last edited by Behemot (2011-06-28 18:04:10)

    Generate the file with the command:
    xdg-user-dirs-update
    And change the paths manually. Mine file is adapted to spanish names:
    # This file is written by xdg-user-dirs-update
    # If you want to change or add directories, just edit the line you're
    # interested in. All local changes will be retained on the next run
    # Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
    # homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
    # absolute path. No other format is supported.
    XDG_DESKTOP_DIR="$HOME/Desktop"
    XDG_DOWNLOAD_DIR="$HOME/Descargas"
    XDG_TEMPLATES_DIR="$HOME/Plantillas"
    XDG_PUBLICSHARE_DIR="$HOME/Público"
    XDG_DOCUMENTS_DIR="$HOME/Documentos"
    XDG_MUSIC_DIR="$HOME/Música"
    XDG_PICTURES_DIR="$HOME/Imágenes"
    XDG_VIDEOS_DIR="$HOME/Vídeos"
    Ok.

  • Test-path where a directory in the path is variable

    My company has a series of fax lines and associated file shares. Faxes are processed & then dropped off into these file shares. From that point a service runs about every 60 seconds to look for files in these directories to import into a database.
    If there is a problem with the import then the service moves the file to a "HOLD" folder & files remain there until human intervention.
    I am trying to create a script that will find the HOLD directory in each of these folders and look for the existence of files, then email a group of users alerting them if there are.
    So there are several things I'm trying to accomplish.
    1. Look for files in a path where a folder in the middle of the path is variable.
    2. Send and email that will inform the recipient that there are files in the HOLD folder(s) and tell them WHICH ones
    Here's what I am starting with but it isn't working as expected.  There are files in at least one of these.  I also thought to try using some kind of foreach loop but it's eluding me.  Probably because it's late in the day for me.
    $folder = get-content -Path "\\child.domain.com\netlogon\scripts\ps\numbers.txt"
    if(Test-Path -Path "\\Server\scan import\fax\$folder\Hold" -include *.pdf, *.tif, *.jpg) {write-host "Files exist at $folder"} Else {write-host "No files in the hold folders"}
    # When I wrote this script only God and I knew what I was doing. # Now, only God Knows!

    The numbers.txt includes a list of folder names, one per line. I did come up with the following and it's working, for my purposes, so I now need to figure out how to get the results into the body of a single email.
    $parent = "\\server\scan import\fax\"
    $folders = get-content -Path "\\child.domain.com\netlogon\scripts\ps\numbers.txt"
    Foreach ($folder in $folders)
    if(Test-Path -Path "$parent$folder\HOLD\*" -PathType leaf)
    write-host "Files exist at $parent$folder\Hold"
    Else
    write-host "$folder Clear"
    I'm really only using the Write-Host actions in place of the Send-MailMessage Cmdlet, at least I think that is the command I need.
    # When I wrote this script only God and I knew what I was doing. # Now, only God Knows!

  • Where To give the path of file

    Hi,
    I am new to ODI,Here my source is a file,stored in my desktop.Please let me know where to set the path of my file in the physical schema.
    Thanks
    Anzeen

    Hi Anzeen,
    If its 10g u can use the default FILE_GENERIC data server which points to <ODI_HOME>/oracledi/demo/file
    If its 11g u need to create new DATA SERVER and PHYSICAL SCHEMA under FILE tech and in PHYSICAL SCHEMA in Directory (Schema) and Directory (Work Schema) u need to TYPE IN ur source file location which can be same.
    Ex:
    D:/SampleData
    Please note it the path would be separated by forward slash (/).
    Thanks,
    Guru

  • How to retrieve the path where AE is installed?

    Is there any code I can use that will return a string of an absolute path where AE is installed on its host?
    Thanks,
    Laz

    I think it's:
    Folder.appPackage
    and even though the Tools Guide implies it might be MacOS-only, it does work for Windows as well. It gives you an escaped string (spaces converted to %20, etc.) of the path to the folder where the app executable is located.
    Dan

  • TS5376 I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Where Should I add the path of Down loaded librearys before working on form

    Hi all,
    This is Narendra.
    I am working on oracle apps technical.
    I have been working on reports,have little Knowledge on forms.
    After Instaliation before working on forms we have to down load librearys in to local mechian and add that path at some where.
    1)where should I add That path?
    2)From where I have to add down load that librearys?
    Regards,
    Narendra.
    [email protected]

    Narendra,
    If you want to open an Oracle Apps form using Forms Builder, then please do the following:
    - Copy all pll files, TEMPLATE.fmb & APPSTAND.fmb from $AU_TOP/resource to your local pc (C:\ABC)
    - Add (C:\ABC) to FORMS60_PATH in the registry (HKLM > Software > Oracle)
    - Close/Open Forms Builder
    - Open the form

  • Where exactly does the path in Tomcat start?

    I am trying to create a jsp page that outputs a random image. The jsp page is directly in ROOT. The image files are in ROOT/img/random/.
    What I did was write a simple java class(not a servlet) to read the contents of random and then just randomly choose an image in that file. This class is in ROOT/WEB-INF/classes/com/utilities/, where the package is com.utilities.
    My question is what is the proper path to the images so the java program can read its contents?
    null

    Thanks, but that really doesn't answer my question.Then ask your real question, because that's the right
    answer.
    I
    need File to be able to access files under Tomcatand
    no matter what path I try it can't read it.exists()
    always returns false. I just need to know the path.I
    will eventually move it out of ROOT, but theproblem
    I am having will still exist in any other folder
    under webapps.Wrong, wrong, wrong.Right, right, right. How do I know this? Because I tried it
    >
    I tried to put this outside of ROOT, but Tomcatwill
    not automatically redirect to that page, using the
    instructions at the Tomcat site for changing the
    default start page. Neither does using a simplehtml
    page to redirect.The correct way to access a file in a web context is
    to use the servlet context and its
    getResourceAsStream method. That way you can find it
    as long as it's in the CLASSPATH. Put the file in
    your WEB-INF/classes directory and you'll be able to
    read it. It'll work in a WAR file or in exploded
    mode. It's portable, too.This is wrong. I put that image file in classes, guess what? It still can't read the file!!!!
    >

  • What will I learn at the Hour of Code lesson next week at Apple retail stores? Also, what age group will be attending?

    What will I learn at the Hour of Code lesson next week at Apple retail stores? Also, what age group will be attending?

    If you had searched for it you would have found  Apple Retail Store - Hour of Code Workshop

  • Where i can set the path to retreive the Km files

    Hello All,
    How to access the KM content files in my portal Application. Where I can set the path to retrieve any file from KM. Please  can any one help me.
    Thanks in Advance

    hi
    I am using the Following code. it gives error.i think i need to import some jar file. can you help which jar file to import and where i can find those jar files.
    Thanks in Advance.
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.portal.prt.resource.IResource;
    import com.sapportals.portal.prt.resource.IResource.*;
    import com.sapportals.portal.security.*;
    import com.sapportals.portal.security.usermanagement.*;
    public class test extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              //IUser user = WPUMFactory.getUserFactory().getEP5User(request.getUser());
              com.sapportals.portal.security.usermanagement.IUser user = null ;
              IResource resourceContext = new ResourceContext(user);
              RID rid = RID.getRID("http://epd.symbol.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.webdav/symbol_productinfo2/cs1504/images");
              try {
                IResource resource = ResourceFactory.getInstance()
                                          .getResource(rid, resourceContext);
                if( resource != null ) {
                   // resource found
                   System.out.println("resource " + resource.getRID() + " found");
                } else {
                   // resource not found
                   System.out.println("resource " + resource.getRID() + " does not exist");
              catch( Exception e ) {
                // problem while retrieving the resource
                System.out.println(
                                       "exception while trying to get resource " + e.getRID()
                                       + ": " + e.getMessage()

  • Remember the path where I last saved my document

    Hi,
    in OS X 10.4, the computer remembered the path to the location on the server where I last saved my document. Now, in leopard, when I open several documents, I have to set the path each time if I want to save the documents into a new location. Is there a way to change that?
    Just in case the problem is not clear:
    I open a document from the server which is located in file No. 1 and save it into file No. 2. If I open another document from file No.1 and I want to save it, the app offers to save it to file No.1 NOT No.2 (hich was the last file I used as destination). I would like to set it, that it remembers the last file.
    Regards
    Frank

    This is the appropriate behavior.. Most email programs (browsers too) store attachments (or files) in a cache area. You then need to do a save as to more them to a different location. The plug-in is finding the pdf in the location determined by the email program, so that is the last place the plug-in used. It doesn’t have a different location to use.

  • Not able to find out the path where i need to place the .plx file on server

    I have to make some changes in the PLL (library) file and compile it into it's .plx file and move the .plx to the server.
    I am not able to find out the path where i need to place the .plx file on the server.
    I have placed it in /iasapp01/app_name/library,but it is not taking it into effect.
    Please help,if anyone knows about this,as to how to solve this issue
    Thanks
    GAG

    Hi Andreas,
    My Forms Version is 9.0.2 and the application server is 9iAS( 9.0.2)
    The variable FORMS90_PATH in the .env file has the following entries
    FORMS90_PATH=/iasapp01/app_name/fmx:/iasapp01/app_name/library:/iaspp01/app_name/html
    and i have placed the plx in the /iasapp01/app_name/fmx path,but somehow its not referencing it.
    My Formsweb.cfg has the following entry...
    [app_name]
    pagetitle=app_name_WEB
    serverapp=/app_name/app_name
    width=800
    height=550
    colorscheme=blue
    separateframe=true
    form=log.fmx
    otherparams=REPORT_PATH=/iasapp01/app_name/html/report_files/ FILE_PATH=/iasapp01/app_name/rep/
    WEB_PATH=http://server.com:7778/app_name/
    envfile=/ias01/app/oracle/product/ias_9.0.2/forms90/server/app_name.env
    I have another question which is ..Does applciation built on Forms 9.0.2 would work on Internet Explorer 8 and Windows 8 environment using Sun JRE.
    I was going through this website
    http://nutthaphon.blogspot.com/2009/05/how-do-jinitiator-and-jpi-parameters.html
    and followed the steps as mentioned,but it did not work for me.
    Can you help me if you have any info on this?
    Thanks
    GAG

  • Change the path where i want to store the file

    i want to get the name of the Directory Is there any FM to get it.
    Means i have a scenario that I am trying to download a file from Application
    server and i am trying to Download where ever i want to store..... So It has
    to open a save Dialog box But by default the name of the file should same as
    that of the application server filename. But i should be able to change the
    Path where i want to store. Can any one help me out in this issue.

    Hi,
    Please check this.
    DATA: DIR TYPE STRING.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_BROWSE
      EXPORTING
        WINDOW_TITLE         = 'Select Folder'
        INITIAL_FOLDER       = 'C:'
      CHANGING
        SELECTED_FOLDER      = DIR
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        others               = 4.
    Now that you have the directory, you can add the filename and save to the location.
    Regards,
    Ferry Lianto

Maybe you are looking for

  • Unable to list SFTP Directory on windows 2008 r2 server from internet

    Hi experts, I have configured a SFTP on windows 2008 r2 server. And i am using the Filezilla on client machine to connect to SFTP server. The connection works properly on internal network but it displays error when i connect from internet. Error: Gnu

  • Problems with AP joining vWLC

    I am working with a vWLC on 7.4 code with a 3500i AP on 12.4(23c)JA code.  The AP is not joining the controller automatically here is the output from the AP during a join failure, *Jul 15 09:57:58.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request s

  • Imported CD Songs Only Appear In iTunes, Not On iPod Nano

    Hi, I bought my first iPod Nano, downloaded the iTunes software, and tried to import 2 songs from a cd. I have 2 issues which I need help with: 1. These 2 songs imported perfectly into iTunes, just as the manual described. But these 2 songs don't app

  • Gerätesteuerung einer Sony MAZ

    Hallo, ich möchte gerne Digibetas über eine Sony MAZ und Premiere ingesten. Die MAZ ist via SDI mit dem Rechner verbunden und das läuft auch alles, nur kann ich die MAZ noch nicht vom Computer aus steuern (da eben ein Kabel fehlt). Jetzt wollte ich m

  • Network disconnects when uploading

    This is a weird problem that started a few days ago. I'm using a WRT54G with 2 computers. Both of them are using a wireless usb network adapter. I've had this set up for almost a year now with no problems. All of a sudden whenever I upload to the web