|
More site info...
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.
|
|
|
|
|
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:
|
Top authors during last week:
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.
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.
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.
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.
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...
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:
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.
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:
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::
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.
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,...
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 ...
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):
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?
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.
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:...
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.
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] = ...
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.
|
|
Hot threads for last week on 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):
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,...
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.
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?
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 ...
|
|