|
Investment › I Want To Develop An App That Keeps Record Of Fraudsters For Free by SilverG33k(op): 5:50am On Dec 07, 2018 |
I've been thinking for a while now, there is a page on nairaland or other threads where scammers are being reported.
But on most cases, we don't really have the time to lookup threads for phone numbers or mail addresses or account numbers....
I think I should just create a public registry of all scammers out there tarnishing the image of legit Nigerians.
So this app will be free, without ads, and will be open to everyone.
So, this is just the idea, I'll update the thread as I progress.
So anytime someone gets scammed, you just upload scammers data on the app, so when next we need to make transactions, we just lookup the details on the app, as simple as that
So as time goes on, it will become the database of scammers, lol
So anyone who supports this or wants to contribute should reach me on whatsapp, 08104422662
I'm not forcing people tho, just my legit contribution to the society. |
|
Programming › Re: E-commerce Startup Company (interested Programmers Only) by SilverG33k(m): 7:22pm On Dec 04, 2018 |
airsaylongcon: With the thousands of open source ecommerce solutions existing I wonder why u want to build a new one. Why reinvent the wheel?! Someone like you said the exact same thing to Shola Akinlade CEO of paystack |
|
|
Programming › Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 12:22am On Nov 23, 2018 |
I support dhtml too... Gbam, off to work |
Programming › Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 10:19pm On Nov 22, 2018 |
afonja112: @silver, adonbiliv you are competing, na judge you suppose be o. What kind of troll are you sef? Sir... We need confirmation oh, are we to start working on what dhtml1818 said? |
Programming › Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 9:38pm On Nov 22, 2018 |
afonja112: ^^^data collection something keh? where was that one stated o?
By the way, registration is now closed o (we don allow one late comer already)
I am thinking of something here that will be more beneficial to the programming community.
How about we do it like this:
We split the competition into three categories:
Cat A - Desktop application ----> here the C++, node webkit, java people can do their thing Cat B - Mobile application -----> here the flutter, java/android/ios people can do their stuffs Cat C - Web application ------> area for the gods of web development to show themselves
Anyone of the above contestants can pick ONE category ONLY where they want to show themself.
And the price will now be reviewed to 1ST 30k 2ND 20k 3RD 10k
At least that will spread the chances of people a bit. Now as to the content of the quiz, I will come up with something in my next post. Patiently waiting... By the way, are we to follow dhtml or we should wait for your own say.... I need a better understanding |
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  |
Programming › Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 8:19pm On Nov 22, 2018 |
Consult the gods....  Me I'm patiently waiting.... Writing java codes here like my life depends on it.... Bring the roof down, let's code  |
Programming › Re: Nairaland Programming Competition 2018 - Total stakes 210k!! by SilverG33k(m): 12:50pm On Nov 18, 2018*. Modified: 9:59pm On Nov 18, 2018 |
|
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 |
|
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 |
Programming › Re: Learn How To Create A Chat Forum Like Nairaland And Become A Multimillionaire by SilverG33k(m): 1:34pm On Jul 08, 2018 |
|
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 |
Programming › I Need An Android Developer As A Good Friend Or Mentor by SilverG33k(op): 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?. 
Arsenal is the king of inconsistency  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 |