Forum: Python Dec 22nd, 2004 |
| Replies: 15 Views: 5,245 |
Forum: C Dec 11th, 2004 |
| Replies: 5 Views: 1,994 |
Forum: Search Engine Optimization Dec 10th, 2004 |
| Replies: 8 Views: 3,418 |
Forum: C Dec 10th, 2004 |
| Replies: 5 Views: 1,994 |
Forum: DaniWeb Community Feedback Dec 10th, 2004 |
| Replies: 12 Views: 3,221 Re: "sponsored link" box too small for mozilla it actually happens in firefox as well. i'm suprised it doesn't do that for you.
i don't think firefox is stable on linux yet. see this post (http://forums.gentoo.org/viewtopic.php?t=206706). |
Forum: DaniWeb Community Feedback Dec 10th, 2004 |
| Replies: 12 Views: 3,221 |
Forum: DaniWeb Community Feedback Dec 10th, 2004 |
| Replies: 12 Views: 3,221 |
Forum: C Dec 10th, 2004 |
| Replies: 5 Views: 1,994 |
Forum: Search Engine Optimization Dec 10th, 2004 |
| Replies: 8 Views: 3,418 |
Forum: C++ Dec 10th, 2004 |
| Replies: 8 Views: 2,403 |
Forum: DaniWeb Community Feedback Dec 10th, 2004 |
| Replies: 12 Views: 3,221 |
Forum: DaniWeb Community Feedback Dec 10th, 2004 |
| Replies: 12 Views: 3,221 |
Forum: Growing an Online Community Dec 10th, 2004 |
| Replies: 3 Views: 2,233 Re: what are good post-intervals for ranks i decided not to do any ranks/titles for the time being. maybe i'll start a thread on the topic later on. i think a lot of the people who are using it are used to email lists and they might not... |
Forum: Growing an Online Community Dec 9th, 2004 |
| Replies: 3 Views: 2,233 what are good post-intervals for ranks i'm trying to decide what my ranking system will be and am not sure what post-intervals to use. i've noticed that popular forums have larger intervals. should i wait to see how popular the site... |
Forum: Growing an Online Community Dec 9th, 2004 |
| Replies: 16 Views: 4,725 Re: will people use a low traffic forum? good suggestions.. thanks. i think one thing that really helps a forum get started is word of mouth. i've been trying to spread the word lately and have been getting more posts. |
Forum: Website Reviews Dec 9th, 2004 |
| Replies: 10 Views: 3,766 Re: Please review my mortgage site redesign the first thing i noticed about your site is that your photo is stretched out horizontally. do you use a program to generate the html? why even define the width and height of the image? |
Forum: DaniWeb Community Feedback Dec 9th, 2004 |
| Replies: 12 Views: 3,221 "sponsored link" box too small for mozilla could the "sponsored link" boxes be made just a few pixels taller? when i'm scrolling down a page with the mouse wheel and go over a box, the page stops scrolling, and the "sponsored link" box... |
Forum: C++ Dec 9th, 2004 |
| Replies: 4 Views: 2,389 |
Forum: MySQL Dec 9th, 2004 |
| Replies: 0 Views: 3,174 any experiences with embedded mysql? has anyone used embedded mysql in their app? please share your experiences. i'm contemplating whether or not to do it.
i may just use XML. i know it's improper, but a lot of commercial apps do... |
Forum: Windows Software Dec 9th, 2004 |
| Replies: 7 Views: 59,099 |
Forum: Growing an Online Community Dec 9th, 2004 |
| Replies: 16 Views: 4,725 |
Forum: C++ Dec 9th, 2004 |
| Replies: 2 Views: 1,412 Re: Starting off this is a pretty standard first program:
#include <iostream.h>
int main() {
cout << "Hello, World!" << endl;
return 0;
} |
Forum: Window and Desktop Managers Dec 8th, 2004 |
| Replies: 10 Views: 4,540 Re: What desktop and why i use fluxbox. it's all i need. when i look for any software (or just about anything) i expect it to do one thing, and do it well. |
Forum: Growing an Online Community Dec 8th, 2004 |
| Replies: 16 Views: 4,725 Re: will people use a low traffic forum? thanks for the replies.
i just read the forum policy, after seeing that my forum URL had been removed from my original post in this thread. so why is it that threads like this... |
Forum: C++ Dec 8th, 2004 |
| Replies: 4 Views: 2,389 |
Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 1,533 Re: Need help with php i'm not sure how my post is totally irrelevant. perhaps i shouldn't have said that we're on the "topic" of scripting languages, but instead that this is a thread in the c/c++ forum and i'm... |
Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 1,533 |
Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 1,533 Re: Need help with php while we're on the topic of scripting languages, here's a dirty hack in python:
l = []
for i in range(1,10):
if i % 2 != 0:
l.append(i)
for i in range(1,6)[::-1]:
print... |
Forum: C Dec 7th, 2004 |
| Replies: 8 Views: 10,811 |
Forum: Growing an Online Community Dec 7th, 2004 |
| Replies: 16 Views: 4,725 will people use a low traffic forum? i have a forum for a relatively small (but rapidly growing) niche of researchers worldwide. it's been really slow getting it going.. very low traffic. do you think people will use it? are low traffic... |
Forum: C Dec 7th, 2004 |
| Replies: 6 Views: 2,176 |
Forum: C Dec 7th, 2004 |
| Replies: 8 Views: 10,811 |
Forum: Computer Science and Software Design Dec 7th, 2004 |
| Replies: 9 Views: 7,354 Re: Scientific word processor do you know about texmacs? it seems to be just what you're looking for. here's a site describing how to get it running on windows: http://www.fmi.uni-passau.de/~seidl/texmacs/tmtour.html |
Forum: C++ Dec 7th, 2004 |
| Replies: 4 Views: 2,091 Re: Help me understand Pointers i'm also a bit confused. for example, all of the following code works just fine:
#include <stdio.h>
main()
{
char c[100];
scanf("%s", &c);
printf("test %s", &c);
}
#include <stdio.h> |
Forum: C++ Dec 7th, 2004 |
| Replies: 2 Views: 1,413 iostream in C? can C programs use iostream? i've done it in C++, and read that it can be done in C, but i keep getting compilation errors.
#include <iostream>
using namespace std;
main()
{
cout << "test";
} |