₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,331 members, 8,449,794 topics. Date: Wednesday, 22 July 2026 at 11:03 AM

Toggle theme

Fayimora's Posts

Nairaland ForumFayimora's ProfileFayimora's Posts

1 2 3 4 5 6 7 8 ... 36 37 38 39 40 41 42 (of 42 pages)

Tech JobsRe: School Management Software by Fayimora(m): 10:50pm On May 14, 2011
Still waiting,
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 10:42pm On May 14, 2011
csharpjava:
I commend you for your effort. Though I have not had the time to try out your software yet but when I do, I will check it for accessibility and usability, nowadays for a software to be very successful it has to undergo these accessibility and usability checks.

You can find out more at: http://www.usabilityhome.com
Way to goooo,  Now we are talking,  nice one @csharp. Tho am not a fan of the link, sad
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 10:38pm On May 14, 2011
lmaoo
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 10:13pm On May 14, 2011
segsalerty:
I posted smth abt an application , no one is interested in what its about or whts it , all they pop-on to start saying is about a trillion dollars SDK and managing my free timehuh huh

So, am just confused ,
anywayz, thts all i ve to say
Was wondering aswell. Why da heck is the discussion elsewhere?

[quote author=dell_net link=topic=662358.msg8319957#msg8319957 date=1305388609]I believe you use java to develop your apps, right?[/quote]Does it really matter?? The app is in what developers call beta stage AKA public testing.


What everyone should be talking about is the app. What are the drawbacks. What bugs have you come across. Things like this,
ProgrammingRe: Java Cafe by Fayimora(m): 10:10pm On May 14, 2011
Do you want it to move gradually?I mean you see the way it moves or you just want it to disappear and reappear somewhere else,
Tech JobsRe: School Management Software by Fayimora(m): 10:09pm On May 14, 2011
Well doesnt really metter to me but yeah go on send it. Depends in what lang it was developed in but at least send the main app itself first
Nairaland GeneralRe: The Programming Section Of Nl Is Now Bloody Worthless by Fayimora(m): 8:17am On May 14, 2011
[quote author=trae_z link=topic=665360.msg8317628#msg8317628 date=1305353789]seun what you should do is get additional moderators, what Mr Barzini said is true, time was when job section was great. that went down years ago.

now politics is getting dirtier people cursing each other out. please get a strong love-vendor hand. ban people temporarily who dont know how to hold healthy conversations. and work on your spam stuff, too many are sliping through.

also consider banning spammers for 1 week, that will stem things

the difference between cybereagels and ghanaweb is the discipline enforced my moderators. cybereagles rocks!

please get more moderators!!!!!!!!!!!!!!!!!![/quote]said that
Nairaland GeneralRe: The Programming Section Of Nl Is Now Bloody Worthless by Fayimora(m): 3:29am On May 14, 2011
seems hopeless to me kinda. But making posts strict Seun would be a very good start. Just like the examples above, such posts should be deleted or moved and then the OP would be given a last chance after which they would be deleted. Of course its just a primary measure but thats what i do for about 5 sites i mod for.

Apart from helping people with problems, doing a site clean up is also necessary.

Good Luck
Tech JobsRe: School Management Software by Fayimora(m): 1:40am On May 14, 2011
YEah sure, fayimora@hotmail.co.uk Would be waiting,
Tech JobsRe: School Management Software by Fayimora(m): 8:04pm On May 13, 2011
no pixs or vids showing the soft??
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 4:28pm On May 11, 2011
[quote author=dell_net link=topic=662358.msg8298658#msg8298658 date=1305116439]The bait got me a coldfish, the thread is still on track. It seems the guy has lots of free time and could be put to use.[/quote]Put to usehuh Wow!!!
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 12:33am On May 10, 2011
Lmaoo ok i get now.
ProgrammingRe: You Will Surely Want To See This by Fayimora(m): 11:47pm On May 09, 2011
segsalerty:
cry cry so sad that this came from your mouth !
Well, anywayz, u re not the first person to introduce me to this , i just havent found interest in it! grin
And, mind u, i dnt do trial and error, am not a Mechanic shocked
hahahahhahahahaha @Mechanic, You talking about the movie or wah?
ProgrammingRe: Help On Java by Fayimora(m): 6:58pm On May 08, 2011
Basically what you need to really understand is casting. Whether down or up, its still casting. So am going to explain casting.

First, you must understand, that by casting you are not actually changing the object itself, you are just labeling it differently. The main purpose of casting is Polymorphism. The ability to re-use objects with different instances.

Take a look at this picture;
https://img402.imageshack.us/img402/999/updownh.png

Now say you have this;

    Cat theCat = new Cat();
    System.out.println(theCat);
    Mammal m = theCat; // upcasting
    System.out.println(m);


Now The object i could have created is

Mammal m = new Mammal();


But i want to be able to use an instance of cat, so what I do is cast the object reference of Mammal which is m to hold an instance of Cat class.

Thats is what I have done above. If you are familiar with polymorphism, then its the same thing.


    Cat theCat = new Cat();
    System.out.println(theCat);
    Mammal m = theCat; // upcasting
    System.out.println(m);

This can also be written as

    Mammal m = new Cat();
    System.out.println(m);


Upcasting is normally done automatically but downcasting must be done manually.

An example of downcasting is;

    Cat c1 = new Cat();
    Animal a = c1; //upcasting to Animal
    if(a instanceof Cat){ // testing if the Animal is a Cat
        System.out.println("It's a Cat! Now i can safely downcast it to a Cat, without a fear of failure."wink;       
        Cat c2 = (Cat)a;



Now you have to note that thee is a criterion for casting. This s because a ClassCastException would be thrown if  the class you are trying to cast is not an instanceof(more or less a subclass) the other class. Sorry if you don't understand. But you would understand better if you put it into practice.

You should ask, is Cat a Mammal? Yes, it is - that means, it can be casted.
Is Mammal a Cat? No it isn't - it cannot be casted. So yeah thats where inheritance comes into play. They must have tht is-a/an relationship.

Be happy to answer any further questions.
Good Luck
ProgrammingRe: Please Read by Fayimora(op): 2:40pm On May 08, 2011
[quote author=Number_One link=topic=648942.msg8278922#msg8278922 date=1304846961]I can't believe I got into this argument in the first place. It's futile. Everyone knows that its better to teach a man to fish than to feed him with fish.
Everyone except csharpjava.[/quote]Yeah i agree. I ain't gonna say anything again because of 1 person
ProgrammingRe: Please Read by Fayimora(op): 6:41am On May 08, 2011
csharpjava:
Number_OneWho do you blame, HALF BAKED graduates or HALF BAKED lectures?

You lack the exposure to what a computer science degree course should really be like, with the right lecturers and resources no one will come here asking for help.

You cannot teach someone programming with pseudo codes and algorithms without first showing them the codes, you guys like doing your things the opposite way so that people can worship you.
with the right lecturers and resources no one will come here asking for help.
I disagree 100% with you. Even with my level, I still seek help. My department has a forum for each module and everyone needs help in one way or the other. BUT, if someone want's to learn a language, that language obviously has a documentation and also, a tutorial. There are too many books on earth that can teach you that language. If you want to learn and am just feeding you with code then you are going to be ABSOLUTE rubbish. You keep going on and on about pseudo codes. I ddnt say you should ALWAYS give that. I just used it as an example.
I don't think you can teach someone a language on this forum, rather you give the person sources to learn and then AID not solve when things get though.

I have received a couple of emails(and more still keep coming) from people from this forum wanting me to teach them programming. Now of course i can decide to give them codes, blah blah blah so what? Instead I gave them books to use, links to use and so on. If I use your method, they would only fix a problem when am present. I give you a code that uses a loop to print out numbers from one to 100. If someone asks you to do it in the reverse order what do you do?? You just get bloody STUCK. Why? because i just gave you code that does it from 1-100 without letting you think of how you can do it. Syntax is one thing but the main thing is the ability to come up with a solution, an ALGORITHM. Now the next thing is to implement this algorithm. So whats next? you dont know how to do something over and over again(the syntax), fine!!. I'll give you a hint. What is it? Look up loops on the java tutorials(assume am using java).

Now I have allowed he/she to look up loops him/herself. This person is going to understand the concept of loops and would be able to play with it in anyway. I like the way "2muchlogic" and "segsalerty" fully understand my points. Dunno why you have refused to. One thing you need to understand is, I moderate 5 forums out of about 12 which I am a full member of. This is the only forum amongst others where this is practiced.

In one way or the other everyone loves free things but you need to understand 1 thing. Nothing in life is free!!!!!!!


you guys like doing your things the opposite way so that people can worship you.
HUHhuh??
ProgrammingRe: Help On Java by Fayimora(m): 8:08pm On May 07, 2011
Olamilec:
@Fayimora Thanks for the reply, i am very greatful to your kind gesture. My address is [removed]
For the ebook, i will like you to send me anything about java, how i can use it to develop application. And the one that i can be using to practice like project base problem solving in the perspective of java. My email is olamilec@gmail.com i will be greatful if i can get the ebook email to my mail box asap. Thank you very much and God will also help you in time of your need.
Sorry for the late reply,  Ddnt realise you have replied my previous post. please send me an [email=mailto:fayimora@hotmail.co.uk]email[/email] and i would reply with significant materials to get you started. Also please state the spec of the system you would mostly be using so i can add additional materials if needed.

Also I would advise you take off your details(home address) from your post

Fayimora
ProgrammingRe: Please Read by Fayimora(op): 8:51pm On May 06, 2011
csharpjava:
Writing codes is no big deal, I don't see why people are not willing to give others the code they need to help them with their programming. All the coding for C# and VB.Net  APIs are available for anyone to see.

Those coming here to say they will not give codes to others, should know that they have not created any programming language of their own and the coding they don't want to give to others has already been written by those who created the programming language.

If you feel you know how to write codes very well then you should go and develop your own programming language and then don't give codes to anyone trying to learn the language you have created and just tell them to use your pseudo code and algorithms.
Man, cant you see that you are the only one that doesn't even understand what am talking abouthuh? You are talking off point, Completely out of what I am talking about, Read my post and replies and make sure you understand what exactly am talking about.

Just a tip, am not saying hide codes, neither am i saying dont help nor just give pseudo-code/algorithms. If hasn't learnt a language then fine. That's TOTALLY different.

You always just go into ur own point of view which is never close to the subject.

Just read and understand what am talking about and don't just mis-quote what pple say. Also, why the indirect speeches?
ProgrammingRe: Help On Java by Fayimora(m): 1:47pm On May 05, 2011
Your choice man!
ProgrammingRe: Help On Java by Fayimora(m): 10:36pm On May 04, 2011
Man go to bed, lolzz
Tech JobsRe: Need An Event Booking Website Urgently by Fayimora(m): 10:06pm On May 04, 2011
dazz4me:
I will do it free for you, give me fuel 4 my gen then d job is done : dazz4real2000@yahoo.com
Lmaoo like seriously??
ProgrammingRe: Help On Java by Fayimora(m): 10:05pm On May 04, 2011
Dolemite:
Lol, Fayi you have no idea. . . grin
Bout?
ProgrammingRe: Help On Java by Fayimora(m): 8:55pm On May 04, 2011
Just a few errors, Can you state what exactly you wanna do?

The only errors you have are

in = new BufferedReader(new InputStreamReader(System.in)) //Notice the change?? "System.in" not io

dig[0] = input.substring(i , i+1); //you missed a semi-colon here

Those are basically the only errors.

So now what do you wanna do? Fill up an array with something and print it out?
ProgrammingRe: Please Read by Fayimora(op): 8:18pm On May 04, 2011
Lolzz thats a beter way of saying it. Thanks for that, I find it too easy and boring. To be honest because of the fact that there is c++, I just developed a stupid hatred for c and c# so I don't use them. Up to a certain level I know c++. As for Objective-C, have developed 2 iphone apps(not alone though) using Objective-C. I only mentioned the languages I have gone really far with.

Like your username. Dats a very wonderful quality of a programmer wink
ProgrammingRe: Help On Java by Fayimora(m): 8:09pm On May 04, 2011
Olamilec:
@Fayimora: please i read your post and i will like you to help me get some different used java books and even a self teach cd rom, i will send you the neccessary money you may require to buy and to send it, please i must know this java by fire by force cos am dying to know how to develop application. I will love to read your positive reply.
Ok cool. I could buy a very good one for you, you dnt have to pay me. I am currently writing exams therefore very busy.  Just [email=fayimora@hotmail.co.uk]mail[/email] me your address and when am free would get you one or two.

In the mean time, if you want e-books then i have over 700 of them and not just in Java alone. I could send some to you if you tell me how you want them. I mean either by email or upload and download.


Java is good and really improving speedily. I would advice you keep your passion for it and enjoy what it has t offer. Also, when learning Java don't get lot into its wonderful abilities/features but remember that you are lerning how to program and not how to write Java code.


Good Luck.
ProgrammingRe: Help On Java by Fayimora(m): 8:02pm On May 04, 2011
csharpjava:
Fayimora

Programming is one of the few professions where programmers are very selfish in helping those that are learning, with coding. I'm sure you cannot work in an agile environment, in which pair programming is a must (an XP development technique used by agile methodology) in this type of environment you are not allowed to hide your codes.

You start your programming career as a trainee and you are trained by advanced programmers, no amount of books you read can make you a very good programmer unless you see the way other programmers have written their codes.

This is not a forum for those doing their PHD, so stop asking those asking for help here to go and read books, they won't come here if they can find all the answers they want in books.
Funny you. I ain't doing a Phd but would someday. If you really want to know then this is it. I am 17yrs old and just finished my first year. Am british by birth but a nigerian. Am not saying that you shouldn't post codes but hey, allow whoever is in question give it a try. The way i normally explain things are;
You ask a question, i give you a pseudo code. You try it until you get stuck. You come back with your code and i tell you where you have gone wrong and tell you what to do again.

It goes on in that loop until you et it. When you learn to think for yourself, then you have the tendencies to solve any problem no matter how large it is.

Now when he/she finish the code(Completely or to an acceptable level), then I give you my code which would just be another way of doing what you have already done.

Dolemite please dnt take ma next few sentences as an offence.

She said how can i put the first 2 classes into a gui!!!!!!!!! huhhuhhuhhuh?


That statement alone shows that she doesn't even understand what a GUI is. Now you have given code to her. What happens? It runs and does something. Ok cool. Now another assignment comes up and requires a GUI,  The rest is obvious. Because she still hasn't  understood what a gui is, she would post the same problem here. PLease help me with a gui.

She has an assignment thats due. OK cool help her but you obviously know that you ain't helping her. I can ask her to change something in that gui now (assuming I gave her the work) and when she get an error she won't be able to handle it. Why? because she doesn't understand the concept. Everything builds up around understanding the concept,

Anyways, this is the only forum out of about 12 which am currently in that does this. Seems to me like everyone just "wants it to work" without understanding what he/she is doing.

I however would't speak about this anymore,
Tech JobsRe: How To Program Mtn Sims To Make And Receive Free Mtn To Mtn Calls by Fayimora(m): 2:10am On May 04, 2011
HAhahaha mehn this is funny
ProgrammingRe: Help On Java by Fayimora(m): 2:06am On May 04, 2011
ur choice girl/guy,
ProgrammingRe: Help On Java by Fayimora(m): 11:31pm On May 03, 2011
I just knew you wouldn't understand my point. IF YOU HAD, You wont have to ask for stuffs like this.  C'mmon don't you think you are better than this? Asking how to implement 2 classes into a GUI. To be honest that question should come from someone dat programs because he/she has to. You should do you stuffs and i mean everything yourself. You shouldn't come here to learn new concepts. You should come here to learn new Algorithms, new ways of doing what you HAVE already done.

If you had read these documentations before hand, which I know you knew was available. You would be like the Almighty Segs you always want to answer your questions. In as much as I am a good programmer, I have met a few from this forum we shared IDEAS and realised new ways of doing things but NOT learning new concepts like GUI.

You need to understand my point here.

P.S: you male or female?
Tech JobsRe: Need An Event Booking Website Urgently by Fayimora(m): 11:19pm On May 03, 2011
Yeah use ma bro segs, He's good. He would do it for you in 8hrs? Am i right segs?
ProgrammingRe: Help On Java by Fayimora(m): 11:14pm On May 03, 2011
NO offence but seems to me like your using this thread to do your assignment or mini-project or whatever. There is something called the JAVA API. There is also something something called JAVA DOCUMENTATION. Lastly there is something called JAVA TUTORIALS.

Am not saying you don't work on your own but to be honest if you have taken time to look at these stuffs, you wont see yourself posting things like this. These are things you can learn generally there(java tutorials). You don't just learn by solving questions.Thats what makes you better but how do you learn? There is a BIG difference between learning and getting better. You learn to know something but practice to get better.

You have to go through the Official tutorials and books aswel. If you need any say so and I would make it available to you to download or if you are the type that prefer hard copy books. I can buy one for you here and send to you. Its not gonna cost me anything.

Going back to the subject, Also you need to read the documentation, not all at once but bit by bit until you finish it. Lastly, you have to get familiar with using API's.

There is a really big difference between a programmer and someone who knows how to write code. There is also a big difference between a Java programmer and a Programmer. Try to look at this over and over but what I have to tell you is that you really don't want to be someone who just knows how to write code nor do you want to be just a Java programmer

I just hope you see the GOOD in this post and nothing else.

Good Luck.

1 2 3 4 5 6 7 8 ... 36 37 38 39 40 41 42 (of 42 pages)