My account: Login | Sign Up
Loading... 

Programming and Web Development | Forum profile

Forum profile page for Programming and Web Development on http://www.edgeofnowhere.cc. This report page is the aggregated overview from a single forum: Programming and Web Development, located on the Message Board at http://www.edgeofnowhere.cc. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Programming and Web Development" on the Message Board at http://www.edgeofnowhere.cc is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: Edge of Nowhere - Programming and Web Development (site profile, domain info edgeofnowhere.cc)
Title: Programming and Web Development
Url: http://www.edgeofnowhere.cc/viewforum.php?f=71&...
Users activity: 28 posts per thread
Forum activity: 10 active threads during last week
 

Posting activity on Programming and Web Development:

  Week Month 3 Months
Threads: 10 50 203
Post: 26 149 569
 

Programming and Web Development Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Muted
7
user's latest post:
[C++] Creating game replays
Published (2009-01-04 04:59:00)
I can freely run it at any speed with it being like that, the Snake doesn't get his next set of instructions for moving until he reaches the first X, Y sent to him.
Xyphos
4
user's latest post:
[Javascript] Bitfield manipulation
Published (2009-01-07 01:50:00)
crutex wrote: Xyphos wrote: ...and no sooner do I post this, I solved my own problem. stray bracket ftl. come out to the other forums Be careful what you wish for.
lord2800
4
user's latest post:
[C++] File to Hex to Frequency...
Published (2009-01-06 16:48:00)
The simple way to convert from analog --> digital is to arbitrarily say anything above a certain frequency = 1, everything else = 0.
antirush
3
user's latest post:
[C++] Creating game replays
Published (2009-01-03 11:14:00)
If you don't save timestamps, though, you're going to be running it at some fixed speed so it won't be a true replay (unless you save the position every tick). And in any case you're saving more information than you need - the user input along with the previous game state is enough to determine the current game state.
Ph0X
2
user's latest post:
[C++] File to Hex to Frequency...
Published (2009-01-06 08:05:00)
Zoxc wrote: I'd suggest you redesign your laser system to transfer pure binary. And how would I do that? The system I have right now has a phonoplug where the music goes in. Then it goes through a transformator that transforms it into electric waves or w.e, goes through to the laser. Then the laser touches a photo sensitive cell and which sends to electrique wave to a piezoelectric earphone (or to another phonoplug). The volume is really...
crutex
1
user's latest post:
[Javascript] Bitfield manipulation
Published (2009-01-02 22:21:00)
come out to the other forums
Soulzek
1
user's latest post:
[C++] Creating game replays
Published (2009-01-01 16:05:00)
Related to what antirush said, you could store all the moves (continually append them to one array), and then dump all that information to a file when the programs closes or during some other specified event like every minute or every 20 changes. You definitely do not want to constantly be saving to harddisk, that is bad. This is something you would probably want to keep track of:
Cake
1
user's latest post:
[C++] Creating game replays
Published (2009-01-02 10:29:00)
I noticed you've implemented the code in the header file. (I'm don't know much about C++ either so don't quote me on this) I think you're supposed to just have the method signatures in the header file and implementations in a cpp file. Also I noticed that you're using include guards. For a shorter solution, you could just use #pragma once instead and the compiler will ensure it's only included once.
scarvenger
1
user's latest post:
[C++] Substrings not working as...
Published (2009-01-04 19:44:00)
In your substring aproach you are always comparing a string with just one char with the separator string, so we can make a char-only version of the algorithm:
Corni
1
user's latest post:
[C++] File to Hex to Frequency...
Published (2009-01-05 14:24:00)
amplitude<=>frequency fast fourier transformations, www.fftw.org amplitude<=>speakers search for any sound library, for windows DirectX (don't know directx, though) You don't need the frequencys for playing a sound at all, that's the whole point of wav! And if you want to understand the basics of this write a simple frequency generator which outputs a wavfile, and after it, play the generated...
 

Latest active threads on Programming and Web Development::

Edge of Nowhere
Started 6 days, 12 hours ago (2009-01-02 20:50:00)  by Xyphos
I have a form, with some javascript attached. one of the form's hidden fields is a 32-bit number, to be treated as a bitfield. for the life of me, I can't seem to code proper bit manipulation routines. I need: ToggleBit( Num, Bit ) CheckBit( Num, Bit ) and google yields no relevant results, only how to toggle the visibility of elements.
Thread:  Show this thread (4 posts)   Thread info: [Javascript] Bitfield manipulation Size: 412 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[Javascript] Bitfield manipulation :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 2 weeks, 2 days ago (2008-12-24 01:20:00)  by Ph0X
So it's a little project of mine. I won't waste your time explaining the project. What I need is to make a program that will take a file (drop the file on it), take the hex and put it in a txt file, then take that txt, for each hexidecimal, write a pitch in another txt file Example: 0 = 1000 kHz 1 = 2000 kHz 2 = 3000 kHz ... E = 15000 kHz F = 16000 kHz Then,...
Thread:  Show this thread (15 posts)   Thread info: [C++] File to Hex to Frequency to Sound Size: 758 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] File to Hex to Frequency to Sound :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 2 weeks, 2 days ago (2008-12-23 20:25:00)  by Taaz
My substrings don't seem to be collecting the correct margin of characters. Every time the loop runs through, it will add x to each substring parameter, x being the length of the separator. Therefore, if I have my string to check as: one,two,three And my separator is defined as "," -- a comma -- it will increase the substring parameters by one per loop. It will then loop ...
Thread:  Show this thread (5 posts)   Thread info: [C++] Substrings not working as expected Size: 774 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Substrings not working as expected :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 1 week, 1 day ago (2009-01-01 07:58:00)  by Muted
Hello, first off I'd like to state: I am not asking for help, but simply advice and suggestions. This is (of course) related to Snake. A few days ago I wrote a little sub-routine for creating (only that, not viewing) replays. It works, all fine-and-handy-dandy. This is what I went with (in the end):
Thread:  Show this thread (15 posts)   Thread info: [C++] Creating game replays Size: 388 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Creating game replays :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 1 week, 1 day ago (2008-12-31 12:59:00)  by michael2
What is the best programs to use to read and edit Dll files?
Thread:  Show this thread (2 posts)   Thread info: Dll files? Size: 124 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Dll files? :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 2 weeks, 3 days ago (2008-12-22 12:14:00)  by loner_dood
Currently taking a visual basic class. What other coding language should I work on next, and then build up to the harder stuff? Also, can you refer to me any decent books or websites which you used? I think alot of people have this question, so I hope I can help others out w/ this thread too.
Thread:  Show this thread (24 posts)   Thread info: I want to start programming Size: 293 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "I want to start programming :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 1 week, 5 days ago (2008-12-27 12:36:00)  by drew_
Well, I came across a problem with my d2jsp spambot I was working on. And I just thought I might release this. Description: You can store data into an array, check if the data already exists, read the entries of the array (all the data stored). I used it to prevent the bot from re-posting in the same id, and the entries stored in the array are the thread ids. Code:...
Thread:  Show this thread (7 posts)   Thread info: [AutoIt] Writing Data 2 Array Size: 2,294 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[AutoIt] Writing Data 2 Array :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 2 weeks, 1 day ago (2008-12-24 11:55:00)  by ifightin2d
Anyone know of a way to turn the monitor off completely, as in the same thing I would achieve by pressing the power button? Thanks.
Thread:  Show this thread (6 posts)   Thread info: Monitor TOTALLY off (power off) Size: 131 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Monitor TOTALLY off (power off) :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 3 weeks, 3 days ago (2008-12-16 05:38:00)  by Muted
Here's a visual aid of the problem: Here's the actual code being used: Code: /* Starting position (and existance) for the snake */ for (int x = SnakeBlocks; x >= 0; x--) { Horizontal[x] = 10 - x; Vertical[x] = 10; } SetColor(ColorNum, BLACK); for (x = SnakeBlocks; x > 0; x--) { Horizontal[x] = Horizontal[x - 1]; Vertical[x] = ...
Thread:  Show this thread (8 posts)   Thread info: [C++] Snake related Size: 2,513 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Snake related :: Programming and Web Development :: Edge of Nowhere"
Edge of Nowhere
Started 2 weeks, 4 days ago (2008-12-22 07:46:00)  by Xyphos
I've been porting some C++ code for an application over to PHP so I can run the application on my server, since I'm unable to run custom apps - but I do have SSH access to run the PHP version, dispite being slow.
Thread:  Show this thread (3 posts)   Thread info: [C++] Translation Please Size: 231 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Translation Please :: Programming and Web Development :: Edge of Nowhere"
 

Hot threads for last week on Programming and Web Development::

Programming and Web Development
Started 1 week, 1 day ago (2009-01-01 07:58:00)  by Muted
Hello, first off I'd like to state: I am not asking for help, but simply advice and suggestions. This is (of course) related to Snake. A few days ago I wrote a little sub-routine for creating (only that, not viewing) replays. It works, all fine-and-handy-dandy. This is what I went with (in the end):
Thread:  Show this thread (15 posts)   Thread info: [C++] Creating game replays Size: 388 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Creating game replays :: Programming and Web Development :: Edge of Nowhere"
Programming and Web Development
Started 2 weeks, 2 days ago (2008-12-24 01:20:00)  by Ph0X
So it's a little project of mine. I won't waste your time explaining the project. What I need is to make a program that will take a file (drop the file on it), take the hex and put it in a txt file, then take that txt, for each hexidecimal, write a pitch in another txt file Example: 0 = 1000 kHz 1 = 2000 kHz 2 = 3000 kHz ... E = 15000 kHz F = 16000 kHz Then,...
Thread:  Show this thread (15 posts)   Thread info: [C++] File to Hex to Frequency to Sound Size: 758 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] File to Hex to Frequency to Sound :: Programming and Web Development :: Edge of Nowhere"
Programming and Web Development
Started 6 days, 12 hours ago (2009-01-02 20:50:00)  by Xyphos
I have a form, with some javascript attached. one of the form's hidden fields is a 32-bit number, to be treated as a bitfield. for the life of me, I can't seem to code proper bit manipulation routines. I need: ToggleBit( Num, Bit ) CheckBit( Num, Bit ) and google yields no relevant results, only how to toggle the visibility of elements.
Thread:  Show this thread (4 posts)   Thread info: [Javascript] Bitfield manipulation Size: 412 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[Javascript] Bitfield manipulation :: Programming and Web Development :: Edge of Nowhere"
Programming and Web Development
Dll files? - 2 new posts
Started 1 week, 1 day ago (2008-12-31 12:59:00)  by michael2
What is the best programs to use to read and edit Dll files?
Thread:  Show this thread (2 posts)   Thread info: Dll files? Size: 124 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Dll files? :: Programming and Web Development :: Edge of Nowhere"
Programming and Web Development
Started 2 weeks, 2 days ago (2008-12-23 20:25:00)  by Taaz
My substrings don't seem to be collecting the correct margin of characters. Every time the loop runs through, it will add x to each substring parameter, x being the length of the separator. Therefore, if I have my string to check as: one,two,three And my separator is defined as "," -- a comma -- it will increase the substring parameters by one per loop. It will then loop ...
Thread:  Show this thread (5 posts)   Thread info: [C++] Substrings not working as expected Size: 774 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[C++] Substrings not working as expected :: Programming and Web Development :: Edge of Nowhere"