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,284 matches.


<< < > >>

Viewing 61-90 of 3,284 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110

61.

None

Topic: Php Forum Help

Posted: 03/05/09 04:47 AM

Forum: Programming

I'd suggest something similar to this. It's what I use, and it hasn't failed me yet.

Have one for topics, posts, and users.

Topics: You'll need a topic ID, a title, and for sorting & entire topic deletion purposes I use a first post ID and a last post ID. Simply...I sort the topics by last post ID, and in my deletion page I check if the post about to be deleted is the first post, then that would delete the topic AND any posts with that topic ID. Also, user ID can be used here...or you can just grab it from the posts.

Posts: You'll need post ID, user ID, topic ID, and of course the body.

Users: You'll need user ID, username, and other info. Like passwords and shit.

That's a pretty straightforward way of setting it up, and it's pretty foolproof and secure. The way you put up is a bit crazy, but similar in some ways. With this way, it's easy to set up stuff like number of replies, organization, deletion, and whatnot.


62.

None

Topic: Programming Regs Lounge

Posted: 01/20/09 11:59 PM

Forum: Programming

Is that the one with Russel Crowe and Denzel Washington?


63.

None

Topic: Barack Obama = average president

Posted: 01/20/09 05:10 PM

Forum: Politics

At 1/20/09 08:05 AM, JoS wrote: It will be interesting to see people's reaction when he has to drop bombs on someone.

No, no, it will be OKAY when he does it.


64.

None

Topic: Programming Regs Lounge

Posted: 01/20/09 02:25 PM

Forum: Programming

I just watched Max Payne yesterday. It's not a bad movie.

At 1/18/09 09:51 AM, yhar wrote: Just finished watching American History X - manly tears.

That movie is so good...


65.

None

Topic: I need help!

Posted: 01/17/09 12:49 AM

Forum: Programming

I lol'ed Glaiel.


66.

None

Topic: I need help!

Posted: 01/16/09 02:51 PM

Forum: Programming

At 1/16/09 01:49 PM, Bapabooiee wrote: Wait, what? Does it look like this for anyone else?

That...was the joke...


67.

None

Topic: mod_rewrite

Posted: 01/15/09 05:29 PM

Forum: Programming

RewriteRule /([a-z]+/mypage.php?secondVar=([0-9]+) /mypage.php?firstVar=$1&secondVar=$2

Not tested, and I'm a bit rusty, but that should work at first glance.


68.

None

Topic: I Need Help With Ng Api

Posted: 01/15/09 05:22 PM

Forum: Programming

Flash Forum.


69.

None

Topic: Programming Regs Lounge

Posted: 01/08/09 07:21 AM

Forum: Programming

At 1/7/09 10:49 PM, DFox wrote: I think they are doing it by matching the charges against other reports of fraud for commonly used fraud purchases for small amounts.

Or they're just stalking you. Either way could work.


70.

None

Topic: Programming Regs Lounge

Posted: 01/04/09 02:53 PM

Forum: Programming

At 1/4/09 01:05 PM, smulse wrote: Is it worth downloading? All the clips I've seen of it I think are brilliant, but I've never seen an episode.

More than worth it. Absolutely amazing.


71.

None

Topic: Programming Contest!

Posted: 01/03/09 05:46 AM

Forum: Programming

I'd like some web programming contests to be included as well.


72.

None

Topic: JS reload img after time OR webcam

Posted: 01/02/09 01:08 AM

Forum: Programming

Wooo! I'm back, bitches!

Figured it out. There are quotes in the setInterval function. It's telling the Javascript "update", not to use the update function. Then I ran into the problem that it wasn't updating after the first one...figured out without even trying anything it was because I was setting one random number as the variable, not running it multiple times.

I'm here to program, ladies and gentlemen.


73.

None

Topic: Programming Regs Lounge

Posted: 01/01/09 05:03 AM

Forum: Programming

My god, that concert was epic. Reverend Peyton's Big Damn Band was one of the opening acts...I'd suggest everyone look them up. They rock.

Oh, and Flogging Molly. They rock too.


74.

None

Topic: JS reload img after time OR webcam

Posted: 12/30/08 10:27 PM

Forum: Programming

Gah, not updating it...still sticking to the same image. Can't think of why...I've looked over the code and all the back-end stuff. Using the new code and everything...


75.

None

Topic: JS reload img after time OR webcam

Posted: 12/30/08 05:08 PM

Forum: Programming

Aight Bekko, I tried this and it's not working out. I know it's probably something really simple, but I can't figure it out.

<img src="webcam/webcam.jpg" name="webcam">
<script>
var randomnumber=Math.floor(Math.random()*1001)
function update(name){
document.images[name].src="webcam/webcam.jpg?="randomnumber;
}
setInterval("update(webcam)", "15000");
</script>

Thanks for the link, James. I've never used a framework before, so maybe I should get started on that. Seems pretty thorough, but I'll have to learn how to use it before I install it.


76.

None

Topic: JS reload img after time OR webcam

Posted: 12/30/08 04:44 AM

Forum: Programming

Minor bump.


77.

None

Topic: JS reload img after time OR webcam

Posted: 12/29/08 06:21 AM

Forum: Programming

Cool, thanks dawg. I also forgot to post the code, so....

<img src="webcam/webcam.jpg" name="webcam">
<script>
function update(name){
document.images[name].src=document.images[name].src;
}
setInterval("update(webcam)", "15000");
</script>

I know it's probably pretty bad. Like I said...been a while.


78.

Blushing

Topic: JS reload img after time OR webcam

Posted: 12/29/08 06:09 AM

Forum: Programming

Been searching, and I can't seem to find anything of use around this area. Can anyone help me with...

OBJECT 1:
A Javascript that reloads an image after a certain amount of seconds/milliseconds. I thought I got a pretty good code, but I'm so freaking rusty on all sorts of web development. Here's what I got...trash it, fix it, tell me what's wrong...whatever works. I just need a bit of help.

Basically, I have a program that loads my webcam and snaps a shot every x seconds. It uploads that file through FTP instantly and replaces the last file. At the moment...it's the best thing I have, as I don't care about archives right now. Also seems to be the best way to keep the site functional whilst I build it.

OBJECT 2:
Can anyone tell me a good free webcam program for Vista? The best I found is Fwink...and that's okay, but I'd like something a little better. My searches just aren't finding the best tools.


79.

None

Topic: Ng Programming Forum Awards 2008

Posted: 12/29/08 06:04 AM

Forum: Programming

Okay, PM's sent back to everyone who messaged me their contact info for...uh...last year's awards.

No, really, I'm gonna send stuff.


80.

None

Topic: PHP: A rant in a lesson in a rant

Posted: 12/29/08 06:00 AM

Forum: Programming

Following up on DFox...does anyone else HATE it when people do...

echo "$variable";

?


81.

None

Topic: Ng Programming Forum Awards 2008

Posted: 12/28/08 01:55 PM

Forum: Programming

Shit, I've got awards to send out :O


82.

None

Topic: Programming Regs Lounge

Posted: 12/27/08 08:54 PM

Forum: Programming

Let's see...total money ended up to be just under 500. Got a nice new laptop earlier this month as an early present. Flight of the Conchords season 1, some really awesome shirts, Toffee Nut and Carmel syrup for my espresso machine, The Dark Knight, Alien/Predator double feature (not Alien vs. Predator, mind you), and two nice wallets. Keeping one in storage for when the other gives out.

I think that's it...


83.

None

Topic: Php And Mysql Tuts?

Posted: 12/27/08 08:42 PM

Forum: Programming

PHP: Main. In sig.


84.

None

Topic: need help with website

Posted: 12/23/08 11:45 PM

Forum: Programming

Hey, if you're wanting to learn how to do it, having a pre-installed forum system like that is the perfect way to do it. i used phpBB and installed a bunch of mods. As I installed the mods, I learned how the syntax worked and what it all was saying. A few more searches online of how to do specifics finished me up.


85.

None

Topic: Programming Regs Lounge

Posted: 12/23/08 11:43 PM

Forum: Programming

I drink like I smoke. Only in social situations. Drinking alone adds the psychological issues...same with smoking. If it's social, it's a different kind of psychological standpoint.


86.

None

Topic: Anyone play WoW?

Posted: 12/23/08 11:40 PM

Forum: Programming

At 12/23/08 09:04 PM, nns357 wrote: Whoever you are, I think you need to leave.

I'm tending to agree...unless you're not an alt, you should know that Neill has earned the RIGHT to be annoying.

I find it odd that such a big company with probably the biggest online game can't maintain properly. I really think they need to get on that, to me it looks kinda unprofessional.


87.

None

Topic: Programming Regs Lounge

Posted: 12/23/08 06:19 AM

Forum: Programming

At 12/23/08 06:14 AM, Jessii wrote: That has got to be one of the worst songs I've ever heard! If one of us were to make a song, we would require something much better than that.

I'm glad someone thought the same thing as me...if I still had my music program, I'd totally do a good one.


88.

None

Topic: How much is MS paying them?

Posted: 12/22/08 05:16 AM

Forum: Programming

That just reminded me of these videos.

http://www.youtube.com/watch?v=BQECwm3er Es&feature=channel


89.

None

Topic: How much is MS paying them?

Posted: 12/21/08 04:21 AM

Forum: Programming

Let's be honest and just say that ALL ad campaigns are crap.

Except the ad campaigns for the series premier of Heroes.


90.

None

Topic: Programming Regs Lounge

Posted: 12/20/08 08:59 PM

Forum: Programming

I'm going to a Flogging Molly concert for New Year's Eve. Boo yah.


All times are Eastern Standard Time (GMT -5) | Current Time: 09:15 PM

<< < > >>

Viewing 61-90 of 3,284 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110