Showing results 1 to 27 of 27
Search took 0.01 seconds; generated 1 minute(s) ago.
Posts Made By: Gnome_101
Forum: Windows NT / 2000 / XP / 2003 Jul 1st, 2005
Replies: 4
Views: 4,327
Posted By Gnome_101
Re: Help with running background processes

Just trying to run ideas off you. Glad something worked out :)
Forum: PHP Jun 29th, 2005
Replies: 5
Views: 1,917
Posted By Gnome_101
Re: Error comparing strings from arrays

You were right.

The pipes show a trailing space on the side of the user selects.

I used a text file to upload those values, and after checking them, found a space after each entry.

:o Thanks for...
Forum: PHP Jun 29th, 2005
Replies: 5
Views: 1,917
Posted By Gnome_101
Re: Error comparing strings from arrays

Cool! Thanks for the help, I'll try those out.
Forum: PHP Jun 29th, 2005
Replies: 5
Views: 1,917
Posted By Gnome_101
Re: Error comparing strings from arrays

all the comments in orange are debugging methods (echo()'s) which do what you suggest to make sure they are outputing the correct material.

I coded the entire page, and worked out all the kinks,...
Forum: Windows NT / 2000 / XP / 2003 Jun 29th, 2005
Replies: 4
Views: 4,327
Posted By Gnome_101
Re: Help with running background processes

Are the OBE*.exe programs running when you play counterstrike?

Have you done a search for OBE*.exe from the search to see where the exe is being stored?

Just some ideas....
Forum: Networking Hardware Configuration Jun 29th, 2005
Replies: 7
Views: 3,532
Posted By Gnome_101
Re: Wireless "B" networks not working anymore

ok, this is going to sound really dumb, and slap me it's toooooo bad, but try this.

Shut down all the computers (even the friends). Unplug the modem AND the router for about 1 min. Then plug in...
Forum: PHP Jun 29th, 2005
Replies: 5
Views: 1,917
Posted By Gnome_101
Error comparing strings from arrays

I have the following code, which tries to see if someone selected a drop down menu item that is already part of the database. If it is, then the error message should show up.

$size_of_user_array =...
Forum: Web Development Job Offers Jun 4th, 2005
Replies: 2
Views: 1,802
Posted By Gnome_101
Re: Seeking Experienced Web Designer

looks like you've upgraded! :)
Forum: Ad Space for Sale Jun 4th, 2005
Replies: 15
Views: 5,153
Posted By Gnome_101
Re: Pr7, Pr6, Pr5, Pr4, Pr3 Site-Wide Links for sale

How many pages are we talking about. <10 is ok, but as I understand it, site wide links are not taken well by search engines.
Forum: PHP Jun 4th, 2005
Replies: 18
Views: 3,378
Posted By Gnome_101
Re: Hello Dani Web members

you could also open a localhost on your machine, as long as you have internet connection.

Try downloading Apache servers with the self installing php!
It'll make the hosting problem dissapear!

:)
Forum: PHP Jun 4th, 2005
Replies: 4
Views: 26,055
Posted By Gnome_101
Re: Import/export tab delimited file

Well, when you get the query, and the results, could you not then run through each row with a fetch row and then run it into the tab file. I not an expert, but try getting the data first, without...
Forum: Search Engine Optimization Mar 28th, 2005
Replies: 6
Views: 4,493
Posted By Gnome_101
Re: How to price SEO work?

I think you need a package deal, but also you need to have a rate per month based on the need of the customer. Do you do SEO?
Forum: Legacy and Other Languages Mar 28th, 2005
Replies: 1
Views: 3,238
Posted By Gnome_101
Re: master database with php mysql

Do you want to store the location of a pic in the DB? That isn't much more than adding another field to enter into the DB. then using the resultant for a drop down menu.

I'm not sure I...
Forum: C++ Mar 19th, 2005
Replies: 7
Views: 13,846
Posted By Gnome_101
Re: Hamming codes encoder/decoder in C or C++

the Distance to apply the hamming code...is this between check/redundacy bits? Or is this the amount of bits to check?

I just have theory from a class I'm in now...and would actually like to see...
Forum: C++ Mar 15th, 2005
Replies: 7
Views: 13,846
Posted By Gnome_101
Re: Hamming codes encoder/decoder in C or C++

Ok. hammering code, is a way of encoding a string of data, to ensure that the data will get from point a to point b saftely. It's an error prevention code, so that interfernce such as single bit...
Forum: C++ Mar 15th, 2005
Replies: 1
Views: 1,544
Posted By Gnome_101
Re: Sorting

What is the inital value of i?

If you have it set to nothing, try setting it to a value mabye 0(I think that'll work), then try it.
Forum: C++ Mar 15th, 2005
Replies: 9
Views: 10,276
Posted By Gnome_101
Re: C++ Reorder random numbers

That is a good response, and as such, an understandble way of looking at a bad algo for getting the job done.

Sadly though, it is still taught, and without your explination as to why not to...
Forum: C++ Mar 1st, 2005
Replies: 9
Views: 10,276
Posted By Gnome_101
Re: C++ Reorder random numbers

Why? Learning a bubble sort is a good practice for learning C with arrays, and the such.

:rolleyes:
Forum: MySQL Feb 27th, 2005
Replies: 1
Views: 2,108
Posted By Gnome_101
Re: MySQL Functions W/ Offline Languages

I know c++ has header files that allow for connectivity, and Java is a spin off of c++ so I would imagine that it would have an easy time conecting as well.

I really depends on what kind of program...
Forum: Assembly Feb 26th, 2005
Replies: 1
Views: 3,968
Posted By Gnome_101
Re: Assembly Programming Question

Are you using Mips, or intel?
Forum: Assembly Feb 26th, 2005
Replies: 1
Views: 3,189
Posted By Gnome_101
Re: Looking for a tutor for MIPS programming

What are you looking for?

Email me. gnome_101@hotmail.com
Forum: C Feb 26th, 2005
Replies: 2
Views: 2,770
Posted By Gnome_101
Re: C language problem

Do you have any code to show me that u've tried?

a two dimensional array is int blah [][];

there's a start for you!
Forum: C++ Feb 26th, 2005
Replies: 9
Views: 10,276
Posted By Gnome_101
Re: C++ Reorder random numbers

You need a bubble sort algo.

You need to compare the first number to the second, and swap accordingly.

or...what you could do, which would be a lot easier

assign a temp array of the same...
Forum: C++ Feb 26th, 2005
Replies: 1
Views: 2,658
Posted By Gnome_101
Re: A question about file streaming

I've never used the print command to do what you are trying to do. I use cout>>temp; which could work.

Also, to print to the file, you can open a stream, and use it to print to a file.


...
Forum: Computer Science and Software Design Feb 26th, 2005
Replies: 0
Views: 2,905
Posted By Gnome_101
Mips help with loading and storing bytes in memory

Hey all,

I've got the following program which needs to print the original string, then the edited one. ( we are to replace the lower case b's with B's)

.data
prompt: .asciiz "baseball"
...
Forum: C++ Apr 14th, 2004
Replies: 2
Views: 4,454
Posted By Gnome_101
Re: C++ Error : opening file a second time for a read

thank you for the link! It helped a lot! :p
Forum: C++ Apr 9th, 2004
Replies: 2
Views: 4,454
Posted By Gnome_101
C++ Error : opening file a second time for a read

I have the code(below) but I can't get the program to close data2.txt and opne it again. Is there a way to reset the starting read position? I want it read through the file for as many times as I...
Showing results 1 to 27 of 27

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 5:02 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC