Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 23 of 23
Search took 0.01 seconds.
Search: Posts Made By: clsk
Forum: Project Ideas May 24th, 2006, 7:20 PM
Replies: 20
Views: 392
Posted By clsk
hm I started doing an OS myself about a week ago....

hm I started doing an OS myself about a week ago. I had been reading alot on OS design and implementation. Though I dislike the idea of vapor-ware I stopped working on the OS to start working on a...
Forum: Coder's Corner Lounge Mar 8th, 2006, 2:18 PM
Replies: 64
Views: 1,226
Posted By clsk
1x Toshiba satellite laptop. 1x Averatec laptop.

1x Toshiba satellite laptop.
1x Averatec laptop.
Forum: C++ Feb 3rd, 2006, 1:11 AM
Replies: 6
Views: 257
Posted By clsk
I think you should finish that c++ book before...

I think you should finish that c++ book before you get into that :). You keep trying to get ahead of yourself.
Forum: Coder's Corner Lounge Jan 31st, 2006, 5:11 PM
Replies: 21
Views: 414
Posted By clsk
I agree with DaWei. From what I've gathered the...

I agree with DaWei. From what I've gathered the way it's organized is alot better than linux. I read an article once about how unorganized the linux kernel project was compared to some of the BSDs...
Forum: Coder's Corner Lounge Jan 31st, 2006, 8:55 AM
Replies: 20
Views: 575
Posted By clsk
I'd say one good book. And ignore the older...

I'd say one good book. And ignore the older books. Remember that the c++ standard was drafted in 1998 and confirmed in 1999 IIRC. So books older than maybe 2000 are out-of-date with the standard. One...
Forum: C++ Jan 31st, 2006, 8:42 AM
Replies: 18
Views: 426
Posted By clsk
If you're using doing this in c++ why are you...

If you're using doing this in c++ why are you even using a char array to manage strings of characters?
I recommend you use std::string to manage strings of characters.
To convert integer values that...
Forum: C++ Jan 29th, 2006, 12:20 PM
Replies: 0
Views: 153
Posted By clsk
Cache class feedback

Hello,

I created a class that is intended to be used to cache data. I'm just trying to get some feedback from other programmers on what you think needs to be improved or if you think it is...
Forum: C++ Jan 26th, 2006, 1:06 PM
Replies: 6
Views: 240
Posted By clsk
Maybe what you're looking for are conditional...

Maybe what you're looking for are conditional variables. POSIX threads include this so it's postable as far as systems that are POSIX complaints.

You might want too look...
Forum: Coder's Corner Lounge Jan 22nd, 2006, 1:17 PM
Replies: 22
Views: 439
Posted By clsk
fedora core 4 has serious shared libraries...

fedora core 4 has serious shared libraries issues.
Linux just doesn't seem to be ready for desktop environments IMO.
I've tried several times to do a complete switch but I always find lots of broken...
Forum: Other Programming Languages Jan 21st, 2006, 11:52 AM
Replies: 13
Views: 367
Posted By clsk
Why do people keep trying to dig C++? I just...

Why do people keep trying to dig C++? I just don't understand. How much "deep" (as you said) is c++ from c# or java, or delphi for that matter.
You're not forced to use pointers. You're not forced to...
Forum: Other Programming Languages Jan 21st, 2006, 11:03 AM
Replies: 18
Views: 666
Posted By clsk
What's wrong with learning low-level stuff? IMO,...

What's wrong with learning low-level stuff?
IMO, the more you know about the low-level stuff the more productive you can be at a higher level.
Forum: Assembly Jan 20th, 2006, 6:31 PM
Replies: 12
Views: 638
Posted By clsk
IIRC it's a requirement in C to save some (can't...

IIRC it's a requirement in C to save some (can't remember which ones ATM) registers. Meaning that when your application exits the values for those registries should be the same as when the OS gave...
Forum: Coder's Corner Lounge Jan 17th, 2006, 12:07 PM
Replies: 104
Views: 6,371
Posted By clsk
I'd use slackware if it implemented kernel 2.6*...

I'd use slackware if it implemented kernel 2.6* in the stable version.
You'd think they would've done this already since 2.6+ has been out for quite a while, but oh well.
Forum: Paid Job Offers Jan 14th, 2006, 1:46 PM
Replies: 27
Views: 588
Posted By clsk
An IRC channel would probably be best IMO....

An IRC channel would probably be best IMO. Probably at freenode.
Also a mailing-list would probably help for other stuff. but real-time chat is the best way to discuss projects IMO.
Forum: Paid Job Offers Jan 14th, 2006, 12:58 PM
Replies: 27
Views: 588
Posted By clsk
I'd be interested in it. I've been looking to...

I'd be interested in it. I've been looking to partner up with people for a while just to develop random applications and get more experience. I've been doing c++ for about 2 years now. Maybe more....
Forum: Coder's Corner Lounge Jan 14th, 2006, 12:36 PM
Replies: 23
Views: 471
Posted By clsk
I'm talking about the implementation of the...

I'm talking about the implementation of the language.
What you are talking about is the implementation of a specific application.

Either way, yes, I'm talking about what you reffered to as the...
Forum: Coder's Corner Lounge Jan 14th, 2006, 8:36 AM
Replies: 23
Views: 471
Posted By clsk
Once again, you're talking about the...

Once again, you're talking about the implementation, not the language itself.
Forum: Coder's Corner Lounge Jan 13th, 2006, 5:45 PM
Replies: 23
Views: 471
Posted By clsk
Once again, the language has nothing to do with...

Once again, the language has nothing to do with how fast the resulting program is going to be.
What you are talking about is the implementation.
Forum: Coder's Corner Lounge Jan 13th, 2006, 5:21 PM
Replies: 23
Views: 471
Posted By clsk
I did come to that conlusion too. I've seen two...

I did come to that conlusion too. I've seen two attempts to port c++/cli linux.
http://www.math.leidenuniv.nl/~kris/whirl2il/
and
http://developer.novell.com/wiki/index.php/Gcc-cil
Forum: Project Ideas Jan 13th, 2006, 3:56 PM
Replies: 26
Views: 465
Posted By clsk
The way gcc does it is. The main engine of the...

The way gcc does it is. The main engine of the program translates to assamble code which is later passed to gas (gnu assambler). Support for other compilers for other languages (c, c++, fortran and...
Forum: Coder's Corner Lounge Jan 13th, 2006, 3:49 PM
Replies: 23
Views: 471
Posted By clsk
You're 100% correct on that and I never said that...

You're 100% correct on that and I never said that c++ was any faster/slower than c#. All I said was that c++/cli is no near as ugly as the old managed c++. No language is faster than the other. A...
Forum: Community Introductions Jan 13th, 2006, 1:29 PM
Replies: 29
Views: 646
Posted By clsk
I couldn't agree more. Music is a good factor...

I couldn't agree more. Music is a good factor while programming or some background noise will help you concentrate.
Good compilers IMO g++ (or mingw in windows). I'm not very used to IDEs but I'd...
Forum: Coder's Corner Lounge Jan 13th, 2006, 12:56 PM
Replies: 23
Views: 471
Posted By clsk
No need for c# anymore.

I felt the same way before .NET 2.0 came out with visual studio 2005.
The new C++/CLI (that's what they call it now instead of managed c++) is way better than its predecesor. Check MSDN for more...
Showing results 1 to 23 of 23

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 5:25 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC