₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,293 members, 8,449,601 topics. Date: Wednesday, 22 July 2026 at 06:03 AM

Toggle theme

Fayimora's Posts

Nairaland ForumFayimora's ProfileFayimora's Posts

1 2 3 4 5 6 7 8 ... 27 28 29 30 31 32 33 34 35 (of 42 pages)

ProgrammingRe: Programming Projects (individual) by Fayimora(op): 11:35pm On Jul 06, 2011
xterra2:
Hey please i want to see the projects you did,
Please drop an email : chapnaija11@yahoo.com
Sorry I can't do that. If you wnt to learn then pick up one and when you are done i can show you mine, cheesy

asskush:
My web pages are not all that attractive like many i see on the net and that is the reason i'm contemplating on learning a little of dreamweaver and flash. What would you advise?
Did you learn jsp alone or with jsf. Am a newbie in servlets, Am still on a reading level, i.e am still reading documentations and stuff. What web pages exactly are you talking about?
SportsNigeria Vs Ghana by Fayimora(op): 10:27pm On Jul 06, 2011
There is a match thats meant to take place at watford her ein the Uk. Does anyone know the date? Its a Nigeria - Ghana match Probably a friendly or something
ProgrammingRe: Coding Challenge 3: Sum Of Primes by Fayimora(op): 10:19pm On Jul 06, 2011
hahaha you dont want to kno mine, How did you compute that time? UNIX feature or C
ProgrammingRe: Programming Projects (individual) by Fayimora(op): 10:18pm On Jul 06, 2011
Your good then, lol you just need some projects to buckle you up. You have already applied to join the project so yeah welcome.
ProgrammingRe: I Just Finished A Building Animation,i Need Someone To Help With D After Effects by Fayimora(m): 9:21pm On Jul 06, 2011
Am a newbie on after effects so depends on what you want;d
Tech JobsRe: Project by Fayimora(m): 9:16pm On Jul 06, 2011
Sorry no emails just post your problem here if you really need full support
ProgrammingRe: Coding Challenge 3: Sum Of Primes by Fayimora(op): 9:15pm On Jul 06, 2011
Yeah the answer is 142913828922

Here is my code:
class SumOfPrimes
{
public static void main(String[] args)
{
long num = 2000000;
long sum=0;

for(long i=2; i<=num; i++){
if(isPrime(i)){
sum+=i;
}
}
System.out.println(sum);
}

static boolean isPrime(long num)
{
for(long i=2; i<num; i++)
{
if((num%i)==0){
return false;
}
}
return true;
}
}


@Dell and omo_to_dun, how long did it take your code to compute this?
ProgrammingRe: Programming Projects (individual) by Fayimora(op): 9:10pm On Jul 06, 2011
What have you learnt so far?
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 9:08pm On Jul 06, 2011
asskush:
Hi ògá(fayimora), i'm a beginner on web development using java, and i'm really interested in such project under your tutillage. My e_mail is seun_alani@yahoo.com.  Thanks in advance.
Welcome, I could really use some beginners. We need people who are eager. We are not working via email but here so hold on for the list coming up. Before then, I need an assistant project manager. Requirement, you must understand whats going on and MUST be able to use GitHub effectively(Mobinga|SayoMarvel|omo_to_dun start warming up).

Danyl:
This is quite outstanding,
iam in for the project.
Am danyl and am opting for the programmer role.
I'll rather vote for the online voting system because is one of the most critical softwares we nid in nigeria.
And as regaqds the requirement i think interfacing the system with an oracle DB is goin stand out due to the security features of oracle db,more so the voting system can have the following requirement:
*take in users registration includin the biometrics
*check voters against their unique finger print when voting
*print out the records of votes on each party being vote for.(the party is not limited to political parties only)
*the system must be secured when its bn run online so i'll getting an SSL layer into the programme thus usn the "https" protocol for the transfer of files.
*the system will be able to list all likely voters within a particular region and dr photographs
*it'll also update the count of votes automatically
*if drs anyone with EJB skills can come in to provide the business logic that will handle the middle-tier of the system architecture & more so what kind of client are we using,a thin or thick client,a web portal or an online-based desktop application.
Anyone can add to my comments am open to critisms if any. My email is goldendanyx22@gmail.com
Unfortunately The Banking system won and we are already on it. How about you develop a full requirement for that and we wud both look into it and start something.
ProgrammingRe: Coding Challenge 1: Permutations by Fayimora(op): 6:26pm On Jul 06, 2011
No standard libraries

Here my code by the way:
import java.util.*;
class PermutationGenerator
{
private String word;

public static void main(String[] args)
{
PermutationGenerator generator = new PermutationGenerator("eat"wink;
ArrayList<String> permutations = generator.getPermutations();
for(String s: permutations)
{
System.out.println(s);
}
}

public PermutationGenerator(String word)
{
this.word = word;
}

public ArrayList<String> getPermutations()
{
ArrayList<String> permutations = new ArrayList<String>();

//base case for empty string
if(word.length() <= 1)
{
permutations.add(word);
return permutations;
}

for (int i=0; i<word.length(); i++)
{
//form simpler word by removing ith character
String shorterWord = word.substring(0,i) + word.substring(i+1);
//generate all permutations from the shorterword
PermutationGenerator shorterPermutationGenerator = new PermutationGenerator(shorterWord);
ArrayList<String> shorterWordPermutations = shorterPermutationGenerator.getPermutations();

//add the removed character to the front of each permutation of the simpler word
for(String s: shorterWordPermutations)
{
permutations.add(word.charAt(i)+s);
}
}
return permutations;
}
}


It programmed the OO way for reuse, grin
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 1:00pm On Jul 06, 2011
@Mobinga hahaha funny u, 

HMmm tell me am not already smelling failure. Please am waiting for your ideas!!!
ProgrammingRe: Who Would Teach Me Programming by Fayimora(m): 12:58pm On Jul 06, 2011
Obinnau:
programming is very difficult a
Lies. If you love what you are doing. I mean you appreciate it and not read it like is something you have to pass. Then you gat absolutely no problems. I look at programming as bilding my own world, i represent every problem i encounter in real life and i believe am doing good now.
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 11:43am On Jul 06, 2011
Seems the majority is going for the E_Banking soft. Thats a big one and we have to start if at all we want to finish it up. So we begin!

Since there are no designers, would help start with that. Going to bring up a simple UML for a software but before I can do that we need a requirement specification.  In other to get this we all have to list features we feel the software should have.

Am going to list the very basics to start the discussion.

Requirement
A bank software offers customers 'n' types of accounts. Each type of account provides its own interest rate. Each type of account has its own minimum balance. The system system is to provide a report feature that lists allt he accounts and the interest the have accrued during the current period. The system should also provide an auditor feature that when invoked, prints all accounts whose balance falls below the minimum required for that type of account. The system would also be able to add, delete and modify accounts(account num exclusive).

The system should be able to send emails to all bank customers(newsletter ish). The system should be able to keep admin log reports, i.e who used what software and who changed what.

For each account the system would record, personal details for the user like, name, address,  status, number and other bank details like account number, sort-code, current balance, interest rate. Also, the system should be able to deliver weekly, monthly, quarterly and annual bank statements.

As for the user's end, we are going to simulate an ATM. This would be used by the end users to access their accounts and withdraw cash.

END FOR NOW

Ok i think am stuck, kinda outta ideas. Sorry never worked in a bank or had anything to do with their system. So I would appreciate if you can add to what I have written above. Specifications would come later but for now, REQUIREMENTS please.
ProgrammingCoding Challenge 3: Sum Of Primes by Fayimora(op): 10:04am On Jul 06, 2011
Challenge
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.

Your task is to find the sum of all the primes below two million.

Time limit: nil

Goodluck,
ProgrammingCoding Challenge 2: Palindromes by Fayimora(op): 10:00am On Jul 06, 2011
Challenge
Your task is to write code that checks is a word is a palindrome.

So when given input
Madam i'm adam!
Your program should return true.
Hint: Ignore non-characters
Time limit: 1s

Goodluck
ProgrammingCoding Challenge 1: Permutations by Fayimora(op): 9:54am On Jul 06, 2011
Hey guys, am going to be dropping some nice coding challenges. You are free to and not to participate.

Challenge A
Your task is to write code that generates the permutations of a word.

So when given the word 'eat' as input, your program should return a list containing
eat
eta
aet
ate
tea
tae
as output.

Time Limit: 1s
Goodluck,
ProgrammingRe: 3 Futa Students Bag Award On Software Creation by Fayimora(m): 9:36am On Jul 06, 2011
Awesome! I just hope the population of Nigeria counts on the votes.
ProgrammingRe: Who Would Teach Me Programming by Fayimora(m): 9:26am On Jul 06, 2011
Need help with anything general?
removed

Need help with something to do with my stuff e.g my website ?
removed

EDIT: removed ma emails before they blows up with spam. Use the contact form on my site if you have to contact me. I wont reply to unnecessary emails so please dont waste your time sending me trash or trying to create a conversation.
ProgrammingRe: I Am New To Programming, What Are The Rudiments by Fayimora(m): 8:51pm On Jul 05, 2011
Dunno which is but i can say you should go for programming. CCNA can come later.
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 6:02pm On Jul 05, 2011
Hey and yall should vote for which software would be implemented above
ProgrammingRe: Who Would Teach Me Programming by Fayimora(m): 2:06pm On Jul 05, 2011
get a laptop, free your schedule and when you are FULLY ready, send me a private message,
ProgrammingRe: Asp.net/mssql Versus Php/mysql by Fayimora(m): 2:04pm On Jul 05, 2011
There are already too many discussions on this forum batting on which language is the best. This a post from 2007,why did you have to bring it out? Am sorry but am gonna have to lock this thread as this forum should be used for programming and not some language battles

[LOCKED]
ProgrammingRe: Is Anything Better Than The Netbeans Ide? by Fayimora(m): 2:02pm On Jul 05, 2011
One of the requirements for some jobs for CS i have seen is the ability to use emacs. They don't tell you but when they give you something to code in an interview, they give you emacs to use. Havent been involved but i have friends who regretted not ever trying emacs
ProgrammingRe: I Am New To Programming, What Are The Rudiments by Fayimora(m): 1:58pm On Jul 05, 2011
CCNA or programming
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 1:56pm On Jul 05, 2011
Yeah we all know that. The thing is, everyone wants to code so even a detailed explanation wouldn't do anything. The deadline is tomorrow and I would post the list of participants and their roles. Again, please do not apply if you are not going to be available.
ProgrammingRe: Who Would Teach Me Programming by Fayimora(m): 5:51am On Jul 05, 2011
If you are ready to learn Java I can help you but the main work is on you
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 2:49am On Jul 05, 2011
Hahaha yeah i expected that. Thats for filling up a gap, you would still have the opportunity to code. I personally would have loved to handle te coding but would have to fill up another gap.
ProgrammingRe: Community Project(strictly Java) by Fayimora(op): 12:02am On Jul 05, 2011
Seems everyone is running for programmer, no designers?

Designers -- They design the UML and stuff, doesn't mean you wont still code but you would mainly handle the design.

NOTE: Please DO NOT apply if you know you aren't going to be constant.
ProgrammingRe: Java 7 Lauches On 7/7 (7th July) by Fayimora(m): 4:20pm On Jul 04, 2011
Yope. Am watching the launch live. Who erlse is?
ProgrammingRe: Connecting To A Remote Database(jdbc) by Fayimora(op): 4:06pm On Jul 04, 2011
Ok i think thats just what i need, When you gonna be on chat so we can talk more or do ou have any documentation for this online?
ProgrammingRe: Connecting To A Remote Database(jdbc) by Fayimora(op): 3:37pm On Jul 04, 2011
Never used a proxy script and have never used the Java RMI before, ok so which do i go for now

1 2 3 4 5 6 7 8 ... 27 28 29 30 31 32 33 34 35 (of 42 pages)