Open Directory Project Answers
Newbie question about Groovy/Java?
Q. I know this is probably a really stupid question, but I've been digging around for hours, and have been unable to find anything on this. I'm a PHP/Python guy, so I'm not 100% sure how Java works. I am trying to compile an existing open source project written in Groovy. I figured out how to compile it with ant, but I can't seem to run it. I have a directory full of class files. Running them with the "java" command with the groovy jar files in the classpath gives me a "main class not found" error. Without the groovy jar in the classpath, it says it is unable to find the groovy libs or something. If I run the class files with the "groovy" command, it always says I have an unrecognized character. I know I'm… [cont.]
Asked by Tom Smith - Wed Aug 26 22:32:52 2009 - Programming & Design - 1 Answers - Comments
A. What I would do is do a: grep "public void main(" -l * */* */*/* on the directory where the .java files are, that should output the main class which you should run, if for instance you get app/li/cat/ion/Runner.java as output run it with java app.li.cat.ion.Runner
Answered by bamboomy - Fri Aug 28 10:12:15 2009
Q. I know this is probably a really stupid question, but I've been digging around for hours, and have been unable to find anything on this. I'm a PHP/Python guy, so I'm not 100% sure how Java works. I am trying to compile an existing open source project written in Groovy. I figured out how to compile it with ant, but I can't seem to run it. I have a directory full of class files. Running them with the "java" command with the groovy jar files in the classpath gives me a "main class not found" error. Without the groovy jar in the classpath, it says it is unable to find the groovy libs or something. If I run the class files with the "groovy" command, it always says I have an unrecognized character. I know I'm… [cont.]
Asked by Tom Smith - Wed Aug 26 22:32:52 2009 - Programming & Design - 1 Answers - Comments
A. What I would do is do a: grep "public void main(" -l * */* */*/* on the directory where the .java files are, that should output the main class which you should run, if for instance you get app/li/cat/ion/Runner.java as output run it with java app.li.cat.ion.Runner
Answered by bamboomy - Fri Aug 28 10:12:15 2009
Business Directory. for a school project i have been tasked to make a website! Cannot think of a Name!!?
Q. For a school project of mine, i have been tasked with creating a Business Directory. Sadly this isn't just a mock, it has to be published and usable. Well i can publish it and create it, im just having trouble thinking of a name!! Here is what i have brainstormed so far: On You Corporate Enterprise Web Together Show Open Evolve Relation Real Share Connect Link Direct Business Point Advert Reach Solutions Show Partner Directory Expedite I would really like it to be a one-worder (like: Facebook relatesto a "book" and Twitter for example has a relation to what it does), i would really like to have that approach. Remember this have to actually go as a .com / ,co.uk so the more uuniqueit is the better. Sadly I am no good at this, so… [cont.]
Asked by Nec87 - Wed Aug 5 15:59:22 2009 - Other - Advertising & Marketing - 2 Answers - Comments
A. If you really want to make something that will be useful and usable from day one, think "local". I don't know where you live but use the location in the name and if the .COM name is gone, try .BIZ .INFO, .CO.UK etc. The more specific the locality i.e. your town or village rather than the nearest city, the easier it will be to fill it with data about local businesses. For example, if you live in Headingley, go for www.headingley.biz or www.headingleypages.biz, rather than something with Leeds in the name. Hope that helps and good luck with your project.
Answered by Andy - Sun Aug 9 11:13:14 2009
Q. For a school project of mine, i have been tasked with creating a Business Directory. Sadly this isn't just a mock, it has to be published and usable. Well i can publish it and create it, im just having trouble thinking of a name!! Here is what i have brainstormed so far: On You Corporate Enterprise Web Together Show Open Evolve Relation Real Share Connect Link Direct Business Point Advert Reach Solutions Show Partner Directory Expedite I would really like it to be a one-worder (like: Facebook relatesto a "book" and Twitter for example has a relation to what it does), i would really like to have that approach. Remember this have to actually go as a .com / ,co.uk so the more uuniqueit is the better. Sadly I am no good at this, so… [cont.]
Asked by Nec87 - Wed Aug 5 15:59:22 2009 - Other - Advertising & Marketing - 2 Answers - Comments
A. If you really want to make something that will be useful and usable from day one, think "local". I don't know where you live but use the location in the name and if the .COM name is gone, try .BIZ .INFO, .CO.UK etc. The more specific the locality i.e. your town or village rather than the nearest city, the easier it will be to fill it with data about local businesses. For example, if you live in Headingley, go for www.headingley.biz or www.headingleypages.biz, rather than something with Leeds in the name. Hope that helps and good luck with your project.
Answered by Andy - Sun Aug 9 11:13:14 2009
How to Code a Program that Scans ALL the TXT Files in One Given Directory (C Language)?
Q. I was given a little project about searching a piece of string in more than one TXT files (that their name isn't already specified in the program, i.e not like "filevar = fopen("file.txt",r+);"; ANY existing TXT file should be opened and scanned by the program) in a given directory (directory name should also be put by the user). Searching the string in one specific file is not a big problem for me, but I have no idea how to build the program in such a way it will open, scan and close ALL the TXT files one by one (and ONLY the TXT files) in one directory. Is there a special codeline for such a thing that I haven't encountered?
Asked by Neset Sopaci - Tue Sep 28 17:13:20 2010 - Programming & Design - 1 Answers - Comments
A. actually, i didnt remember the function name that gives the list of all the files existing in a directory but i'm sure that such a func. exists. Using that you can get all the names of the files in a given directory. Then use the process which you already know repeatedly(using loop)
Answered by sai - Sat Oct 2 08:46:05 2010
Q. I was given a little project about searching a piece of string in more than one TXT files (that their name isn't already specified in the program, i.e not like "filevar = fopen("file.txt",r+);"; ANY existing TXT file should be opened and scanned by the program) in a given directory (directory name should also be put by the user). Searching the string in one specific file is not a big problem for me, but I have no idea how to build the program in such a way it will open, scan and close ALL the TXT files one by one (and ONLY the TXT files) in one directory. Is there a special codeline for such a thing that I haven't encountered?
Asked by Neset Sopaci - Tue Sep 28 17:13:20 2010 - Programming & Design - 1 Answers - Comments
A. actually, i didnt remember the function name that gives the list of all the files existing in a directory but i'm sure that such a func. exists. Using that you can get all the names of the files in a given directory. Then use the process which you already know repeatedly(using loop)
Answered by sai - Sat Oct 2 08:46:05 2010
why are these aspx pages hating visual studio so much?
Q. I am doing this side job and it is making me crazy already. It was supposed to be asp but I see that most of the site is aspx. So I cleaned off my computer, gritted my teeth and installed visual studio. Now I dowloaded the site, and put the files in a directory. I opened VS and made a new site. It made a folder >>> Mydocuments/visualstudio2005/website1 I closed VS and I moved the existing aspx pages and all their crap into that folder and then reopened up visual studio. I opened up default.aspx and it came up in source view with a ton of errors. I can read the source just fine, but it will not switch over to design view. Any ideas on what the heck might be wrong here? BTW The pages work online. Example error: Warning 2 Attribute 'C [cont.]
Asked by lalewicz - Sun Jul 6 21:22:17 2008 - Programming & Design - 1 Answers - Comments
A. ASPX pages are ASP application pages - that means that the pages need an application (defined in IIS) to be able to run. Without the application, all you can do is manually edit the files, and use VWD to generate an on-the-fly application using the localhost server. Which is why I hate asp, but that's an aside. Check out this link:
Answered by Some Guy - Sun Jul 6 21:43:41 2008
Q. I am doing this side job and it is making me crazy already. It was supposed to be asp but I see that most of the site is aspx. So I cleaned off my computer, gritted my teeth and installed visual studio. Now I dowloaded the site, and put the files in a directory. I opened VS and made a new site. It made a folder >>> Mydocuments/visualstudio2005/website1 I closed VS and I moved the existing aspx pages and all their crap into that folder and then reopened up visual studio. I opened up default.aspx and it came up in source view with a ton of errors. I can read the source just fine, but it will not switch over to design view. Any ideas on what the heck might be wrong here? BTW The pages work online. Example error: Warning 2 Attribute 'C [cont.]
Asked by lalewicz - Sun Jul 6 21:22:17 2008 - Programming & Design - 1 Answers - Comments
A. ASPX pages are ASP application pages - that means that the pages need an application (defined in IIS) to be able to run. Without the application, all you can do is manually edit the files, and use VWD to generate an on-the-fly application using the localhost server. Which is why I hate asp, but that's an aside. Check out this link:
Answered by Some Guy - Sun Jul 6 21:43:41 2008
project help??
Q. i try to compile a project in c++ and i get the following error : --- Build started: Project: Main Wnd, Configuration: Debug Win32 --- Compiling... Std Afx.cpp g:\tc35\keylogger\sources\control panel\stdafx.h(15) : fatal error C1083: Cannot open include file: 'afxwin.h': No such file or directory Build log was saved at "file://g:\TC35\Keylogger\sources\control panel\Debug\Build Log.htm" Main Wnd - 1 error(s), 0 warning(s) === Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped === what does it mean?? the file afxwin.h exists but i cant seem to figure it out. Plzzz Help!! oh i used visual c++!!
Asked by XYZ - Sat Oct 27 10:31:17 2007 - Programming & Design - 1 Answers - Comments
A. Three quick possible things: 1. Did you actually '#include' it in the program? 2. Is the path to the file the same as what the IDE thinks it is? 3. Is this file actually corrupted or zero length? If the answer to 1 or 2 is no, then that is the problem. If the answer to number 3 is yes, that is the problem. I hope this helps you out. Pivy.
Answered by pivy806 - Sun Oct 28 15:31:52 2007
Q. i try to compile a project in c++ and i get the following error : --- Build started: Project: Main Wnd, Configuration: Debug Win32 --- Compiling... Std Afx.cpp g:\tc35\keylogger\sources\control panel\stdafx.h(15) : fatal error C1083: Cannot open include file: 'afxwin.h': No such file or directory Build log was saved at "file://g:\TC35\Keylogger\sources\control panel\Debug\Build Log.htm" Main Wnd - 1 error(s), 0 warning(s) === Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped === what does it mean?? the file afxwin.h exists but i cant seem to figure it out. Plzzz Help!! oh i used visual c++!!
Asked by XYZ - Sat Oct 27 10:31:17 2007 - Programming & Design - 1 Answers - Comments
A. Three quick possible things: 1. Did you actually '#include' it in the program? 2. Is the path to the file the same as what the IDE thinks it is? 3. Is this file actually corrupted or zero length? If the answer to 1 or 2 is no, then that is the problem. If the answer to number 3 is yes, that is the problem. I hope this helps you out. Pivy.
Answered by pivy806 - Sun Oct 28 15:31:52 2007
How to write user defined functions and add it to the library in C language? I need it for dev c++ and g++?
Q. 1) How to write user defined functions and add it to the library in C language? I need it for dev c++ and g++ /linux compiler. 2) I have found a step by step approach for this , but its pretty confusing.Is there any mistake or correction in this , do correct the same. ***XXX*** Let us now see how to add user-defined functions to the library. Different compilers provide different utilities to add/delete/modify functions in the standard library. For example, Turbo C/C++ compilers provide a utility called tlib.exe (Turbo Librarian). Let us use this utility to add a function factorial( ) to the library. Given below are the steps to do so: (a) Write the function definition of factorial( ) in some file, say fact.c . int factorial ( int num ) {… [cont.]
Asked by Aarthi Msincs - Thu Jun 16 12:01:03 2011 - Programming & Design - 1 Answers - Comments
A. User-defined functions for what framework?
Answered by Rorysauce - Fri Jun 17 02:32:55 2011
Q. 1) How to write user defined functions and add it to the library in C language? I need it for dev c++ and g++ /linux compiler. 2) I have found a step by step approach for this , but its pretty confusing.Is there any mistake or correction in this , do correct the same. ***XXX*** Let us now see how to add user-defined functions to the library. Different compilers provide different utilities to add/delete/modify functions in the standard library. For example, Turbo C/C++ compilers provide a utility called tlib.exe (Turbo Librarian). Let us use this utility to add a function factorial( ) to the library. Given below are the steps to do so: (a) Write the function definition of factorial( ) in some file, say fact.c . int factorial ( int num ) {… [cont.]
Asked by Aarthi Msincs - Thu Jun 16 12:01:03 2011 - Programming & Design - 1 Answers - Comments
A. User-defined functions for what framework?
Answered by Rorysauce - Fri Jun 17 02:32:55 2011
Why is it impossible to add a new site to dmoz.org (the open directory project) ?
Q. I have tried for around a month to add my website to the open directory project, using the correct methods, from the correct areas of the directory. However, I always get an error...saying come back in a few days. This has been going on for several weeks! Does anyone know why this is, or if I'll be able to add my site in the future? My site is and the error page I always get is I want to submit to the shopping/ethnic and regional/european/russian area, but have also tried other areas with no success. Any help / information would be appreciated, thanks!
Asked by BarnyD - Sat Nov 18 08:50:03 2006 - Other - Internet - 1 Answers - Comments
A. Taking everything you said into consideration something is obviously wrong with their site. What I would do if I was you and really wanted to get my site listed there follow their instructions on becoming a editor then you can put your site there yourself. Join the Open Directory Project Find a category that you would like to maintain. Follow the Become an Editor link at the top of the category page. Note that some categories do not have a Become an Editor link; you should find a more specific category which interests you, and apply there. Once you have joined, and gained some experience, you can apply for more general categories.
Answered by Digital E - Sat Nov 18 10:01:47 2006
Q. I have tried for around a month to add my website to the open directory project, using the correct methods, from the correct areas of the directory. However, I always get an error...saying come back in a few days. This has been going on for several weeks! Does anyone know why this is, or if I'll be able to add my site in the future? My site is and the error page I always get is I want to submit to the shopping/ethnic and regional/european/russian area, but have also tried other areas with no success. Any help / information would be appreciated, thanks!
Asked by BarnyD - Sat Nov 18 08:50:03 2006 - Other - Internet - 1 Answers - Comments
A. Taking everything you said into consideration something is obviously wrong with their site. What I would do if I was you and really wanted to get my site listed there follow their instructions on becoming a editor then you can put your site there yourself. Join the Open Directory Project Find a category that you would like to maintain. Follow the Become an Editor link at the top of the category page. Note that some categories do not have a Become an Editor link; you should find a more specific category which interests you, and apply there. Once you have joined, and gained some experience, you can apply for more general categories.
Answered by Digital E - Sat Nov 18 10:01:47 2006
require_once problem after uploading to the server: failed to open stream: No such file or directory?
Q. Hello. I think this is a common problem although I'm new to uploading files to the server. Everything was OK @ local PC. After uploading the web-project to the server, require_once('/folder1/file2.php'); function doesn't work. What changes should I do? Additional information: index.php is seen properly on both localhost and on the server. The file file2.php is in the directory Folder1 that is at the same directory as index.php .. index.php folder1/file2.php So, how to fix require_once file2.php is seen from index.php? require_once('/folder1/file2.php'); doesn't work. Thank you.
Asked by Vergus Lee - Thu Oct 7 09:40:26 2010 - Programming & Design - 1 Answers - Comments
A. is folder1 in the root dir? eg it may have been on your localhost however if you are on a subdomain or folder: domain.com/mysite/folder1/ then /folder1/file2.php is looking in the dir: domain.com/folder1/ try removing the first forward slash so it reads: require_once('folder1/file2.php'); beyond that, either explicitly state the full path else more info is needed.
Answered by Emissary - Thu Oct 7 10:36:24 2010
Q. Hello. I think this is a common problem although I'm new to uploading files to the server. Everything was OK @ local PC. After uploading the web-project to the server, require_once('/folder1/file2.php'); function doesn't work. What changes should I do? Additional information: index.php is seen properly on both localhost and on the server. The file file2.php is in the directory Folder1 that is at the same directory as index.php .. index.php folder1/file2.php So, how to fix require_once file2.php is seen from index.php? require_once('/folder1/file2.php'); doesn't work. Thank you.
Asked by Vergus Lee - Thu Oct 7 09:40:26 2010 - Programming & Design - 1 Answers - Comments
A. is folder1 in the root dir? eg it may have been on your localhost however if you are on a subdomain or folder: domain.com/mysite/folder1/ then /folder1/file2.php is looking in the dir: domain.com/folder1/ try removing the first forward slash so it reads: require_once('folder1/file2.php'); beyond that, either explicitly state the full path else more info is needed.
Answered by Emissary - Thu Oct 7 10:36:24 2010
is it me or is there a problem with dmoz open directory project ?
Q. i have tried several times to suggest my site, spent ages over the description, only to enter the letters on the picture then it doesnt accept them even when they are exactly the same. also when you click feedback it says its unavailable.,and has done for weeks. whats going on ? are there any other directories that anyone can recommend and get good search results ?
Asked by grrrzippy - Mon Oct 1 20:11:17 2007 - Other - Internet - 2 Answers - Comments
A. While dmoz has historically been a showcat directory placement - the work involved has largely outweighed the benefit for some time. You will typically wait an excessively long time to see if you've been accepted with no accountability if you haven't. For my sites and my client's sites, we've found better benefit working through other directories.
Answered by Luke P - Mon Oct 1 20:25:23 2007
Q. i have tried several times to suggest my site, spent ages over the description, only to enter the letters on the picture then it doesnt accept them even when they are exactly the same. also when you click feedback it says its unavailable.,and has done for weeks. whats going on ? are there any other directories that anyone can recommend and get good search results ?
Asked by grrrzippy - Mon Oct 1 20:11:17 2007 - Other - Internet - 2 Answers - Comments
A. While dmoz has historically been a showcat directory placement - the work involved has largely outweighed the benefit for some time. You will typically wait an excessively long time to see if you've been accepted with no accountability if you haven't. For my sites and my client's sites, we've found better benefit working through other directories.
Answered by Luke P - Mon Oct 1 20:25:23 2007
How can I get Microsoft's Search to properly search inside text based files that don't have a .txt extension?
Q. I am working with another software vendors sample .java files (a couple hundred) and occasionally need to find one that demonstrates how to use their API. Their API set has over 10,000 objects and the documentation unfortunately is, more often than not, lacking details (i.e. a method takes "int arg1, int arg2" but really they are wanting some sort of enumerated object). I have done both explicit searches (*.java) and open searches (*.*) to find files containing keywords but the Microsoft search does not find files that contain the words. If I manually search the files, I can see plenty of them that contain the words, but I don't really want to rely on a manual search when the OS has a search capability (just not working as… [cont.]
Asked by Jim Maryland - Thu Oct 11 10:26:05 2007 - Other - Computers - 1 Answers - 2 Comments
A. I'm not a big fan of Microsoft's search so I don't use it very often and I'm not an expert by any means. So these are just some random thoughts based on search parameters used by Google (and most other full-text search engines.) Google makes big use of the Boolean modifiers + (must include), - (must not include), | (pipe symbol, to specify or), and finally ~ (synonym). And specific phrases are enclosed in quotes. +"three blind mice" -"see how they run" is a simple search indicator that specifies the search must include the words "three blind mice" but must not include "see how they run". Since I'm not an expert, I don't know if Microsoft's search engine uses special syntaxes like Google. One of… [cont.]
Answered by Geri - Fri Oct 19 05:38:21 2007
Q. I am working with another software vendors sample .java files (a couple hundred) and occasionally need to find one that demonstrates how to use their API. Their API set has over 10,000 objects and the documentation unfortunately is, more often than not, lacking details (i.e. a method takes "int arg1, int arg2" but really they are wanting some sort of enumerated object). I have done both explicit searches (*.java) and open searches (*.*) to find files containing keywords but the Microsoft search does not find files that contain the words. If I manually search the files, I can see plenty of them that contain the words, but I don't really want to rely on a manual search when the OS has a search capability (just not working as… [cont.]
Asked by Jim Maryland - Thu Oct 11 10:26:05 2007 - Other - Computers - 1 Answers - 2 Comments
A. I'm not a big fan of Microsoft's search so I don't use it very often and I'm not an expert by any means. So these are just some random thoughts based on search parameters used by Google (and most other full-text search engines.) Google makes big use of the Boolean modifiers + (must include), - (must not include), | (pipe symbol, to specify or), and finally ~ (synonym). And specific phrases are enclosed in quotes. +"three blind mice" -"see how they run" is a simple search indicator that specifies the search must include the words "three blind mice" but must not include "see how they run". Since I'm not an expert, I don't know if Microsoft's search engine uses special syntaxes like Google. One of… [cont.]
Answered by Geri - Fri Oct 19 05:38:21 2007
fatal error C1083: Cannot open include file: 'isostream': No such file or directory?
Q. So here is my code: // Printing Screen.cpp : main project file. // Fig. 2.1: fig02_01.cpp // Text-Printing Program. #include // allows program to output data to the screen. int main() { std::cout << "Welcome to C++!\n"; //Display message. return 0; //indicate that program ended successfully. }//end function main I keep getting the same error when I try and build the program: --- Build started: Project: Printing Screen, Configuration: Debug Win32 --- Compiling... Printing Screen.cpp .\Printing Screen.cpp(4) : fatal error C1083: Cannot open include file: 'isostream': No such file or directory Build log was saved at "file://h:\asst0\Printing Screen\Printing Screen\Debug\Build Log.htm" Printing Screen - 1 error(s), 0… [cont.]
Asked by Peter The Griffin - Sat Sep 5 18:21:06 2009 - Programming & Design - 2 Answers - Comments
A. Its iostream, not isostream And to the second person that answered this question: This is the programming help section. I know how to program. I helped him. Just because you dont know whats going on doesnt mean no one else does
Answered by keen23 - Sat Sep 5 18:25:10 2009
Q. So here is my code: // Printing Screen.cpp : main project file. // Fig. 2.1: fig02_01.cpp // Text-Printing Program. #include // allows program to output data to the screen. int main() { std::cout << "Welcome to C++!\n"; //Display message. return 0; //indicate that program ended successfully. }//end function main I keep getting the same error when I try and build the program: --- Build started: Project: Printing Screen, Configuration: Debug Win32 --- Compiling... Printing Screen.cpp .\Printing Screen.cpp(4) : fatal error C1083: Cannot open include file: 'isostream': No such file or directory Build log was saved at "file://h:\asst0\Printing Screen\Printing Screen\Debug\Build Log.htm" Printing Screen - 1 error(s), 0… [cont.]
Asked by Peter The Griffin - Sat Sep 5 18:21:06 2009 - Programming & Design - 2 Answers - Comments
A. Its iostream, not isostream And to the second person that answered this question: This is the programming help section. I know how to program. I helped him. Just because you dont know whats going on doesnt mean no one else does
Answered by keen23 - Sat Sep 5 18:25:10 2009
How is the Open Directory Project (dmoz.org) being used today?
Q. The ODP was started back in the late 90s as an alternative to the Yahoo! directory. A distributed group of volunteer editors manually categorize Web sites and maintain an ontology. The data is available for browsing using a category tree at DMOZ.org. A file containing all the data is also available. I'm curious how people are using it today. Are you currently using the ODP? Do you use it to find Web sites? Do you submit Web sites? Do you use the RDF file?
Asked by CuriousGeorge - Thu Feb 22 13:49:17 2007 - Other - Internet - 1 Answers - Comments
A. Surfers does not use it so much today but it is a very important site due to google indexing it regulary...
Answered by Jojo G - Sun Feb 25 07:22:04 2007
Q. The ODP was started back in the late 90s as an alternative to the Yahoo! directory. A distributed group of volunteer editors manually categorize Web sites and maintain an ontology. The data is available for browsing using a category tree at DMOZ.org. A file containing all the data is also available. I'm curious how people are using it today. Are you currently using the ODP? Do you use it to find Web sites? Do you submit Web sites? Do you use the RDF file?
Asked by CuriousGeorge - Thu Feb 22 13:49:17 2007 - Other - Internet - 1 Answers - Comments
A. Surfers does not use it so much today but it is a very important site due to google indexing it regulary...
Answered by Jojo G - Sun Feb 25 07:22:04 2007
Applet is not initializing in a web project in My Eclipse than what to do ?
Q. That applet is working in applet viewer but not working in html page please hellp me...and please tell if i need to use some plugin or to change some setting. I am using My Eclipse 7.1 and tomcat 5.5 Server.. When i open java console than a message come Java Plug-in 1.6.0_21 Using JRE version 1.6.0_21-b07 Java Hot Spot(TM) Client VM User home directory = C:\Documents and Settings\genie --- c: clear console window f: finalize objects on finalization queue g: garbage collect h: display this help message l: dump classloader list m: print memory usage o: trigger logging q: hide console r: reload policy configuration s: dump system and deployment properties t: dump thread list v: dump thread stack x: clear classloader cache 0-5: set trace level… [cont.]
Asked by Amit Gupta - Fri Aug 27 03:15:27 2010 - Programming & Design - 3 Answers - Comments
A. Class Not Found Exception means the class wasn't found. Where do you keep Applettest.class? Where do you keep the html document? Does Applettest belong to a package? Ie. does it say "package some Name;" at the top of the source code of Applettest? Edit: I just thought of something, maybe the issue can be resolved by putting the applet in a jar!
Answered by Dude Guy - Fri Aug 27 09:43:51 2010
Q. That applet is working in applet viewer but not working in html page please hellp me...and please tell if i need to use some plugin or to change some setting. I am using My Eclipse 7.1 and tomcat 5.5 Server.. When i open java console than a message come Java Plug-in 1.6.0_21 Using JRE version 1.6.0_21-b07 Java Hot Spot(TM) Client VM User home directory = C:\Documents and Settings\genie --- c: clear console window f: finalize objects on finalization queue g: garbage collect h: display this help message l: dump classloader list m: print memory usage o: trigger logging q: hide console r: reload policy configuration s: dump system and deployment properties t: dump thread list v: dump thread stack x: clear classloader cache 0-5: set trace level… [cont.]
Asked by Amit Gupta - Fri Aug 27 03:15:27 2010 - Programming & Design - 3 Answers - Comments
A. Class Not Found Exception means the class wasn't found. Where do you keep Applettest.class? Where do you keep the html document? Does Applettest belong to a package? Ie. does it say "package some Name;" at the top of the source code of Applettest? Edit: I just thought of something, maybe the issue can be resolved by putting the applet in a jar!
Answered by Dude Guy - Fri Aug 27 09:43:51 2010
Does the "Open Directory Project" have anything to do with search engine rank, like google rank?
Q. Hi im making my own website, but i want to know if i can make it visible without paying money. Does the open directory project site... have anything to do with getting my site on a web browser? If anyone can help that would be great thanks
Asked by Sarah W - Sat Apr 7 16:27:04 2007 - Other - Internet - 1 Answers - Comments
A. By submitting your web site to dmoz and being accepted in the open directory, your site will be listed in a good number of directories. And that's a very good thing. You can have your web site spidered by Google, Yahoo, MSN and others by submitting your site to them. Search engine rank is more a function of two things. First, build your pages using good keywords (hope you understand that phrase) and with original, quality content. Secondly, writing articles is considered the very best way to get targeted traffic to your site. The good news is that it's free. To learn more visit You'll find articles you can use on your site and you'll discover articles that will explain exactly how to write articles. All the best with your web site. Have… [cont.]
Answered by funbirthdays - Sat Apr 7 17:05:13 2007
Q. Hi im making my own website, but i want to know if i can make it visible without paying money. Does the open directory project site... have anything to do with getting my site on a web browser? If anyone can help that would be great thanks
Asked by Sarah W - Sat Apr 7 16:27:04 2007 - Other - Internet - 1 Answers - Comments
A. By submitting your web site to dmoz and being accepted in the open directory, your site will be listed in a good number of directories. And that's a very good thing. You can have your web site spidered by Google, Yahoo, MSN and others by submitting your site to them. Search engine rank is more a function of two things. First, build your pages using good keywords (hope you understand that phrase) and with original, quality content. Secondly, writing articles is considered the very best way to get targeted traffic to your site. The good news is that it's free. To learn more visit You'll find articles you can use on your site and you'll discover articles that will explain exactly how to write articles. All the best with your web site. Have… [cont.]
Answered by funbirthdays - Sat Apr 7 17:05:13 2007
What open source solution is there for this collabaration project?
Q. I would like to have the following tools available to me and my users: Directory user-submitted Web links Forums online discussions on a variety of topics File repository user-submitted files (If possible, not a requesit: Wiki/Doc editer Collaboratively authored documents) I would like this to be a simple solution and installed on my domain, and it all to be integrated. I had a look at Tiki Wiki but it seems too much for my needs. The doc collaboartion is not the most important. I was wondering if there is an opensource solution that would meet these needs? Thanks
Asked by David T - Wed Oct 31 06:44:19 2007 - Programming & Design - 1 Answers - Comments
A. Try Drupal or Joomla. Most of what you mention comes with the default distribution, extra functionality can be installed as modules, generally very easy to do.
Answered by rob_crowther_uk - Thu Nov 1 10:23:57 2007
Q. I would like to have the following tools available to me and my users: Directory user-submitted Web links Forums online discussions on a variety of topics File repository user-submitted files (If possible, not a requesit: Wiki/Doc editer Collaboratively authored documents) I would like this to be a simple solution and installed on my domain, and it all to be integrated. I had a look at Tiki Wiki but it seems too much for my needs. The doc collaboartion is not the most important. I was wondering if there is an opensource solution that would meet these needs? Thanks
Asked by David T - Wed Oct 31 06:44:19 2007 - Programming & Design - 1 Answers - Comments
A. Try Drupal or Joomla. Most of what you mention comes with the default distribution, extra functionality can be installed as modules, generally very easy to do.
Answered by rob_crowther_uk - Thu Nov 1 10:23:57 2007
"fatal error C1083: Cannot open include file: 'windows.h': No such file or directory"?
Q. I use Visual C++ 2005 express edition. In my "Tools -> Options -> Projects and Solutions -> V++ Directories" Under "Include files" I have: "$(VCInstall Dir)Platform SDK\include" and "$(Framework SDKDir)include" I have also downloaded and installed: "Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1" from: and I included it by typing: #include in my source code. In my "Project -> Properties -> C++ -> Pre Processor" where it says "Ignore Standard include path" I have it set to "no". Can't think of anything else I should say here.. Please help me!
Asked by Emperor of China A - Thu Sep 2 06:07:14 2010 - Programming & Design - 1 Answers - Comments
A. You downloaded the .NET Framework 3.5 SDK which is not compatible with Visual C++ 2005 Express Edition. As I said yesterday in your first post, you really need to upgrade from the 2005 version to either 2008 Express Edition or even better 2010 Express Edition. If you're running a 64 bit version of Win7 then I would definitely go with 2010.
Answered by Gardner - Thu Sep 2 06:16:44 2010
Q. I use Visual C++ 2005 express edition. In my "Tools -> Options -> Projects and Solutions -> V++ Directories" Under "Include files" I have: "$(VCInstall Dir)Platform SDK\include" and "$(Framework SDKDir)include" I have also downloaded and installed: "Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1" from: and I included it by typing: #include in my source code. In my "Project -> Properties -> C++ -> Pre Processor" where it says "Ignore Standard include path" I have it set to "no". Can't think of anything else I should say here.. Please help me!
Asked by Emperor of China A - Thu Sep 2 06:07:14 2010 - Programming & Design - 1 Answers - Comments
A. You downloaded the .NET Framework 3.5 SDK which is not compatible with Visual C++ 2005 Express Edition. As I said yesterday in your first post, you really need to upgrade from the 2005 version to either 2008 Express Edition or even better 2010 Express Edition. If you're running a 64 bit version of Win7 then I would definitely go with 2010.
Answered by Gardner - Thu Sep 2 06:16:44 2010
How do I wrap the entire main routine in a do-while loop so that the user may keep repeating it?
Q. also how do I prompt the user and recieve the name for a temporary file(you don'e need the whole path; the file will be created in your project directory.) Open that file for output, thereby creating it. How do I do this??? its all in C++
Asked by Arete - Thu Oct 8 01:59:44 2009 - Programming & Design - 1 Answers - Comments
A. If u want 2 do the entire program flow inside the main program u just place all the code inside a do while loop with condition while(1).. At the same time, u can get the file name from the user and store it in an array. create a file with that name by using "ostream" object.
Answered by Datri - Thu Oct 8 02:15:36 2009
Q. also how do I prompt the user and recieve the name for a temporary file(you don'e need the whole path; the file will be created in your project directory.) Open that file for output, thereby creating it. How do I do this??? its all in C++
Asked by Arete - Thu Oct 8 01:59:44 2009 - Programming & Design - 1 Answers - Comments
A. If u want 2 do the entire program flow inside the main program u just place all the code inside a do while loop with condition while(1).. At the same time, u can get the file name from the user and store it in an array. create a file with that name by using "ostream" object.
Answered by Datri - Thu Oct 8 02:15:36 2009
Running an Eclipse JSP Project on a Web Browser?
Q. Hello everyone, I have: Eclipse EE, Tomcat6 and a JDK I've developed a website using eclipse, it consists of a lot of HTML Pages and the resources used for them. It also contains 3 JSPs and 3 Java classes which are basically beans. Only 1 JSP page is shown, and is in an iframe in a HTML Page. I've got this Eclipse Dynamic Web Project saved in my workspace. I want to run it on a normal web browser though. So far I know in the installation folder of tomcat6, in the webapps directory, I'm meant to put something there, I'm not sure what exactly - The Whole project? Or parts of it? The files from inside the project? Once I've done that, will the JSP files work in the web browser? I also know part of the link to open the website once its up: But… [cont.]
Asked by Need Help - Wed Feb 9 09:10:09 2011 - Programming & Design - 1 Answers - Comments
Q. Hello everyone, I have: Eclipse EE, Tomcat6 and a JDK I've developed a website using eclipse, it consists of a lot of HTML Pages and the resources used for them. It also contains 3 JSPs and 3 Java classes which are basically beans. Only 1 JSP page is shown, and is in an iframe in a HTML Page. I've got this Eclipse Dynamic Web Project saved in my workspace. I want to run it on a normal web browser though. So far I know in the installation folder of tomcat6, in the webapps directory, I'm meant to put something there, I'm not sure what exactly - The Whole project? Or parts of it? The files from inside the project? Once I've done that, will the JSP files work in the web browser? I also know part of the link to open the website once its up: But… [cont.]
Asked by Need Help - Wed Feb 9 09:10:09 2011 - Programming & Design - 1 Answers - Comments
How can I get my website listed in DMOZ (The Open Directory Project)?
Q. Ive used their application with no luck! I have heard that you have to know an editor to have your site listed. We are looking to have our sited listed at
Asked by cbarceloux - Mon Apr 21 20:38:18 2008 - Other - Internet - 2 Answers - Comments
A. You have already submitted it. Now it is a waiting game. Just wait months and hope that it is approved. Don't submit it again, it will just get you pushed to the back of the list or worse.
Answered by Matthew M - Mon Apr 21 20:42:37 2008
Q. Ive used their application with no luck! I have heard that you have to know an editor to have your site listed. We are looking to have our sited listed at
Asked by cbarceloux - Mon Apr 21 20:38:18 2008 - Other - Internet - 2 Answers - Comments
A. You have already submitted it. Now it is a waiting game. Just wait months and hope that it is approved. Don't submit it again, it will just get you pushed to the back of the list or worse.
Answered by Matthew M - Mon Apr 21 20:42:37 2008
Net Beans project wont open as project anymore.?
Q. In Net Beans, until yesterday, I could browse to my project folder and open my project. Now, when I go to my project folder, one of my projects now register as just another directory. Did I accidentally delete something? Can I replace it or whats the best way to get my project back? OK. Thanks. i'll try that If I dont get any other answers.
Asked by Jonathan W - Mon Mar 30 13:07:18 2009 - Programming & Design - 1 Answers - Comments
A. I've never had that specific thing happen. IMHO, if you know ANT then it might be possible. Net Beans constructs the ANT from all of your set-up getting to the source window to code. But, there's been many a time when I close a project, I want a fresh attack. I start a new Project, add a new package and start fresh with new source files. I use a text editor to open the My Spiffy Code.java, copy-n-paste to the various files in the new Project. Less than 30 minutes with reevaluation thinking going on.
Answered by deonejuan - Mon Mar 30 13:23:29 2009
Q. In Net Beans, until yesterday, I could browse to my project folder and open my project. Now, when I go to my project folder, one of my projects now register as just another directory. Did I accidentally delete something? Can I replace it or whats the best way to get my project back? OK. Thanks. i'll try that If I dont get any other answers.
Asked by Jonathan W - Mon Mar 30 13:07:18 2009 - Programming & Design - 1 Answers - Comments
A. I've never had that specific thing happen. IMHO, if you know ANT then it might be possible. Net Beans constructs the ANT from all of your set-up getting to the source window to code. But, there's been many a time when I close a project, I want a fresh attack. I start a new Project, add a new package and start fresh with new source files. I use a text editor to open the My Spiffy Code.java, copy-n-paste to the various files in the new Project. Less than 30 minutes with reevaluation thinking going on.
Answered by deonejuan - Mon Mar 30 13:23:29 2009
From Yahoo Answer Search: 'open directory project'
Fri Nov 18 08:03:08 2011
[Hide]▼
Open Directory Project - Wikipedia, the free encyclopedia
203 x 300px
[source page]
Open Directory Project
203 x 300px
[source page]
Open Directory Project
[Hide]▲