Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,159,010 members, 7,838,536 topics. Date: Friday, 24 May 2024 at 03:08 AM

SilverG33k's Posts

Nairaland Forum / SilverG33k's Profile / SilverG33k's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (of 9 pages)

Programming / Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 9:29pm On Nov 22, 2018
afonja112:
@silver, adonbiliv you are competing, na judge you suppose be o. What kind of troll are you sef?

Don't spoil market for me please.... I'm a learner grin
Programming / Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 8:19pm On Nov 22, 2018
Consult the gods.... grin

Me I'm patiently waiting.... Writing java codes here like my life depends on it.... Bring the roof down, let's code wink
Programming / Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 12:50pm On Nov 18, 2018
wink
Programming / Re: Let Learn Java Together by SilverG33k(m): 8:10pm On Nov 17, 2018
08104422662
Programming / Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 8:58pm On Nov 15, 2018
afonja112:
great - meanwhile, we still dey find sponsors. Odi egwu for this site o, someone should go and call @Seun now?

I am so prepared for this competition, bring it on... ��
Business / Re: ➜ ➜ ➜Currency/E-currency Market Deals➜ ➜ ➜ by SilverG33k(m): 9:51am On Nov 12, 2018
KALMA1:
is skrill still available ?
Sold thanks
Business / Re: ➜ ➜ ➜Currency/E-currency Market Deals➜ ➜ ➜ by SilverG33k(m): 10:58am On Nov 11, 2018
I want to sell $41skrill
Programming / Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 10:45am On Nov 11, 2018
Balogun Temitope Silver

Insane Native Android Developer

Male 21
Gaming / Re: Dream League 2018 Players Thread Here by SilverG33k(m): 6:16am On Sep 15, 2018
oweniwe:


Which division are you that they beat you 4-0? angry

Even first touch united/last game can't beat me.. wink

I use 5 -3-2 formation... Works just fine


I go beat you o tongue

I'm talking about dream league online tier 6 downward... I've beaten first touch united 11-1 before too, beat myself 7-0 on a normal ground... No biggie
Programming / Re: I Need Details Of Using Multiple Classes In A Java File. by SilverG33k(m): 6:57pm On Aug 16, 2018
kudaisi:
The first problem should be the WHY and not the HOW. HOW can easily be googled, so i wont be doing you justice by just telling you how (FYI the concept is called inner classes in Java). So allow me touch on the WHY before the HOW. PS: They don't need to be in the same file, it always better to separate your concerns in Java parlance.

That said, I'm going to try to be as practical as possible without dwelling too much about specifics. For more details i suggest you do an initial read on OOP and then more specifically OOP in java.

You know like they say in OOP "Every thing is an Object". Focus on your problem, if everything is an object, then all the types of account should be objects, meaning they will all require a class. All the classes have things in common apart from just being an type account. Lets say, for each of them:
- All account types are created by providing an initial amount.
- They should be able to carry out the following actions..say for example deposit and withdraw only.
- Also, each class should be able to keep track of their balance
- Finally, lets assume the only difference between checking and savings account is the limit on withdrawal. In checking account your minimum balance is 10k, so this needs to be ensure when opening the account and during withdrawal for checking accounts.

In OOP since they all have basic functionalities that they share, it implies that they should share a base class or an interface. But because we want to share some of the core functionalities (specifically codes) amongst all the account types we'll go for an abstract class(meaning the class cannot be instantiated on its own unless inherited)

So we''ll create a class called Account and implement everything the accounts have in common within and make the required functions that they carry out differently abstract:

abstract public class Account{

// **similarity - Each class should be able to keep track of their balance
// ** secondly we make it protected so child classes can access it and use it for withdrawal
Protected double balance

// **similarity - All account types are created by providing an initial amount. So we can implement it in the Base constructor.
public Account(float initialDeposit){
balance = initialDeposit;

}

// To satisfy Encapsulation in OOP we provide a getter to the account
// Notice how we've provided only a public getter and no setter
// we dont want people tampering with the balance from outside, so we
// keep it internal
public float getBalance(){
retrun this.balance;
}

// **similarity - The protocol for deposit is the same
// for that reason we implement it it the base class
public void deposit(float amount){

balance += amount
}

// This is specific to account types so we make it abstract:
// - First it ensures that all account types implement it
// - It allows all account types to implement them the way the want
abstract public void withdrawal(float amount);
}

I need some feedback, so I'm going to stop here for now. Just to make sure you understand so far. When I get a response I'll go further.

I swear I also need your number, mine is 08104422662
Programming / Re: Android App Developer Needed by SilverG33k(m): 6:47pm On Aug 16, 2018
Cyberdemonic:

30k Is enough to get everything running

30 gini? Bad developer spotted

Even backend server should go for 20k upward since he will be streaming lots of stuff abi u didn't consider bandwidth usage?

Bros... No vex me oh, I have an app I'm doing for a financial institution I for just take this easy job

1 Like

Programming / Re: Learn How To Create A Chat Forum Like Nairaland And Become A Multimillionaire by SilverG33k(m): 1:34pm On Jul 08, 2018
atulegwu08:
check out this site www.reactjavascripting..com
to get step by step guide on how to use react js to create a super clone chat forum like nairaland. also get cool react javascript tutorials that can help you create beautiful sites like paypal in minutes
wink wink wink

Lolzzz, minutes? Ni be only minutes, na years
Programming / Re: Which Programming Language Is Used For Android Applications? by SilverG33k(m): 1:28pm On Jul 08, 2018
rexben:
Java, C++, React Native, Kotlin, Flutter


You're one if the people that discouraged me when I wanted to start developing apps, chai, 5 languages and you didn't even explain one or give him a preferred language.... You're wicked lol



As for the OP, Google should be your friend at all time, anyways go learn Java, its the basics for android dev

1 Like

Programming / I Need An Android Developer As A Good Friend Or Mentor by SilverG33k(m): 1:20pm On Jul 08, 2018
Hi guys, sometimes I feel like I'm doing something's wrong when building android apps, I need someone who can assist me.

Mind you, I won't disturb you with too many questions or should I say too many stupid questions cuz me myself I ain't a newbie.

Please spare your time to add me on WhatsApp, 08104422662

Less I forget.... Just android studio devs, I don't do hybrid, i do native, thanks
Investment / Re: Best Penny Stocks To Buy In Nigeria Stock Market by SilverG33k(m): 6:09pm On May 14, 2018
See this broker oh.... I don't know much about stocks but as a 20yr old, I want to know everything about investments

Is penny stocks not pink sheet stocks or something like that?? Most penny stocks don't go up and the ones that goes up takes longer time....

If you want to sell stocks to people, be more convincing, no one will just give you their money for stocks they know nothing about, we are also too lazy to do some research too
Business / Re: CAC Is Frustrating Me- I Need Help by SilverG33k(m): 7:33am On May 11, 2018
Donald3d:

Business name==Enterprise

Hey introverted programmer Donald, lolzzz, sorry I called you that.... Let me help, make use of their public search portal on every name you want to submit, if that name exist, they may disapprove youe name..... use a unique name.

E.g Donaldo Services, DonaldTech Services e,t,c, its not compulsory you use Enterprise, but if you want, fine. Ask questions as much as you can oh, so you don't pay 10k twice like I did.

If the name is not unique, trust me, dem go disapprove you and NGN500 wastes away.
European Football (EPL, UEFA, La Liga) / Re: Leicester City Vs Arsenal (3 - 1) On 9th May 2018 by SilverG33k(m): 12:27am On May 10, 2018
xynerise:
Is this not this same Arsenal that won 5-0 some days ago?. grin


Arsenal is the king of inconsistency grin
If you watched the match where they won 5-0, you'll know the match was fixed, their opponents deliberately gave arsenal a perfect win
Investment / Re: Scam is everywhere, mmm by SilverG33k(m): 10:29pm On May 05, 2018
Postboiswag:


And you are able to withdraw the funds
Yap, sure
Investment / Re: Scam is everywhere, mmm by SilverG33k(m): 10:11am On May 05, 2018
Postboiswag:
Please how real is this??

Quite real, just don't get too emotional when playing with the real account, its somehow harder than the demo account.

I've only made very little money from it...
Computers / Re: "I Am Not Cooking Your Balls" - Laptops Protest by SilverG33k(m): 5:31am On May 01, 2018
I don't place my PC on my laps at all, I work long hours on my PC and placing it on my laps is not convenient
Sports / Re: 10 Big And Famous Clubs That Has Never Won The Champions League by SilverG33k(m): 11:42am On Apr 28, 2018
For those that are interested just like me in clicking the link....
I've done the job for ya

OP, no vex biko, traffic will fall on you very soon



6. LAZIO
Popular Italian side, Lazio FC is a notably club with
promising young talents who style of footballing is
entertaining, they have featured in numerous
European competitions and has won quite a
number of titles but Lazio is yet to Lift the
Champions league title.



5. PSV
Indisputably Netherland's best performing Club for
some seasons now,PSV is a household name in
Dutch Football. They have won several of their
primitive titles and has made several Champions
league appearances but has never won the
Champions League unlike their fierce opponents,
Ajax Fc.



4. AS ROMA
One of Italy's finest, Roma has featured in a lots of
top European competitions and has won a lots of
local and International trophies but has never won
a UEFA Champions league trophy.



3.ARSENAL
The most consistent of England's top Four for 12
years now, Arsenal is one of England's big boys
club and has achieved quite an outstanding record
globally, winning lots of EPL titles,primitive and
International titles,played a Champions League
finals against Barca in 2006 and lost, Arsenal has
never won a Champions League title.



2. MANCHESTER CITY
Fantastically in form, beautifully blended with
amazing talents,blazing performance in each
match,always scoring and always dominating,
Manchester City has proven themselves to be
England's hottest club sie this season. They have
won quite a number of EPL titles and other
primitive cups but Manchester City are yet to Lift
the Champions League.



1. ATHLETICO MADRID
This team is undoubtedly one of the finest teams in
the world and the top 3 best club sides currently in
Spain. With a lots of potentials and talents,a highly
tactical coach and a disciplined team, Atletico
Madrid has never won the Champions league in
their entire history. They have won quite a number
of La liga titles and some other primitive cups but
never a champions league title.

1 Like

Investment / Re: If You Have Genuine And Reasonable Investment Idea - Post It Here by SilverG33k(m): 5:59am On Apr 25, 2018
zekepio:
what is the purpose of having a business idea when one can't fund it?

it's funny sha but I'm already giving up.
I think I've done my best as a teenager. The goal is now the ancient principle of "go to school, get good grades and get a good job."

Hmmm, it happens to almost everyone, can we talk? Topefunofficial@gmail.com
Investment / Re: Scam is everywhere, mmm by SilverG33k(m): 7:18am On Apr 19, 2018
0luwatope:


Boss, without you playing the demo account, you can't get a perfect winning strategy....

Mine own strategy is playing at 50% to 70% winning probability, it works all the time, but if your winning strategy is 90%, the pay will be very low and if village people allow you to lose, OYO!!

Stick with the 50% to 70% and don't put much money on it

Thanks gee, how fast is their payment, ion joke with my money oh grin
Business / Re: ➜ ➜ ➜Currency/E-currency Market Deals➜ ➜ ➜ by SilverG33k(m): 12:58pm On Apr 18, 2018
onatisi:


some see it as a way of escaping early detection of their scamming intent

1)some see it as a waste of time
2)some see it as a way of escaping early detection of their scamming intent

so the choice is left to the other party to either play safe or play stupid


Aii, how many escrow in guesses have u used? What's the best escrow service people usually use?
Business / Re: ➜ ➜ ➜Currency/E-currency Market Deals➜ ➜ ➜ by SilverG33k(m): 8:04am On Apr 18, 2018
I need someone to give me reasons why some people don't like using escrow....
I'm quite new to stuffs like this hence my question.
Celebrities / Re: Wizkid And Femi Kuti In Adorable Photo by SilverG33k(m): 10:57am On Apr 16, 2018
Bezos:
Please people help me.

I am a fourth year student of FUTO, exams just started now, and while my
mates are inside writing the exams, I am outside because of no school fees.
This is the first paper, and it will likely continue that way.
I don't ave anyone to call, as I have tried all I could. I can't drop out or have
an extra year.

Please help me. The fees is #45,340. Please kind help me.
Anything will go a long way in helping me.

Acct details.
Diamond Bank
0024727225
Emmanuel
Thank you and God bless you.

Let me see your recent result ASAP, send it to my mail silverg33k [at] gmail [dot] com

(1) (2) (3) (4) (5) (6) (7) (8) (9) (of 9 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 40
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.