|
More site info...
Dev Shed Forums - Open Source web development - www.devshed.com | Site profile
|
|
Site profile page for http://www.devshed.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.devshed.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.devshed.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) 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 site's popularity and/or exact posting volumes at any given reporting period.
|
|
Title:
|
Dev Shed Forums - Open Source web development
|
|
Url:
|
http://www.devshed.com
|
|
Users activity:
|
0 posts per thread |
|
site activity:
|
0 active threads during last week |
|
Domain info for:
|
devshed.com
|
|
|
|
Posting activity table on Dev Shed Forums - Open Source web development:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
0
|
0
|
0
|
|
Post:
|
0
|
0
|
0
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for Dev Shed Forums - Open Source web development (http://www.devshed.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
Dev Shed Forums - Open Source web development posting activity graph:
|
|
http://www.devshed.com Alexa graph:
|
Top authors on Dev Shed Forums - Open Source web development during last week:
user's latest post:
Update Fixes IPhone Sync Problem...
Published (2009-11-06 23:03:00)
PC World - Gigabyte Technology issued a BIOS update on Friday that fixes a problem for some Windows 7 users who have been unable to sync their iPhones. View the Entire Article
user's latest post:
View joining same table multiple...
Published (2009-11-06 21:34:00)
Quote: Originally Posted by davidoff69 cant think of anything unusual ive done oh really? how about designing a crappy table? i don't mean to be harsh but your tbl_client_data table table is not even in first normal form redesign it, so that you're not joining to the same table umpteen times, and i'll bet your performance improves immensely
user's latest post:
Sorry, LONG response...
Published (2009-11-04 23:17:00)
Great, now just translate the algorithm from reply #1 into Java syntax and you are all set. You don't need to do anything other than implement the instructions exactly as they appear in order, in place of the "/* insert "carry" and "midnight" logic here */" comment in the example. Good luck! ~
user's latest post:
Load Text file and display in...
Published (2009-11-05 11:32:00)
what korRedDevil is saying is that ajax calls ONLY work with a web server.. and trying it on a stand alone pc will ALWAYS fail.
user's latest post:
Two problems, while and for.
Published (2009-11-06 15:49:00)
Quote: Originally Posted by Lubb hm, yeah, you have a point there. Its just some training assigments i have, and it says, make this using either for or while loops. Thanks for the tips btw The second one could be done as a loop. Hint: look at the pattern. I think what is throwing you off is that the example is incomplete. Instead of: 2 0 2 4 6 8 10 3 I think it should show: 2 0 2 4 6 8 10 3 0 3 6 9 12 15 And so on.
user's latest post:
Help with some SQL
Published (2009-11-06 18:00:00)
Where's user_answer_id coming from?
user's latest post:
[PHP-General] INSERT once and...
Published (2009-11-06 17:43:00)
Use curly braces to delimit your if/else statements, and indent your code properly, I'm sure you'll find it. -Dan
user's latest post:
Activex control, how it works
Published (2009-11-06 23:45:00)
Keep in mind activeX controls embedded in web pages and hosted by IE use a different installation mechanism that's controlled by the web browser and subject to different security checks.
|
|
|
Top 10 active forums on Dev Shed Forums - Open Source web development during last week:
|
|
Top 10 forums on Dev Shed Forums - Open Source web development:
PHP Development
- 50,058 posts
|
Business News
- 30,240 posts
|
Technology News
- 29,407 posts
|
Science News
- 24,013 posts
|
MySQL Help
- 21,360 posts
|
C Programming
- 20,522 posts
|
Java Help
- 18,983 posts
|
JavaScript Development
- 18,226 posts
|
CSS Help
- 15,041 posts
|
Perl Programming
- 9,572 posts
|
|
|
|
|
Latest active threads on Dev Shed Forums - Open Source web development:
Started 1 day, 23 hours ago (2009-11-06 19:58:00)
by dspgro
Here is another program to squeeze one string by taking out common. The string s[] is squeezed , taking out chars in c.
Code:
void squeeze( char s[],char c[])
{
int i=0,j=0,k=0;
while(c[k]!='\0')
{
i=0;
j= 0;
while(s[i]!='\0')
{
if (s[i]!= c[k])
s[j++]=s[i];
i++;
}
k++;
s[j]='\0';
}
}
main()
{
char p...
Started 3 days, 9 hours ago (2009-11-05 09:41:00)
by itstar
here is my code...
Code:
<?php session_start();
validate_user();
@extract($_POST);
$id=$_SESSION['sess_userid'];
$query = mysql_query('SELECT id,name,prnt_id,ref_id FROM tbl_user');
while ( $row = mysql_fetch_assoc($query) )
{
$menu_array[$row['id']] = array('name' => $row['name'],'parent' => $row['prnt_id']);
}
//recursive function that prints ...
Started 1 day, 16 hours ago (2009-11-07 02:53:00)
by KorRedDevil
No way. Javascript is able to capture the keystrokes, but if the keystroke (or the combination of keystrokes) are allocated, by default, to the Operating System operations, javascript can not change their behaviour. Javascript is client-side language, it can not "touch" the OS.
But probably you may alert the user about the fact that combination already does something else.
Started 1 day, 17 hours ago (2009-11-07 02:03:00)
by pette.n
YEAHHHH
SendKeys "~"
is what i need
solved
Started 3 days, 22 hours ago (2009-11-04 21:13:00)
by aalpha.org
Quote: Originally Posted by mrcarmine Hello
I have created some storyboards showing how I want the site to look, I also have a description of what is needed( mainly, a shopping cart which connects to an oracle database, session authentication, and a search engine) Should be easy stuff for you gurus.
I am willing to pay good money for someone who can code it up...
Started 2 days, 2 hours ago (2009-11-06 16:30:00)
by DonR
try adding overflow:hidden; to your maincontainer DIV.
Started 1 day, 18 hours ago (2009-11-07 01:09:00)
by kk5st
Why don't you make the body gray, and give the div a 5px margin?
Code:
html, body {
margin: 0;
padding: 0;
background-color: gray;
color: black;
}
#wrapper {
background- color: white;
color: black;
margin: 5px;
}
===============
<body>
<div id="wrapper">...</div>
</body>
cheers,
gary
|
|
Hot threads for last week on Dev Shed Forums - Open Source web development:
Started 1 week, 2 days ago (2009-10-29 23:00:00)
by sizablegrin
Think about how you might take an uninitialized array and initialize it at run time, using a loop.
Started 3 days, 9 hours ago (2009-11-05 09:25:00)
by haydenchambers
stupid question but the text document is in the same folder (at the same level) as your html doc?
Started 6 days, 8 hours ago (2009-11-02 11:05:00)
by boygenius
Started 5 days, 23 hours ago (2009-11-02 20:08:00)
by Yawmark
Quote: How do I even start this?
Start by declaring a method that returns a Time, and takes one Time argument named "end".
~
Started 6 days, 2 hours ago (2009-11-02 16:38:00)
by IOI-RLZ
Started 1 week ago (2009-11-01 14:17:00)
by requinix
Try again.
- You don't say how to get N1, N2, and N3. Important because of the "should not be able to enter the same number more than once" restriction.
- There are typos.
- You don't use L_NUM or S_NUM anywhere.
- You don't determine L_NUM and S_NUM correctly.
- Your DOWHILE loop starts in the wrong place, if it's even necessary to begin with.
Started 4 days, 3 hours ago (2009-11-04 15:59:00)
by RAJ_55555
Started 6 days, 5 hours ago (2009-11-02 13:56:00)
by swartzism
Started 3 days, 8 hours ago (2009-11-05 10:38:00)
by simshaun
Hmmm. I dont think you explained your problem very clearly. (or I'd try to help).
Started 4 days, 4 hours ago (2009-11-04 15:11:00)
by gimp
What's the specific issue you're having? Explain it in as much detail as possible, what you think the root causes are, and what you've done to fix it.
|
|