Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

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 - http://www.devshed.com 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:

Dev Shed Forums - Open Source web development | Forum Authority Badge

Dev Shed Forums - Open Source web development posting activity graph:

Posts by:  day  week  month 
 

http://www.devshed.com Alexa graph:

Top authors on Dev Shed Forums - Open Source web development during last week:

Name
Posts
RSS_News_User
1,582
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
r937
87
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
jwdonahue
83
user's latest post:
Link simple C program with OpenLDAP
Published (2009-11-06 15:57:00)
I don't see -lldap in there. Did you try that?
Yawmark
51
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! ~
haydenchambers
45
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.
Kravvitz
44
user's latest post:
IE8 and transparent images
Published (2009-11-05 23:13:00)
Ah. Congratulations on figuring it out.
jzd
40
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.
requinix
40
user's latest post:
Help with some SQL
Published (2009-11-06 18:00:00)
Where's user_answer_id coming from?
ManiacDan
40
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
Doug G
37
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:

Business News - 451 new posts Business News - forum profile
Technology News - 432 new posts Technology News - forum profile
Java Help - 400 new posts Java Help - forum profile
C Programming - 399 new posts C Programming - forum profile
Science News - 360 new posts Science News - forum profile
PHP Development - 293 new posts PHP Development - forum profile
MySQL Help - 231 new posts MySQL Help - forum profile
CSS Help - 177 new posts CSS Help - forum profile
JavaScript Development - 168 new posts JavaScript Development - forum profile
Perl Programming - 67 new posts Perl Programming - forum profile
 

Top 10 forums on Dev Shed Forums - Open Source web development:

PHP Development - 50,058 posts PHP Development - forum profile
Business News - 30,240 posts Business News - forum profile
Technology News - 29,407 posts Technology News - forum profile
Science News - 24,013 posts Science News - forum profile
MySQL Help - 21,360 posts MySQL Help - forum profile
C Programming - 20,522 posts C Programming - forum profile
Java Help - 18,983 posts Java Help - forum profile
JavaScript Development - 18,226 posts JavaScript Development - forum profile
CSS Help - 15,041 posts CSS Help - forum profile
Perl Programming - 9,572 posts Perl Programming - forum profile

Latest active threads on Dev Shed Forums - Open Source web development:

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...
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (7 posts) Thread info: [ANSI C]Hex to Int converter Size: 785 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Squeeze :: C Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
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 ...
Forum:  PHP Development PHP Development - forum profile
Thread:  Show this thread (5 posts) Thread info: Recursion problem or something else??? Size: 16 kb
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Recursion problem or something else??? :: PHP Development :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
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.
Forum:  JavaScript Development JavaScript Development - forum profile
Thread:  Show this thread (3 posts) Thread info: Javascript shortcut and global shortcuts Size: 458 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Javascript shortcut and global shortcuts :: JavaScript Development :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 1 day, 17 hours ago (2009-11-07 02:03:00)  by pette.n
YEAHHHH SendKeys "~" is what i need solved
Forum:  Visual Basic Programming Visual Basic Programming - forum profile
Thread:  Show this thread (2 posts) Thread info: ActiveDocument.PrintOut problem Size: 273 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: ActiveDocument.PrintOut problem :: Visual Basic Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
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...
Forum:  Hire A Programmer Hire A Programmer - forum profile
Thread:  Show this thread (8 posts) Thread info: PHP/SQL Programmer needed for simple e commerce website Size: 914 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: PHP/SQL Programmer needed for simple e commerce website :: Hire A Programmer :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 2 days, 2 hours ago (2009-11-06 16:30:00)  by DonR
try adding overflow:hidden; to your maincontainer DIV.
Forum:  CSS Help CSS Help - forum profile
Thread:  Show this thread (6 posts) Thread info: Container Height Unknown Size: 110 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Container Height Unknown :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
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
Forum:  CSS Help CSS Help - forum profile
Thread:  Show this thread (2 posts) Thread info: Fullscreen div with margins Size: 687 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Fullscreen div with margins :: CSS Help :: Dev Shed Forums - Open Source web development"
 

Hot threads for last week on Dev Shed Forums - Open Source web development:

C Programming
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.
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (48 posts) Thread info: Any good advice/webpages on arrays? Size: 154 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Any good advice/webpages on arrays? :: C Programming :: Dev Shed Forums - Open Source web development"
JavaScript Development
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?
Forum:  JavaScript Development JavaScript Development - forum profile
Thread:  Show this thread (29 posts) Thread info: Load Text file and display in table format. Size: 153 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Load Text file and display in table format. :: JavaScript Development :: Dev Shed Forums - Open Source web development"
C Programming
Started 6 days, 8 hours ago (2009-11-02 11:05:00)  by boygenius
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (28 posts) Thread info: Running time for this program Size: 0 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Running time for this program :: C Programming :: Dev Shed Forums - Open Source web development"
Java Help
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". ~
Forum:  Java Help Java Help - forum profile
Thread:  Show this thread (23 posts) Thread info: [Homework] Needing a "kick start" in the right direction Size: 465 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: [Homework] Needing a "kick start" in the right direction :: Java Help :: Dev Shed Forums - Open Source web development"
C Programming
RE: Macro - 23 new posts
Started 6 days, 2 hours ago (2009-11-02 16:38:00)  by IOI-RLZ
-----
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (23 posts) Thread info: Macro Size: 61 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Macro :: C Programming :: Dev Shed Forums - Open Source web development"
C Programming
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.
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (22 posts) Thread info: Finding the sum, product... Size: 452 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Finding the sum, product... :: C Programming :: Dev Shed Forums - Open Source web development"
C Programming
Started 4 days, 3 hours ago (2009-11-04 15:59:00)  by RAJ_55555
Forum:  C Programming C Programming - forum profile
Thread:  Show this thread (21 post) Thread info: Problem with Scanf instead of gets Size: 0 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: what type of error? mention :: C Programming :: Dev Shed Forums - Open Source web development"
Java Help
Started 6 days, 5 hours ago (2009-11-02 13:56:00)  by swartzism
Forum:  Java Help Java Help - forum profile
Thread:  Show this thread (20 posts) Thread info: Comparing char's from a String Size: 0 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Comparing char's from a String :: Java Help :: Dev Shed Forums - Open Source web development"
PHP Development
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).
Forum:  PHP Development PHP Development - forum profile
Thread:  Show this thread (19 posts) Thread info: Help Preg_match pattern Size: 139 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Help Preg_match pattern :: PHP Development :: Dev Shed Forums - Open Source web development"
Java 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.
Forum:  Java Help Java Help - forum profile
Thread:  Show this thread (14 posts) Thread info: Bank/BankAccount help Size: 206 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Bank/BankAccount help :: Java Help :: Dev Shed Forums - Open Source web development"

This page was found by:   shed forums  open source web profile