Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 500
Search took 0.15 seconds.
Search: Posts Made By: Wizard1988
Forum: Coder's Corner Lounge Sep 27th, 2008, 11:40 AM
Replies: 1
Views: 75
Posted By Wizard1988
Re: Finding sounds/music

You might want to check out the forums at gamedev.net I am sure you will find someone who might be able to help you there.

Good luck
Forum: Coder's Corner Lounge Aug 25th, 2008, 7:31 PM
Replies: 10
Views: 410
Posted By Wizard1988
Re: Open Pandora Project.

Hmm, looks cool. I might be in for one too :)
Forum: Coder's Corner Lounge Aug 22nd, 2008, 11:53 PM
Replies: 1
Views: 166
Posted By Wizard1988
Re: Best place to get software (pricewise)

If you attend a University/College you can get free software through Dreamspark (https://downloads.channel8.msdn.com/)
Forum: PHP Aug 4th, 2008, 9:11 AM
Replies: 6
Views: 262
Posted By Wizard1988
Re: Detect spam posts on comments page

You could most likely stop the bots with an extra hidden field in the form. When the form gets submitted check if the hidden field contains anything, if it does then it is most likely a bot. You...
Forum: HTML / XHTML / CSS Jul 23rd, 2008, 8:59 PM
Replies: 3
Views: 315
Posted By Wizard1988
Re: Shows differently in IE6 and IE7

You might want to look into CSS Frameworks. I was recently messing around with Blueprint CSS (http://code.google.com/p/blueprintcss/) and it worked pretty good.
Forum: Coder's Corner Lounge Jul 23rd, 2008, 8:54 PM
Replies: 1
Views: 355
Posted By Wizard1988
Exclamation Get a FREE domain name

Godaddy.com is having some sort of a promotion and they are offering free Domain Name registration (1 year). I was able to register a domain and I thought some of you guys and gals might be...
Forum: Coder's Corner Lounge Jul 13th, 2008, 9:06 PM
Replies: 8
Views: 311
Posted By Wizard1988
Re: About Wireless LAN

Look into DD-WRT firmware, it has hotspot functionality.
Forum: C++ Jul 9th, 2008, 3:40 PM
Replies: 10
Views: 370
Posted By Wizard1988
Re: Need College Help/Advice

If you are looking into game/engine development then I don't think you will need to learn COBOL. C,C++ and some scripting languages is where its at.

You might want to check out www.gamedev.net
Forum: PHP Jun 28th, 2008, 8:54 PM
Replies: 6
Views: 299
Posted By Wizard1988
Re: IP address

This might help -> GOOGLE (http://www.google.com/search?hl=en&q=prevent+hotlinking&btnG=Search)
Forum: C++ Jun 24th, 2008, 11:50 AM
Replies: 6
Views: 289
Posted By Wizard1988
Re: binding 2 keys

Then it won't be very easy, LOI
Forum: HTML / XHTML / CSS Jun 20th, 2008, 10:17 PM
Replies: 1
Views: 269
Posted By Wizard1988
Re: Relative positioning in CSS

I'm not entirely sure what you need but hopefully this helps: CSS positioning (http://css-tricks.com/absolute-positioning-inside-relative-positioning/)
Forum: Java Jun 18th, 2008, 2:51 PM
Replies: 3
Views: 233
Posted By Wizard1988
Re: Help with Web Server

I don't really understand what you are asking for...
Forum: Java Jun 18th, 2008, 1:33 PM
Replies: 3
Views: 233
Posted By Wizard1988
Re: Help with Web Server

Did you take a look at http://www.w3.org/Protocols/HTTP/1.0/spec.html ??
Forum: JavaScript and Client-Side Browser Scripting May 19th, 2008, 9:10 PM
Replies: 5
Views: 351
Posted By Wizard1988
Re: Passing a variable to a pop up window

There is a way to get around that. Change "url +"?url=" + document.location" to "url +"&url=" + document.location" Normally GET variables are separated by '&' symbols (notice the URL when you are...
Forum: JavaScript and Client-Side Browser Scripting May 19th, 2008, 7:09 AM
Replies: 5
Views: 351
Posted By Wizard1988
Re: Passing a variable to a pop up window

Couldn't you just pass it as a get variable?


<a href="javascript:OSUGGEST('printfriendly.php?id=123')";>Print</a>
Forum: Coder's Corner Lounge May 17th, 2008, 11:17 AM
Replies: 2
Views: 235
Posted By Wizard1988
Re: MARIE a sample computer ARCH

From what I understand this architecture is using fixed length instructions, which are 11 bits long. An address field is four bits long, this means it would be possible to address 2^4 different...
Forum: Java May 14th, 2008, 5:34 PM
Replies: 51
Views: 1,671
Posted By Wizard1988
Re: back to online battleship

I'm not understanding why the client(s) would need to send the setup board to the server more than once. After the server received the two boards it should be able to figure out the results if it...
Forum: Coder's Corner Lounge May 14th, 2008, 3:33 PM
Replies: 8
Views: 361
Posted By Wizard1988
Re: Excel As A Programming Language!?

Awesome job Sane. Suprisingly Excel can be used for a bunch of stuff. For example you can have it render 3D objects :)...
Forum: Java May 14th, 2008, 3:29 PM
Replies: 51
Views: 1,671
Posted By Wizard1988
Re: back to online battleship

If you think about it the server shouldn't really be sending the board to anyone. After each player sets up their battleships the program might send the sizes and coordinates of their ships to the...
Forum: Show Off Your Open Source Projects May 13th, 2008, 10:11 AM
Replies: 3
Views: 559
Posted By Wizard1988
Re: RicoRobots!!

I'm not that old... If you like this game you can add features to it :). I did write a command prompt version with undo functionality. If you want a bigger challenge add an option where it would...
Forum: Paid Job Offers May 6th, 2008, 5:56 PM
Replies: 20
Views: 1,321
Posted By Wizard1988
Re: Need a program developed.

"Playing" games that way is pathetic, why don't you just run folding@home overnight and pretend that you are leveling up??
Forum: Paid Job Offers May 6th, 2008, 5:55 PM
Replies: 20
Views: 1,321
Posted By Wizard1988
Forum: Java May 5th, 2008, 1:41 AM
Replies: 1
Views: 156
Posted By Wizard1988
Re: Implicit returns

I am not 100% sure but here is what I think it is:


void foo()
{
doSomething()
}

int bar(int a)
{
Forum: C May 1st, 2008, 3:52 PM
Replies: 7
Views: 319
Posted By Wizard1988
Re: image processing

Yeah, you managed to edit it before i hit post. Here (http://student.kuleuven.be/~m0216922/CG/filtering.html)is an article that is a bit easier to understand
Forum: C May 1st, 2008, 3:39 PM
Replies: 7
Views: 319
Posted By Wizard1988
Re: image processing

First I would suggest that you learn how to use code tags :). Second you might want to take a look at this (http://www.gamedev.net/reference/programming/features/imageproc/page2.asp) or this...
Forum: C Apr 15th, 2008, 7:17 AM
Replies: 5
Views: 316
Posted By Wizard1988
Re: port scan detection

This might help you a bit http://www.cs.wright.edu/~pmateti/Courses/499/Probing/
Forum: C Apr 14th, 2008, 8:34 PM
Replies: 5
Views: 316
Posted By Wizard1988
Re: port scan detection

Well for a port being open, I would say you would somehow check if there is a program/service listening for connection requests. For example if you wanted to get all the active phone numbers in a...
Forum: Java Apr 7th, 2008, 11:19 PM
Replies: 3
Views: 208
Posted By Wizard1988
Re: Complex Number Calculator

It is most likely the way you handle the input. You could check the string for a negative sign and them simply subtract the following number from 0. Its just a simple hack, other members might have...
Forum: Coder's Corner Lounge Apr 3rd, 2008, 9:04 PM
Replies: 3
Views: 218
Posted By Wizard1988
Luck is on our side

I just found this video and I thought you guys should see it.
http://www.youtube.com/watch?v=aQiPCC27VgA
Forum: Coder's Corner Lounge Mar 28th, 2008, 6:26 PM
Replies: 45
Views: 1,592
Posted By Wizard1988
Forum: Coder's Corner Lounge Mar 13th, 2008, 10:08 PM
Replies: 21
Views: 767
Posted By Wizard1988
Re: I failed a programming test

So are you just having problems concentrating on the material?? You might want to read up on memory/cognitive function supplements. They work for some people, but not always.
You might want to read...
Forum: Coder's Corner Lounge Mar 13th, 2008, 9:47 PM
Replies: 21
Views: 767
Posted By Wizard1988
Re: I failed a programming test

Here take a look at this : http://www.jkador.com/letter.htm. :)
Forum: Coder's Corner Lounge Mar 12th, 2008, 4:38 PM
Replies: 25
Views: 793
Posted By Wizard1988
Re: 500 Ways to Cause An Error

How about a boot sector overwrite :)
Forum: Coder's Corner Lounge Mar 10th, 2008, 9:44 PM
Replies: 21
Views: 567
Posted By Wizard1988
Re: iPhone SDK

I am not sure about 3rd party apps, but they are charging $99 to run it on your iPhone. Otherwise you can run it in the simulator..
Forum: Coder's Corner Lounge Mar 10th, 2008, 9:38 PM
Replies: 10
Views: 277
Posted By Wizard1988
Re: Electromagnetic Relays

Damn... I'm already jealous.:lol:

http://www.allelectronics.com/cgi-bin/category/500/Relays.html
Forum: Coder's Corner Lounge Mar 9th, 2008, 9:08 PM
Replies: 8
Views: 241
Posted By Wizard1988
Re: Free High-Speed Internet?

But of course none of us here would ever do that, since it would be ILLEGAL :P
Forum: Community Introductions Mar 3rd, 2008, 5:16 PM
Replies: 6
Views: 259
Posted By Wizard1988
Re: Fresh Meat

Welcome home :)
Forum: C++ Mar 3rd, 2008, 4:59 PM
Replies: 10
Views: 533
Posted By Wizard1988
Re: Can ANYONE Do this?

This is pretty complicated. The autorun.ini method has major flaws to it. First you must rely on autorun being enabled, and I don't think it would work across different platforms. Chances are that...
Forum: Java Feb 28th, 2008, 7:27 AM
Replies: 4
Views: 295
Posted By Wizard1988
Re: 2d Pong HELP!!

There is a couple of ways you can do this. First I would simply check if the balls x coordinate is less than (x_paddle_position + paddle_width).

You can get more info here:...
Forum: C++ Feb 20th, 2008, 3:20 PM
Replies: 2
Views: 183
Posted By Wizard1988
Re: Missing Main In Allegro

http://www.loomsoft.net/resources/alltut/alltut_lesson1.htm

"END_OF_MAIN() // This must be called right after the closing bracket of your MAIN function.
// It is Allegro...
Showing results 1 to 40 of 500

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 4:35 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC