int6.org - collecting os development resources

This forums is for OS project announcements including project openings, new releases, update notices, test requests, and job openings (both paying and volunteer).
User avatar
raistlinthewiz
Member
Member
Posts: 34
Joined: Wed Jun 29, 2005 11:00 pm
Contact:

int6.org - collecting os development resources

Post by raistlinthewiz »

Hi, I'd like to introduce my new project http://www.int6.org which is a project that wants to collect all avaible os development resources together. In order to achieve this, user submission is required, so that site runs a digg like software called pligg. Please check the site, all comments are welcome!

http://www.int6.org
User avatar
octa
Member
Member
Posts: 50
Joined: Sat Jun 28, 2008 9:15 am

Re: int6.org - collecting os development resources

Post by octa »

why another site..
already osdev wiki is useful !!
User avatar
01000101
Member
Member
Posts: 1599
Joined: Fri Jun 22, 2007 12:47 pm
Contact:

Re: int6.org - collecting os development resources

Post by 01000101 »

yes... how horrible, more OS development info. :roll:

nice site btw.
User avatar
raistlinthewiz
Member
Member
Posts: 34
Joined: Wed Jun 29, 2005 11:00 pm
Contact:

Re: int6.org - collecting os development resources

Post by raistlinthewiz »

prave wrote:why another site..
already osdev wiki is useful !!
osdev wiki's resources section is not useful as digg-driven systems. It does have voting system, plus comments.
whowhatwhere
Member
Member
Posts: 199
Joined: Sat Jun 28, 2008 6:44 pm

Re: int6.org - collecting os development resources

Post by whowhatwhere »

@OP. I don't know quite what to say. This made me dislike your site quite a bit. Any remotely competent programmer would know perfectly well how to avoid /every/ one of those 'failures' of C. C does not **** with you. It does what you tell it to do, and is a language abstraction just above assembly. If you want "Fisher Price" coding, use pascal or something 'simpler'. C is for intelligent developers.

(Hint: Try '-W -Wall -Wextra -Werror -ansi -pedantic -std=c99' on your cflags for /any/ of those. You'll find out that the compiler can tell you a hell of a lot more than you give it credit for.)
User avatar
01000101
Member
Member
Posts: 1599
Joined: Fri Jun 22, 2007 12:47 pm
Contact:

Re: int6.org - collecting os development resources

Post by 01000101 »

I agree.
Most of those 'issues' with the language were not issues with the language at all, but rather the programmer making mistakes. Can't stop that.
User avatar
Alboin
Member
Member
Posts: 1466
Joined: Thu Jan 04, 2007 3:29 pm
Location: Noricum and Pannonia

Re: int6.org - collecting os development resources

Post by Alboin »

I don't like the 'Live Traffic Feed'. It publicly says where a user arrived from, which, in some circumstances, could be 'unfavorable' to said user...
C8H10N4O2 | #446691 | Trust the nodes.
User avatar
Adek336
Member
Member
Posts: 129
Joined: Thu May 12, 2005 11:00 pm
Location: Kabaty, Warszawa
Contact:

Re: int6.org - collecting os development resources

Post by Adek336 »

as long as it doesn't say the username it's not very revealing.
if the article on C is bad, it will get voted down - just like it should.
The dig-like scheme seems interesting.
dag
Posts: 13
Joined: Fri Jul 11, 2008 5:02 am
Location: Norway

Re: int6.org - collecting os development resources

Post by dag »

Nice site! I like the name
User avatar
raistlinthewiz
Member
Member
Posts: 34
Joined: Wed Jun 29, 2005 11:00 pm
Contact:

Re: int6.org - collecting os development resources

Post by raistlinthewiz »

syntropy wrote:@OP. I don't know quite what to say. This made me dislike your site quite a bit. Any remotely competent programmer would know perfectly well how to avoid /every/ one of those 'failures' of C. C does not **** with you. It does what you tell it to do, and is a language abstraction just above assembly. If you want "Fisher Price" coding, use pascal or something 'simpler'. C is for intelligent developers.

(Hint: Try '-W -Wall -Wextra -Werror -ansi -pedantic -std=c99' on your cflags for /any/ of those. You'll find out that the compiler can tell you a hell of a lot more than you give it credit for.)
the link you mention is just a resource you know which directs to http://www.andromeda.com/people/ddyer/topten.html
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: int6.org - collecting os development resources

Post by JamesM »

I had to forcibly restrain my upchuck reflex several times during my reading of that article.

EDIT: I'm not a freak. I would dislike it extremely if someone called me that to my face. It's a derogatory term, you know...
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Re: int6.org - collecting os development resources

Post by AJ »

Your "Top 10" List currently has 18 entries. Perhaps you are using an octadecimal numbering system? You also made an omission:

Code: Select all

int x = 1;
If you actually meant to assign the value 2 to the variable x, C will just go ahead and compile the above code anyway, merrily assigning the value 1 to x! What a cr*ppy language :roll:

Cheers,
Adam
brickhead20
Member
Member
Posts: 38
Joined: Mon Mar 24, 2008 4:17 pm

Re: int6.org - collecting os development resources

Post by brickhead20 »

I would suggest removing the swearing in your introduction. It annoys me and makes the site seem kind of childish. Also "And as you may already know" not "now" (though that is just a small correction).

I don't really agree with the article on C. I admit that sometimes these things accidentally creep in, but if you write reasonably sized pieces of code and test them well (use some printing to show the progression of values etc) this shouldn't be a problem. So I agree, it is the programmer, not the language, since most C programmers should know about these traits, and deal with them with little thought.

Other than that I guess your site is ok, though I prefer wikis to this Digg thing. I don't think freak is quite the right word either.
User avatar
raistlinthewiz
Member
Member
Posts: 34
Joined: Wed Jun 29, 2005 11:00 pm
Contact:

Re: int6.org - collecting os development resources

Post by raistlinthewiz »

AJ wrote:Your "Top 10" List currently has 18 entries. Perhaps you are using an octadecimal numbering system? You also made an omission:

Code: Select all

int x = 1;
If you actually meant to assign the value 2 to the variable x, C will just go ahead and compile the above code anyway, merrily assigning the value 1 to x! What a cr*ppy language :roll:

Cheers,
Adam
that article do not belongs me..

ps: i'll change the site title as requested
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: int6.org - collecting os development resources

Post by Combuster »

IMO the title should've been more like Top ten of C programmer's mistakes (ignoring the 18 item count). C eats ignorant people only because its told to.

I still do some of them regularly:

Code: Select all

while (a > 0);
{
    a = update();
}
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
Post Reply