You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'WoogieNoogie'

We found 3,277 matches.


<< < > >>

Viewing 1-30 of 3,277 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110

1.

None

Topic: Women

Posted: 05/12/09 04:36 PM

Forum: Programming

At 5/12/09 09:43 AM, CronoMan wrote: I've experienced some core dumps though

Ewwwwwwwwwwwwwwwwwwwwwwwwww.


2.

None

Topic: $_files['file'][' type']=='zip';

Posted: 05/07/09 09:27 PM

Forum: Programming

That's not the only filetype zip can be.


3.

None

Topic: The Angry Face, How Do They Do It?

Posted: 05/06/09 04:17 AM

Forum: Programming

I never knew HOW that actually happened. I just noticed it randomly once. Didn't know it had to do with cursor over the face.


4.

None

Topic: Women

Posted: 05/06/09 04:16 AM

Forum: Programming

The programming language of the Woman operating system is just like any other.

You think you understand it, and you can code it really well...then EVERYTHING STARTS FUCKING UP FOR APPARENT REASON :P


5.

None

Topic: PHP email script

Posted: 05/05/09 12:58 AM

Forum: Programming

No. Not at all.


6.

None

Topic: Php: Loops

Posted: 05/04/09 01:33 AM

Forum: Programming

Okay, I don't know if I'm just having trouble, but I REALLY can't understand what you need. Please be specific with exactly what you're doing. That would help immensely.

Honestly, if what I think you need is what you actually need...just use the query to filter the results. Like the last guy said.


7.

None

Topic: php: gd

Posted: 05/04/09 01:22 AM

Forum: Programming

Does your host have the GD Library installed?


8.

None

Topic: $_files['file'][' type']=='zip';

Posted: 05/03/09 03:07 PM

Forum: Programming

At 5/3/09 02:27 AM, VigilanteNighthawk wrote: While I could be wrong about this, I believe that script execution begins after all user input has been fully received by the server. Therefore, your upload will be complete before the first line of code ever executes.

Yeah, that's what DFox was saying as well. I'd just be wary about trying to open the file, honestly.


9.

None

Topic: $_files['file'][' type']=='zip';

Posted: 05/02/09 10:04 PM

Forum: Programming

At 5/2/09 02:23 PM, DFox wrote: Actually, that was the most useful post so far. If you just use the open method of that class, it'll tell you if it's a zip file for sure...

It would be pretty difficult to determine if it was a zip file before it was uploaded with that method.


10.

None

Topic: Speed test of code

Posted: 05/02/09 10:00 PM

Forum: Programming

I'm pretty sure there's some timer function, but I can't find it. So, quick fix...

$var1 = microtime();
while (condition) {
loop;
}
$var2 = microtime();
$timeItTook = $var2 - $var1;

Yay pseudocode.


11.

None

Topic: $_files['file'][' type']=='zip';

Posted: 05/02/09 05:03 AM

Forum: Programming

The ZIP mimetype can be any of these.

application/zip
application/x-zip
application/x-zip-compressed
application/octet-stream
application/x-compress
application/x-compressed
multipart/x-zip

Just make a check against it, like...

$filetype = "application/zip";
if {
$filetype !== $_FILES['data']['type'];
die()
}
At 5/2/09 02:50 AM, Nano256 wrote: http://us3.php.net/zip

Wow, what a useless post.


12.

None

Topic: Naming uploaded files?

Posted: 05/01/09 10:41 PM

Forum: Programming

$_FILES['data']['name'] = putstuffhere

13.

None

Topic: Programming Regs Lounge

Posted: 04/29/09 03:54 AM

Forum: Programming

At 4/29/09 02:30 AM, Zendra wrote: That's nice. And what kind of business you want to get started? Programming Crew? :P

Hahaha, I'd almost forgotten about that...too bad it never went anywhere.

I'm looking into Custom PC's, Web Programming, Home Networking...the like.


14.

None

Topic: Programming Regs Lounge

Posted: 04/29/09 01:50 AM

Forum: Programming

I'm working at Starbucks, and taking some Emergency Medical Technician classes.

I'm also starting a business :O

Alot of stuff on my plate too.


15.

None

Topic: Programming Regs Lounge

Posted: 04/29/09 12:43 AM

Forum: Programming

I drop in from time to time.

What's happening Zendra?


16.

None

Topic: Displaying posts

Posted: 04/27/09 03:20 PM

Forum: Programming

Like he said...this is pretty much the first thing you learn if you've looked up MySQL and PHP.


17.

None

Topic: mysql/php pagination help?

Posted: 04/26/09 01:45 AM

Forum: Programming

You're doing it backwards here.

// to check the total number of records
$query         = mysql_query(" SELECT * FROM links ") or die (mysql_error());
$total_rows     = mysql_num_rows($query);

while($linelink2=mysql_fetch_array($resultlink2)) {
echo "<table align=center width=550>"; echo "<tr>
		<td>$linelink2[linktitle]</td>
		<td><a class=\"link1\" href=\"<?=\$linelink2[linkurl]?>\" target=\"_blank\"><?=\$linelink2[linkurl]?></a></td>
	</tr> ";
    echo "</table>";
}


//select the record with limitation   SELECT * FROM `links` WHERE linkid ORDER BY RAND() LIMIT 15
$query         = mysql_query(" SELECT * FROM `links` limit $eu, $limit") or die (mysql_error());
echo "<table align=center width=550>";

You're putting out all the HTML before you're limiting anything.


18.

None

Topic: mysql/php pagination help?

Posted: 04/25/09 12:33 AM

Forum: Programming

Your SQL query must be capitalized.

$query         = mysql_query(" SELECT * FROM `links` limit $eu, $limit") or die (mysql_error());

That line...needs fixed with the spacing anyway...but needs to be this.

$query  = mysql_query(" SELECT * FROM `links` LIMIT $eu, $limit") or die (mysql_error());

19.

Expressionless

Topic: 130 year old!

Posted: 04/10/09 04:17 AM

Forum: General

What's so amazing about an old person?


20.

Resigned

Topic: Acoustic or Electric?

Posted: 04/10/09 04:08 AM

Forum: General

You can't honestly think you can say one is better than the other. They're practically completely different instruments.


21.

Misunderstood

Topic: Best, Morning, Ever..

Posted: 04/10/09 04:02 AM

Forum: General

That's your best morning? I kinda feel sorry for you...


22.

None

Topic: Video card problwms

Posted: 03/30/09 05:35 PM

Forum: General

Basically...what he said. Except don't buy the cheapest card.

Everything with your computer can be badass, but if it doesn't have a good video card, you're boned. Get one to put into your pci express and stop using the integrated.


23.

None

Topic: Family Guy + Religion

Posted: 03/30/09 05:32 PM

Forum: General

For one, how about you stop grouping together every Christian as the same person. Not every single Christian feels the same way as everyone else. I hate that there are "spokespeople" for Christianity, because most of the time I think they're full of shit.

Secondly, those of you in this thread who are mad at family guy for prodding out atheists and making them out to be evil...you do realize that this was a joke, right? And that's not even the best part...it was a joke aimed at the people who actually do that in real life. I'm a Christian, but I don't condemn an atheist for not believing in a god. Hell, I don't condemn other religions either. I liked the message that episode had - "It's not evil being atheist."

Last, I hate preachy people as much as the next guy. I hate it when an atheist tells me that I'm an idiot for believing that God exists. I hate it when I'm told that there is no scientific proof of a deity. However, I also hate it when there are those preachy Christians who think they know everything and that it's their job to save the world.


24.

None

Topic: Xbox 720 and playstation 4

Posted: 03/30/09 05:00 PM

Forum: General

For all you "360 is a weird number" people...

For one, as mentioned, it's supposed to be "revolutionary". For two, they wanted a name that would compare with the PS3. If they would have released the Xbox 2, people would be more drawn to the PS3.


25.

None

Topic: Think of a Band Name

Posted: 03/30/09 04:52 PM

Forum: General

I was sitting in my college class the other day and thought, "Wow, this would be a great name for a band."

Principles of Marketing.


26.

None

Topic: Video card problwms

Posted: 03/30/09 04:51 PM

Forum: General

I'm guessing you have a laptop. There's nothing you can do.


27.

None

Topic: need a code plz help

Posted: 03/29/09 12:57 AM

Forum: Programming

Flash forum.


28.

None

Topic: Running Scripts from another Place

Posted: 03/27/09 04:03 AM

Forum: Programming

Let me see if I've got this...

You have site a. Site a can run PHP. You have site b. Site b can't.

You want to run something on site a, then be able to let site b know it's working through Javascript.

IF that's what you're looking for...that is IF, I'm still a bit confused...you could use site a to create/edit a Javascript file through PHP, then have site b run that Javascript file.


29.

None

Topic: Is A Unix-based Environ. Confusing?

Posted: 03/22/09 07:08 PM

Forum: Programming

Awesome. Thanks James, you're a life-saver.


30.

None

Topic: Is A Unix-based Environ. Confusing?

Posted: 03/22/09 12:14 AM

Forum: Programming

Alright, I know HTML, CSS, PHP, Javascript...all the web stuff. I pick up stuff easily.

I have a job opportunity if I'm able to work in a UNIX based environment. Would it be difficult for me? It doesn't seem like much coding would be involved.


All times are Eastern Daylight Time (GMT -4) | Current Time: 09:49 AM

<< < > >>

Viewing 1-30 of 3,277 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110