₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,276 members, 8,449,534 topics. Date: Tuesday, 21 July 2026 at 11:20 PM

Toggle theme

Fayimora's Posts

Nairaland ForumFayimora's ProfileFayimora's Posts

1 2 3 4 5 6 7 8 ... 21 22 23 24 25 26 27 28 29 (of 42 pages)

ProgrammingRe: New Cool: Javascript Css Selector "yapinator" Faster Than Sizzle: Peppy: Etc by Fayimora(m): 11:32pm On Jul 24, 2011
Oh ok thats acceptable, lol Tis should be of help. I learn markdown using it --> http://daringfireball.net/projects/markdown/syntax
ProgrammingRe: New Cool: Javascript Css Selector "yapinator" Faster Than Sizzle: Peppy: Etc by Fayimora(m): 11:21pm On Jul 24, 2011
Yeah I just followed the link on your fb page.

An advise: You github repo doesn't look convincing enough to be trusted. I aint saing it isint, as a matter of fact i have forked it and am watching it. However you really need a good 'readme' preferable in markdown cheesy. Your account is `organisational` and not private so give a breakdown of the project as markdown in your readme so its looks completely professional.
ProgrammingRe: Functional Programming For Java Programmer Scala Or Clojure? by Fayimora(m): 11:15pm On Jul 24, 2011
@megaplaza ok cool. Didn't know that you still base on a lang but learn others. I have read part of that book, i just never finish it. By the way you owe me an android app, hmm I wont forget that.
Tech JobsRe: Computer Science Project Topic (help Need) by Fayimora(m): 8:49pm On Jul 24, 2011
Hmm to be honest its actually getting freaking annoying. I can give you a list of 5,000 projects right now then what? You then find someone to implement it for you. Then what? You graduate without any reasonable skills.

My advise is for you to think of somethng you want to do. Something that flows in your blood. Trust me you are better off that way. You dont have to contact someone personally and paying for something you can equally get paid for.lol.

If you see my advise as useful then please do as i say and lets know. If you see it as useless then you can go on contacting hungry humans,
ProgrammingRe: New Cool: Javascript Css Selector "yapinator" Faster Than Sizzle: Peppy: Etc by Fayimora(m): 3:38am On Jul 24, 2011
Correct your github link
Tech JobsRe: As A Final Year Student In Nd2 Computer, I Am Toa To Project: Topic: Design And Implementation Of Da by Fayimora(m): 8:40pm On Jul 23, 2011
Ermm your question is vague, Break it down and whats a `Da`?
ProgrammingRe: Functional Programming For Java Programmer Scala Or Clojure? by Fayimora(m): 8:23pm On Jul 23, 2011
Seun:
It's primarily a better Java.
hmmmm
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 8:21pm On Jul 23, 2011
lol if , huh I was able to get on your case fast enough, your posts aren't restored yet tho.
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 7:02pm On Jul 23, 2011
Cool, I almost got lost on the application, lol
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 5:31pm On Jul 23, 2011
pls wat dd d 'babcock guys' do?
ProgrammingRe: Programming Challenge. by Fayimora(m): 12:38pm On Jul 23, 2011
I mean he has the code already so no point doing it again
ProgrammingRe: Programming Challenge. by Fayimora(m): 12:26pm On Jul 23, 2011
Well omo_to_dun has that already, lol No point re-doing it
ProgrammingRe: Helo House,how Can I Bundle A Database File Into My Desktop Applicatn by Fayimora(m): 11:19am On Jul 23, 2011
Danyl:
//declaring the Textfields
JTextField f1,f2,f3,f4,f5,f6,f7,f8,f9,f0,f11,f12,f13,f14,f15,f16;
JPasswordField pasw;
//declaing the textareas
JTextArea a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16;

//initializing textfields
f1=new JTextField(20);
f2=new JTextField(20);
f3=new JTextField(20);
f4=new JTextField(20);
f5=new JTextField(20);
f6=new JTextField(20);
f7=new JTextField(20);
f8=new JTextField(20);
f9=new JTextField(20);
f0=new JTextField(20);
f11=new JTextField(20);
f12=new JTextField(20);
f13=new JTextField(20);
f14=new JTextField(20);
f15=new JTextField(20);
f16=new JTextField(20);

pasw=new JPasswordField(6);

//initializing text areas
a1=new JTextArea(6,10);

a2=new JTextArea(6,10);
a=new JTextArea(6,10);
a3=new JTextArea(6,10);
a4=new JTextArea(6,10);
a5=new JTextArea(6,10);
a6=new JTextArea(6,10);
a7=new JTextArea(6,10);
a8=new JTextArea(6,10);
a9=new JTextArea(6,10);
a10=new JTextArea(6,10);
a11=new JTextArea(6,10);
a12=new JTextArea(6,10);
a13=new JTextArea(6,10);
a14=new JTextArea(6,10);
a15=new JTextArea(6,10);
a16=new JTextArea(6,10);
Wow didn't you get tired of typing the same thing over and over? Just create an array of type JTextField/JTextArea and use a for loop to initialise them all
ProgrammingRe: Helo House,how Can I Bundle A Database File Into My Desktop Applicatn by Fayimora(m): 11:15am On Jul 23, 2011
Ok it looks ok but very redundant. You have some things here that you shouldn't.

1 --> You dont want someone to be able to bypass your login for without actually login in. So set undecorated to true. Flowlayout?? Naaa not good enough, set your layout to GridLayout(3,2)


2 --> You are using some "almost fully deprecated" stuff

Hashtable hash;
Vector v;


Gone are the days of those. You need to us them generically.
Hashtable<T> hash = new Hashtable<T>();


3 --> I really dont see the use of those data-structures, If you have your username and passwords in an XML file or database, just check if they exist rather than loading them first, saves time.

4 --> When you successfully login, how do you load up details of the logged in user or whatever? You need to pss the username and password via the constructor of PatManager or take in a different stuff and pass, and then you can use it to pull out data.

The way i would have done it is:
-> a successful login
-> pass username and password to a utility called `LogedInuser` or anything better. This class would pull all necessary data from the database/xml/txt/yaml and load them into variables. This is helpful because I don't have to waste time loading stuff like that again during the actual program's runtime
ProgrammingRe: Helo House,how Can I Bundle A Database File Into My Desktop Applicatn by Fayimora(m): 10:57am On Jul 23, 2011
Hmm woud take a look at it, yes i can give you a snippet but unfortunately i have removed he JDK7 from my system, When its officially out fo download I would rewrite it and pass it, by the way why do you anna use jdk7? I can still write it tho and then you test it yasef
ProgrammingRe: Programming Challenge. by Fayimora(m): 10:42am On Jul 23, 2011
(0, 350).each do |x| 
    puts x if((x%7)==0)
end
ProgrammingRe: Functional Programming For Java Programmer Scala Or Clojure? by Fayimora(m): 10:33am On Jul 23, 2011
You are still tryna learn everything,  A language that doesn't change the way you think is not wort knowing. I would advice you stick to something for now nd not trying to learn everything
ProgrammingRe: Translator Software by Fayimora(m): 1:19am On Jul 23, 2011
Google translator should be fine wink
ProgrammingRe: Helo House,how Can I Bundle A Database File Into My Desktop Applicatn by Fayimora(m): 1:18am On Jul 23, 2011
Hey man sorry, finally got to this thread, too many threads to look at combined with other stuffs, Have you finished ur login form?
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 11:11pm On Jul 22, 2011
Hmmm yeah am not too conversant with the CMS or joomla thingy, I normally write ma code from scratch.
ProgrammingRe: After Writting The Source Codes,how Do I Make It An Application Software! by Fayimora(m): 11:05pm On Jul 22, 2011
And what language is your source in? Are you making use of any IDE's if no then what system u using? Mac, Linux or Windows?
ProgrammingRe: The Importance Of Software Testing And Not Just Software Programming by Fayimora(m): 3:59am On Jul 22, 2011
HAhhahahhahah grin grin grin grin cheesy cheesy cheesy cheesy
ProgrammingRe: Functional Programming For Java Programmer Scala Or Clojure? by Fayimora(m): 2:33am On Jul 22, 2011
Cool, good for you, So you into software development or web development?
ProgrammingRe: Functional Programming For Java Programmer Scala Or Clojure? by Fayimora(m): 1:24am On Jul 22, 2011
Hahhaa you sound frustrated,  Something like, "Damn just too many languages and too many people saying different things". Well, to be honest the more languages you know the better BUT is it really worth trying to know them all? Before going into another language, make sure you are at least an intermediate in your current lang. Trust me its not worth being a petty programmer. You dnt wanna be someone who knows how to program in 10 core languages but cant develop a tangible application in 2 of them. cheesy

The easiest way I can define Functional programming is "A way of programming, ignoring either state or behaviour". Just like the name functional, it is programmed like mathematical functions. Cant say more.lol

Is it worth learning a functional language like Haskell? Hmmm. I would give you a few qualities of functional programming that I know.
1 - They are very very terse. Straight to the point.
2 - Very safe for multithreading
3 - It aint gat side effects
4 - You can easily test them

and some more i cant remember ,  I really don't know about the disadvantages or fallbacks cause I don't even care.lol. And just so you know, you can achieve a functional style in java too wink

Answering you question with regards to where it can be applied, I don't see people developing software with full fleshed functional languages like Haskell, rather they are used for calculations and the likes. So kinda like writing 500 lines of code to help with some funky calculations you do everyday as a clerk wink

Some students in ma school use it to improve their problem solving skill. Just like saying develop a bank application in one file without objects(Java) cheesy Nw dats some task. So they take a very big mathematical problem and rather than solving it easily with an advanced lang, they go functional(Dats madness for me but its fun)

Finally, I can see you are trying to learn as much languages as you can and it has got you wondering if programming is difficult. Well, you made it difficult for yaself. You don't have to listen to what am about to say next because am just a student but trust me I know what am saying. DON"T learn a language just because you want to know it or because a friend knows it. There are soo many other things you are yet to see in the language you already know. If you have to learn a new language, make sure it serves a purpose that no other language which you already know serves.

cheesy
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 11:44pm On Jul 21, 2011
Hmmm all those stuff are for people who know HTML and maybe a lil bit of css and not actually programmers, lol but seriously wats the point of calling a site urs when you cant even code  it. I probably would leave wordpress outta it. For instance an currently developing a site built into wordpress cheesy,  Yeah am taking advantage of their admin console so I dnt have to create my own dashboard like i always do.

And finally, when exactly are we going to face other things apart from always talking about NL? No-one ever gets tired innit?
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 3:51pm On Jul 21, 2011
Haha ur on it man, You can put ma name under project manager nd remove oyewale, also refine the list, remove inactive pple,
ProgrammingRe: Creating A New Face For Nl by Fayimora(m): 3:24pm On Jul 21, 2011
Please what is this CMS thingy yall talking about?
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 3:11pm On Jul 21, 2011
Yeah i can create a mailing list, i have the resources to do so but its not worth it,  We aint more than 3 working here so lets just play simple for now, Pls change ma emil to "support at fayimora.com" and "info at fayimora.com". Also, shift ma name from programmers. They are already too much,
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 9:34am On Jul 21, 2011
thanks mobinga
ProgrammingRe: Computer Science by Fayimora(m): 12:41am On Jul 21, 2011
Yaaay Interaction design is in m syllabus, The previous 3rd years had to design a twitter app dats more user friendly then twitter and some extra stuff too, Have you taken it, would you recommend i add it to ma modules?
ProgrammingRe: Help With This Regular Expression: by Fayimora(op): 12:39am On Jul 21, 2011
Hahahha naa I know it aint no virus. Just dnt have time for excel and i usually think its not opening with the right program. Just checked it out now. Yeah in terms of giving someone to read then maybe ur CSV is better but structurally and from a programming pont of view, XML should be better.
ProgrammingRe: Help With This Regular Expression: by Fayimora(op): 12:16am On Jul 21, 2011
Ok I think its hight time i asked. What exactly is this csv of a thing? Anytime I open a csv file it starts opening m excel so i just close it right away, What exactly is it? Also, i prefer using XML cheesy

1 2 3 4 5 6 7 8 ... 21 22 23 24 25 26 27 28 29 (of 42 pages)