₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,004 members, 8,419,893 topics. Date: Thursday, 04 June 2026 at 06:37 AM

Toggle theme

C0dec's Posts

Nairaland ForumC0dec's ProfileC0dec's Posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 (of 38 pages)

European Football (EPL, UEFA, La Liga)Re: It's Arsenal Against Juventus by c0dec(m): 8:25pm On Mar 10, 2006
FORZA JUVE!

arsenal's going down! dont be fooled. real madrid can make any team feel good.
SportsRe: 2005/2006 UEFA Champions League by c0dec(op): 11:12pm On Mar 08, 2006
well benfica is still in there.

FORZA MICCOLI

lyon is scary.
ProgrammingRe: Nigerian Linux Distribution: do we need one? by c0dec(m): 5:15am On Mar 07, 2006
f0d:
I'm going to create my own distribution, it's in planning stage currently. I'm doing it with a few matez, wazobia linux is bloated. It's based of FCD4 (ROFLZ) I'll be making mine based off LFS, www.linuxfromscratch.com and it'll have a package management system called "abeg" :p, "eg: abeg wine" = download and install wine from the meld-linux repository.
Creating your own PKGBUILDS would be dead easy aswell, smiley
We'll see how it goes, smiley
grin "abeg" - nice one. building a packagin system is not trivial.

i'm guessing your LFS-based distro is targeted towards hardcore users the slacker-type because there's no way a noob's gonna wanna touch your distro. i've done LFS before - i think i called it "uber-1337". i used NSA's secure kernel. well somewhere along the line, the system messed up and couldn't boot. uber-1337 only lasted a week. undecided
FashionRe: Most Beautiful Girl In Nigeria 2006 by c0dec(m): 2:11am On Mar 07, 2006
this only proves that ibo girls rule!
European Football (EPL, UEFA, La Liga)Re: Ronaldinho Shuns Chelsea. Would You? by c0dec(m): 2:06am On Mar 07, 2006
i'm not a fan of chelsea. and yes i admire barca but it's gonna be a close call at the nou camp. don't write off chelsea. mourinho is deadly when he has the underdog status.

FORZA JUVE!
Music/RadioRe: Best Female Rapper by c0dec(m): 2:02am On Mar 07, 2006
missy elliot is the wackest person to ever hold the mic!!!!

my favourite female rapper so far is lauryn hill. rah digga and jean grae come close.
ProgrammingRe: Is Assembly Language Dead? by c0dec(m): 10:50pm On Mar 05, 2006
allonym:
in a day?

Well, what kind of assembly?

Intel? motorola? ti? pic? Atmel?

There are lots of assembly types. Id say to get a general grasp on one, its best to pick one and read up on that, rather than trying lots of different things. I'd also suggest looking up 6800 assembly. This is a small instruction set and pretty simple to understand. (Another thing involved in assembly types is the processor memory architectures - harvard or von-nuemann). Anyway, focus on 6800 assembly.

For something more basic, lookup Register Transfer Logic or Register Transfer Language. This is essentially a description of how data is transferred in a processor and serves as a further explanation of how certain common instructions work.
c0dec:
i'm only interested in the intel chips for now.
i just want to learn how to read ASM code for debugging and optimizing my C++ programs.
ProgrammingRe: Is Assembly Language Dead? by c0dec(m): 5:52pm On Mar 05, 2006
thanx y'all
ProgrammingRe: Is Assembly Language Dead? by c0dec(m): 11:35pm On Mar 04, 2006
ok, all u ASM peeps.

i want to learn ASM in a day! any pointers or links to simple fast easy to understand tutorials? i could google it but i think the experienced ones know whats up? my priority is to be able to read ASM code not program it. i'm only interested in the intel chips for now.

thanx
SportsRe: Lionel Messi: A Surprise Package For Jose Mourinho by c0dec(m): 3:49am On Mar 04, 2006
c'mon messi? a surprise? are u just hearing about the boy? he's barca's most dangerous player (even capello said that). quit watching premiership. la liga and serie a are better leagues.
Art, Graphics & VideoRe: Want to Join Team of 3D Animators? by c0dec(m): 9:34pm On Mar 03, 2006
be like say those boys don tire. be patient my man.
RomanceRe: Why Do Females First Pretend Not To Be Interested In A Relationship? by c0dec(m): 9:19pm On Mar 02, 2006
everything is a test because no woman ever wants to feel used.
ProgrammingRe: Java Has Failed! by c0dec(m): 9:07pm On Mar 02, 2006
nope. there'll only be one assignment operation anyway. i think they both have the same speed.
Art, Graphics & VideoRe: Want to Join Team of 3D Animators? by c0dec(m): 7:12am On Mar 02, 2006
qleyo:
O and it works very well with OpenGL.
it works, but it's a pain! not fun at all.
ProgrammingRe: An Introduction To Programming Using C by c0dec(m): 6:42am On Mar 02, 2006
uhm . . . you've got to say something about the gcc compiler since most c programmers are linux/unix based. =)

keep it up though. a female C programmer? i dey trip. grin
European Football (EPL, UEFA, La Liga)Re: Is Samuel Eto'o A Monkey? by c0dec(m): 2:26pm On Mar 01, 2006
he should've done what marco zoro did.
ProgrammingRe: OOP Design Question: Model-View-Controller Pattern by c0dec(op): 3:41pm On Feb 27, 2006
sbucareer:
In your UML above I can see the Model object compsiting the observer object. The Observer Object generalizing the view and Controller object. I can't figure out the design pattern you are employing in this project. If it was Observer pattern which I think it might well be, then observer has to be the controller because it updates the rest of the objects of the changes from the view and the model.

The Model is the model of your system and it encapsulates network, data, and the algometric semantics of your design.
I don't know much about the observer pattern but this is how i've got it working.

The Observer is just an interface inherited by view and controller. All observers must implement an update() method.
My controllers modifies the model, My view displays the model. My Model has a list of observers.
During the simulation, my model has a method which loops through all observers calling their update() methods. in the case of the view, it queries the model for data and in case of the controller it updates the model data.

so my question was should the part that handles all network communication be a server or client? but i've figured it can be any. if i run into any problems, i'll ask you guys again.

thanks
ProgrammingRe: OOP Design Question: Model-View-Controller Pattern by c0dec(op): 6:23pm On Feb 26, 2006
nope the model isn't my 3d model. the 3d models are with my view. the model holds the data the view needs to render the 3d models (just as the UML diagram above shows).

but i think i've already figured it out. the network part can either be view or controller. wherever i put it, it'll break the pattern but who cares.

ps: i'm avoiding 3rd party libraries as speed is of the essence so i'm getting as low-level as i possibly can.
Nairaland GeneralRe: Competition Or Frustration by c0dec(m): 12:22pm On Feb 26, 2006
your day will come
ProgrammingRe: OOP Design Question: Model-View-Controller Pattern by c0dec(op): 11:58am On Feb 26, 2006
sorry i should said something about the network architecture i'm using.

it's more or less a client-server architecture. an app can either be a client or server (obviously, there can be only one server). it's an architecture that's popular with most LAN games (like unreal tournament) when u can either be a server or client.

that said, the "network component" handles all IP data communication between server and client. (the server's model and it's observers).

ProgrammingOOP Design Question: Model-View-Controller Pattern by c0dec(op): 11:23am On Feb 26, 2006
i'm writing an app using the Model-View-Controller pattern and it's got my brain in knots.
It's a 3D simulation with a network mode. (Multiple views of the same data over a network). i figure MVC is the way to go. i've just finished writing a sockets class and about to implement the network component.

the question is where does the network component go? is it a view or a controller? from the way i see it, it could be either (at the moment i'm sticking with it being a view). some with experience would have a better answer.

thanks
Dating And Meet-up ZoneRe: Hello Any Lovely Man Over There? by c0dec(m): 10:35am On Feb 26, 2006
>

Forum GamesRe: When Was The Last Time You: by c0dec(m): 7:04am On Feb 25, 2006
Dating And Meet-up ZoneRe: My Friend Is In Love With Paddy Adenuga by c0dec(m): 7:43pm On Feb 23, 2006
tonisafe22:
@ codec , how can i locate bella on hi5, i m also a member and i m yet to come across her. maybe for lesb, u can't say
kenniy:
omo why are you giving us wrong info now!!! i searched bella on hi5, can't locate her, you know such wrong jist can cause problems ooh!! hen hen,
yes she is on hi5. i came across her once. she uses the alias "bella" (at least the last time i checked - october) u might need her email address to trace her. i'm no longer on hi5. the main picture in her profile looks different (better) from her in real life. i didn't even know she was the one, then i noticed the workplace on her profile stated "Globacom". i view her image gallery and behold it was an adenuga.

from what i remember she said something about just returning from boston (those who know her can clarify - i dont know sh*t, maybe she schooled there) and she clearly states she wants to meet old friends only. but that one no mean anything - try your luck. cool
Dating And Meet-up ZoneRe: My Friend Is In Love With Paddy Adenuga by c0dec(m): 12:04pm On Feb 23, 2006
you can find bella adenuga on hi5
PoliticsRe: Is Nigeria On The Verge Of Civil War? by c0dec(m): 11:25pm On Feb 22, 2006
system of a down
European Football (EPL, UEFA, La Liga)Re: Real Madrid vs Arsenal by c0dec(m): 1:03am On Feb 22, 2006
it's over 2 legs u know
EducationRe: I Have No Maths Skills - What Can I Do? by c0dec(m): 6:44pm On Feb 20, 2006
@dauda
it'll be easy for you to understand basic maths now than when u were younger. believe me. just pick up an elementary maths book you'll see.

@chrisd
have i got some questions for u . . . will let u know when i'm stuck.
Christianity EtcRe: Refuting Monotheism: God Does Not Exist by c0dec(m): 5:42am On Feb 20, 2006
i just found this in a book i'm studying grin

One day a group of eminent scientists got together and decided that Man had come a
long way and no longer needed God. So they picked one scientist to go and tell Him that
they were done with Him.
The scientist walked up to God and said, “God, we’ve decided that we no longer need
You. We’re to the point that we can clone people and do many miraculous things, so why
don’t You just retire?”
God listened very patiently to the man and then said, “Very well, but first, how about
this, let’s have a Man-making contest.”
To which the scientist replied, “Okay, great!”
But God added, “Now, we’re going to do this just like I did back in the old days with Adam.”
The scientist said, “Sure, no problem” and bent down and grabbed himself a handful of dirt.
God just looked at him and said, “No, no, no—You go get your own dirt!”
Forum GamesRe: Male Contest: Hottest Male In Nairaland by c0dec(m): 1:39am On Feb 20, 2006
pearldrops:
the winner gets a gift splash from me.
and what are the gifts?
Christianity EtcRe: Ouija Boards: Experiences and Opinions by c0dec(m): 4:20am On Feb 19, 2006
Autumn:
Seriously, get a life! If you ever to get the nerve to try out a Ouija Board it's one of the #1 rules! Do NOT ask when you will die, when someone you knwo will die, or how you will die. Pulease. So far, reading this who topic is patheitc, you all sound like you what, 10-14 maybe, possibly younger undecided Little kids shouldn't even be thinking of toughing a Ouija Board, their too immature and do not know what thir doing. If you ever decide you want to play with one you NEED a protection circle, don't be stupid because if you do NOT have one up you will have unwanted/evil guests. With a cirlce you are completly protected by the Gods and/or Goddess's, the four elemests, and the watchtowers.

Ouija Boards are serious and yes, you can indeed contact deceased relatives, I have. I just actually found out that my father dies 3 years ago. I've talked to my great grandfather and his son -- my grandfather, aswell as talked my my deceased brother.
Ouija boards are not something to mess around with, you need to have a calm, clear and open mind before doing anythign with one and you have to have your emotions under controll, even with a circle up you can lure evil/unwanted guests into the circle if your emotions are not under control, you could very well have a spirit; nice or not, take over your body. That is not something you would want to happen.

Take my advice, if you ever, ever want to fiddle around with something are serious as a Ouija Board; Take it seriously. it is not a toy!

Autumn
you sef need get life. u spent like 3 paragraphs saying the same thing. why are u so serious? chill abeg!

FYI, that line was from a song by bone thugs.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 (of 38 pages)