iccaros

Linux Experts
  • Content Count

    1292
  • Joined

  • Last visited

Everything posted by iccaros

  1. iccaros

    Ajaxwrite

    Opera Watch: Are there any plans to support Mozilla's XUL API? If not, why? Opera: No current plans to support XUL. Opera for desktop is built on top of our own cross-platform "Quick" GUI tool kit , where Mozilla/Firefox uses the
  2. is this a multi processor box?? if not it should fail, remeber that kernel level process either run (sucess) or don't (fail) and not runnning is not alwyas bad, Cento OS, Like the Red Hat it's made on have generic kernels that build everything in.. so you may have a lot of things you never need.
  3. iccaros

    I Did It!

    wow, that is a big step, my distro is a little rough as I have had zero time in the last 8 months to do anything with it.. you need to create or have a blank partition. robroy has ran through the install before and can give some pointers.. the partitions that are created show up as disk.. if you have windows on the drive I would suggest you make sure you know which is your windows partition... I need to write up the install, but no one has asked questions about it.. I will be working on this distro this summer when I finish school.. and it should include a GUI installer.. Thanks for giving i
  4. (first semester java class) me too, this is my second to last semester before I graduate. I left my programing classes till last
  5. does jbuilder or jstudio have a gui builder??
  6. Thanks for the input.. I updated eclipse to 3.11 and now I have to option to default to 1.5 Thanks.. this has been driving me nuts for two days now..
  7. I just compiled with command line javac no problem.. but eclipse gives this error.. it is java 1.5 so it must be a missconfig of eclipse will try agian.. thanks..
  8. ok I have a simple java program but I don't understand why I get this error on printf here is the center of my program int output; //take user input System.out.print("Enter the first number: "); userInput1 = input.nextInt(); System.out.print("Enter the second number: "); userInput2 = input.nextInt(); System.out.print("Enter The Third number: "); userInput3 = input.nextInt(); output = sumNumbers(userInput1,userInput2,userInput3); System.out.printf("the Sum of your numbers = %d\n",output); the error is The method printf(String, Object[]) in the
  9. thanks for following up, so others may find the answer.. note to all others ... this is a great example of what to do...
  10. hmm stage 1 and two are missing from the documents, but they are still on the server http://gentoo.osuosl.org/releases/x86/current/stages/ I'll have to look into this..
  11. is this a work computer?? we mount all shared and home folders so they are reachable from Unix,Windows (any version) and Mac (unix). This way we only back up one point as the main OS can be restored in 30 min from an image. you can use a live cd to access the share drives and data until the main comes up. also with the VPN as long as you have internet access you have access to your work folders.
  12. or fdisk, format.. When Microsoft says convert it means to keep the data and make it different. but formatting NTFS does not effect anything on the drive that would make it have to be replaced to be changed. You will just loose all the information in the change. The problem you may be thinking of is with XP's registry and the way it points to the disk.. you would need to use the disk utility's to unpartition the space then fdisk it.. then format it again.. for security.. fat32 is a simple file allocation table with a 32 bit name space.. ntfs (new technology file system) is a journalized file
  13. Red Hat, Gives both code, bug fixes and addition to the OpenSSH project., the problem is 1. the BSD license says you don't have to . 2. Theo pisses everyone off.. see DARPA and OpenBSD's way to screw up funding http://www.computerworld.com/securitytopic...1,80473,00.html while he has the right to say what you think, if you what money and support you have to play the game or stop bitiching when you get none. 3. Red Hat Does not Sell OpenSSH, its one of over hundreds of packages in the software. you Don't see Apache crying.. the Python project or Linus. its part of the license that programers
  14. program.cs using System; using System.Collections.Generic; using System.Windows.Forms; namespace thoughttester { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new testing()); } } } Form1.Designer.cs namespace thoughttester { partial class testing { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IConta
  15. you need to explain the game more.. does it score when the "ball" intersects with something.. you should have a varable (type int) for holding the score.. in your check for the action that would produce a score add to that varable something like x++; then update the board with this variabe core4.Text = Convert.ToString(x);
  16. Emerge KDE or GNOME. The differentness will start to sink in ten or twelve hours into the build. Especially if the build fails. Gotta love the twelve hour builds, maybe it's just my perception of time, but ports seems to build things faster. Like KDE, with the exact same system gentoo took about twelve hours to build, FreeBSD was about 4-6 hours. It took me 2 hours to build firefox on gentoo, that was annoying. Apt-get would be more like pkg_add or even pkgsrc. hmm. Thats funny, I can build a gentoo system with KDE in about 6 hours from the ground up. I have found that what you put in mak
  17. Emerge KDE or GNOME. The differentness will start to sink in ten or twelve hours into the build. Especially if the build fails. Gotta love the twelve hour builds, maybe it's just my perception of time, but ports seems to build things faster. Like KDE, with the exact same system gentoo took about twelve hours to build, FreeBSD was about 4-6 hours. It took me 2 hours to build firefox on gentoo, that was annoying. Apt-get would be more like pkg_add or even pkgsrc. hmm. Thats funny, I can build a gentoo system with KDE in about 6 hours from the ground up. I have found that what you put in mak
  18. not sure if I count but here are my two cents, all pograming languages in my openoin as just as hard as others to learn and OOP's programing is even harder (Object Orentated Programing) as compaired to strait top down languages like basic. its all amatter of learning keywords and formating. Java, python, ruby are good at getting you to make useable programs in no time.. C/C++ will have you making lots of useless programs just to learn consepts. but with that said, I have meet lots of java, python programers who can not create there own classes and objects and if its not built in can't make a p
  19. iccaros

    Help C++

    never mind have my answer.. needed to have a pointer to the data... sorry if this is cryptic and if anyone is intrested I will send a coy after next week, but this is for homework, hence I just wanted logic as I need to find th eanswers on my own in code..
  20. iccaros

    Help C++

    ok I got the contrutor to call List <T> tempData = listObject1; but now I must cantonate two objects.. ?? any one know the logic.. not code just logic.. right now I am tring to call a new object that uses a copy constutor to make a copy of object two.. then copy to the end of the linked list the contents of object two Thanks
  21. iccaros

    Help C++

    ok I have two constutors ~List(); // destructor List( const List< NODETYPE > & ); // copy constructor now I need to create a funtion that passes object of type List to the second constutor here is my failed try (If I make this a funtion like void CopyList ( const List< NODETYPE > & ); then I can make it work.. but as a construtor I am lost..) template<class T> void concatenate ( List <T> &listObject1, List <T> &listObject2) { listObject1.List(const List<string> & listObject2); } if I change it to its own
  22. your MBR should be the first slice of the first disk, but you may have one partiton and another with slices.. in this case its the first drive with the first partition..
  23. to install Solaris grub to the MBR installgrub -m <stage1> <stage2> /dev/rdsk/<root slice>. from SUN GRUB is normally installed in the Solaris slice. Would there be circumstances where it should be installed in the Master Boot Record (MBR) instead? A: If you install GRUB into the Master Boot Record (installgrub -m <stage1> <stage2> /dev/rdsk/<slice>) the system will start with GRUB, no matter if the Solaris partition is activated or not. But if you install a second OS that overwrites the MBR there is no chance to recover the Solaris version of GRUB except by
  24. the picture is put in to a picture box. this control is accessed by the image control of image box so say you named your imagebox pictureBox1 then pictureBox1.image=(image)<place&imagename>; your text box to array is like this private void button1_Click(object sender, EventArgs e) { double temp = 0.0; double temp2 = 0.0; double temp3 = 0.0; temp = Convert.ToDouble(textBox1.Lines[0]); temp2 = Convert.ToDouble(textBox1.Lines[1]); temp3 = temp + temp2; textBox2.Text = Convert.ToString(temp3); } this is the basics, with out doing your homework for you..
  25. ok got it working.. maybe some one has ideal on doing this better using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Calc { public partial class Calc : Form { public Calc() { InitializeComponent(); } private int funtionKey = 0;// int funtion key to allow case of function choosen private bool decmialOn = false;//to disally multiple decmial points on a line private double calcStorage = 0.0; private int funtionDisplayCheck = 0; private double memorySp