Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 5:18pm On Dec 17, 2019 |
Maximus69: Sorry you're not the one who opened this thread to ask questions, if you now feel like asking more from JWs then you must welcome JWs for more information or forget it!  SMH  |
Programming › Re: Guess The Number - Java Codes by ABCthingx(op): 5:15pm On Dec 17, 2019 |
2kaybiel: I understand what the first code intends to do, you can easily make it Android app na. The game is a simple game though, how do you intend to make it look in Android? may be I could be of help? Thanks, Here is a to that thread: https://www.nairaland.com/5500875/want-make-simple-appI couldn't go beyond the splash screen. In Java-NIDE Once you make the second activity it see the compiler permanently saves that activity for you forever l, you can't change it and the activity is still there even when you delete it. Also on resources any resource that is not added on first compile can never be added again. What a wicked world  |
Programming › Re: Guess The Number - Java Codes by ABCthingx(op): 5:01pm On Dec 17, 2019 |
progeek37: Unfortunately Nairand is not suitable for writing programming code...you can benefit by writing it in an IDE and share the screenshots here. However from my eyes that code quality is poor, what is x, what is the meaning of GTN, what is Yg, Mg etc? All these will make your code hard to maintain by other programmers. Even if you revisit the code after few months, you will crack your brain to understand it. If I share only the screenshots here. Anyone who wants to have a quick look at what the code does will first have to go through the pain of writing it from scratch again. And yeah, the first code was as a result of try and error. Hopefully I will try to make it better later.  |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:51pm On Dec 17, 2019 |
Maximus69: Welcome one of Jehovah's Witnesses and start studying the Bible with my brothers, all your questions will surely be answered! Matthew 7:7 God bless you!  No oh! There is no JW around here now! And I need the answer now! now! now! now! |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:12pm On Dec 17, 2019 |
Maximus69: Hmmmmmmmmm it's good that you're not the one asking questions to gain insight, so the fruit is obvious! 
But for the sake of other followers, i'll answer you.
Worshippers of the true God as one people have been given different GROUP names in the past.
Abel, Enoch, Noah, Abraham, Isaac, Jacob and Job all served God but weren't given any rule to organize them with other faithful ones that lived with them as their contemporaries.
It all began with the twelve tribes of Jacob's sons called "Israelites", God for the first time told Pharaoh of Egypt "let my PEOPLE go"!
Later Satan deceived these people and they were separated into two nations, Northern ten tribes called "Samaritans" and Southern two tribes called "Jews". God never accepted all the twelve as his people anymore but his spirit was with the Southern two tribes "Jews". Jesus confirmed this when a Samaritan woman asked him if God accepted the worship of both nations! John 4:22
Then Jesus arrived and started teaching the Jews the new covenant { Matthew 10:6,15:24, Jeremiah 31-34} but just few Jews accepted Jesus' teachings and God's people (those who embraced Christ) began bearing another name "Christians"! Act 11:26
Then Satan again planted weeds (false worshippers) amongst God's people (Christians) {Matthew 13:24-30} Jesus allowed both the fine seed (Christians) and the weeds (false worshippers) to continue until he began ruling in heaven in the year 1914! That's when he now turned his attention to his followers on earth to cleanse the spiritual Temple (Christianity). But since the weeds also bears the same group name with true worshippers, God changed the name of his worshippers once again in this end time to "Jehovah's Witnesses" Isaiah 65:15 compared to Isaiah 43:10-12
So from Abel till date all of us are Jehovah's Witnesses Sir, you can read the Bible book of Hebrew 11:4-12:1 to confirm this!
Note those GROUP names from start to finish
©Israelites ©Jews ©Christians ©Jehovah's Witnesses Each time Satan tries to incorporate his agents into God's own arrangement, the group name changes to help honest hearted observers IDENTIFY those practicing pure worship! 
God bless you Sir! I like you analogy Sir what did Christ say will happen to the weeds?
|
Programming › Re: Guess The Number - Java Codes by ABCthingx(op): 4:08pm On Dec 17, 2019 |
I have the .jar and the source files in Zip but I can't upload it. Yes NL is that crappy. |
Programming › Re: Guess The Number - Java Codes by ABCthingx(op): 4:00pm On Dec 17, 2019*. Modified: 5:31pm On Dec 17, 2019 |
I wanted to make it and app for android but developing with Java-NIDE is a pain in the ass.  So here is the J2ME version For understand better you need knowledge of 1) Random 2) Alerts 3) Commands 4) Text Fields [b]
import javax.microedition.lcdui.*; import javax.microedition.midlet.*; import java.util.*;
public class GTN extends MIDlet implements CommandListener{ public Form form, ab; public Display display; public Image spl, th, tl, co, tk; public Command ok, cancel1, quit; public TextField text, tex; public int G; public int A; public Command cancel = new Command("Cancel", Command.EXIT, 2); public GTN() { Random rand = new Random(); G = rand.nextInt(100); form = new Form("Guess the number!" ; text = new TextField("I picked a number from 1 to 100, guess what it is.", "", 3, TextField.NUMERIC); ok = new Command("OK", Command.OK, 2); form.append(text); form.addCommand(cancel); form.addCommand(ok); form.setCommandListener(this); try{ spl = Image.createImage("/spl.png" ; th = Image.createImage("/TOOHIGH.png" ; tl = Image.createImage("/TOOLOW.png" ; co = Image.createImage("CORRECT.png" ; tk = Image.createImage("TK.png" ; } catch(Exception e){ System.out.println(e.getMessage()); } } public void startApp(){ display = Display.getDisplay(this); splash(); } public void pauseApp(){ } public void destroyApp(boolean unconditional){ notifyDestroyed(); } public void splash() { Alert spl1 = new Alert("GUESS THE NUMBER!", "", spl, AlertType.INFO); spl1.setImage(spl); spl1.setTimeout(3000); display.setCurrent(spl1, form); } public void about(){ ab = new Form("About" ; tex = new TextField("GTN is a project by ABCthingx www.nairaland.com/abcthingx", "", 25, TextField.ANY); quit = new Command("quit", Command.OK, 2); ab.append(tex); try{ tk = Image.createImage("TK.png" ; } catch(Exception e){ System.out.println(e.getMessage()); } ab.append(tk); ab.addCommand(quit); ab.setCommandListener(this); //display.setCurrent(ab); } public void greaterThan(){ Alert gt = new Alert("Try a lower number", "", th, AlertType.ERROR); gt.setImage(th); gt.setTimeout(3000); display.setCurrent(gt, form); } public void lessThan(){ Alert lt = new Alert("TOO LOW", "try a higher number", tl, AlertType.ERROR); lt.setImage(tl); lt.setTimeout(3000); display.setCurrent(lt, form); } public void equalTo(){ Alert et = new Alert("CORRECT!", "You tried " + A + " times", co, AlertType.ALARM); et.setImage(co); et.setTimeout(6000); about(); //it seems this must be there or the form ab wouldn't run display.setCurrent(et, ab); } public void controlHouse(int x ){ A += 1; if (x != G ){ if (x < G){ lessThan(); } if (x > G){ greaterThan(); } } else { equalTo(); } } public void commandAction(Command c, Displayable d) { String label = c.getLabel(); if(label.equals("Cancel" ) { destroyApp(true); } else if(label.equals("OK" ) { controlHouse(Integer.parseInt(text.getString())); } else if(label.equals("quit" ) { destroyApp(true); } } }
[/b] |
Programming › Guess The Number - Java Codes by ABCthingx(op): 3:56pm On Dec 17, 2019 |
|
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 9:05pm On Dec 16, 2019 |
Maximus69: Hmmmmmmmmm it's good that you're not the one asking questions to gain insight, so the fruit is obvious! 
But for the sake of other followers, i'll answer you.
Worshippers of the true God as one people have been given different GROUP names in the past.
Abel, Enoch, Noah, Abraham, Isaac, Jacob and Job all served God but weren't given any rule to organize them with other faithful ones that lived with them as their contemporaries.
It all began with the twelve tribes of Jacob's sons called "Israelites", God for the first time told Pharaoh of Egypt "let my PEOPLE go"!
Later Satan deceived these people and they were separated into two nations, Northern ten tribes called "Samaritans" and Southern two tribes called "Jews". God never accepted all the twelve as his people anymore but his spirit was with the Southern two tribes "Jews". Jesus confirmed this when a Samaritan woman asked him if God accepted the worship of both nations! John 4:22
Then Jesus arrived and started teaching the Jews the new covenant { Matthew 10:6,15:24, Jeremiah 31-34} but just few Jews accepted Jesus' teachings and God's people (those who embraced Christ) began bearing another name "Christians"! Act 11:26
Then Satan again planted weeds (false worshippers) amongst God's people (Christians) {Matthew 13:24-30} Jesus allowed both the fine seed (Christians) and the weeds (false worshippers) to continue until he began ruling in heaven in the year 1914! That's when he now turned his attention to his followers on earth to cleanse the spiritual Temple (Christianity). But since the weeds also bears the same group name with true worshippers, God changed the name of his worshippers once again in this end time to "Jehovah's Witnesses" Isaiah 65:15 compared to Isaiah 43:10-12
So from Abel till date all of us are Jehovah's Witnesses Sir, you can read the Bible book of Hebrew 11:4-12:1 to confirm this!
Note those GROUP names from start to finish
©Israelites ©Jews ©Christians ©Jehovah's Witnesses Each time Satan tries to incorporate his agents into God's own arrangement, the group name changes to help honest hearted observers IDENTIFY those practicing pure worship! 
God bless you Sir! So all those after Christ before 1914 were weeds? Do you even realize you're saying God is incapable of keeping his people and his word? Okay, I want to hear what story they feed you guys with that made Christ not to return 3 times as your Oga predicted. |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 8:56pm On Dec 16, 2019 |
SamjohnnyB: No sir.. It more than 3 people that the our is referring to. which others again? All the Angels? |
European Football (EPL, UEFA, La Liga) › Re: Mesut Ozil Row: China Arsenal Fans Burnt Arsenal Jerseys by ABCthingx: 8:54pm On Dec 16, 2019 |
EazyMoh: This is what exactly Hitler did to the Jews and the whole world condemned and is still condemning it. But if the victims are Muslims the world is okay with it... The Christians are also suffering be guided. |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:40pm On Dec 16, 2019 |
SamjohnnyB: Wrong guess.. Then the 'our' is singular and it referring to God alone? |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:37pm On Dec 16, 2019 |
stupidity: alright. I’m waiting, thanks for you time. Really appreciate. Beguided, I can see Pastor saying some things about roaming outside the Bible. Find a bible believing Church and go sola scriptural for now. this forum might help you a lot: www.christianforum.comBTW sola scriptural I do not mean you should not read anything outside the bible but let your believes be based on the Bible alone. God bless |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:30pm On Dec 16, 2019 |
SamjohnnyB:
 Am not a Rev or Pastor bro.. Am just a simple fellow Ok, lemme guess you don't believe in the Trinity? |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:27pm On Dec 16, 2019 |
Maximus69: Satan and his demons are discouraging people from taking in this life saving instructions, of course Satan and his crew know Jehovah's Witnesses are the one and only true Christian group, that's why they've formed different religions having contradicting doctrines and conflicting teachings in the name of Jesus to distract people from welcoming Jehovah's Witnesses! Matthew 10:22, John 17:14-16 
God bless you! You guys funny sha! All the Apostle Paul, Simon, James, John are not true because they not JW abi? But that a topic for another day |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:23pm On Dec 16, 2019 |
Alert: Jehovah Witnesses around! Thread with caution!  |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 4:16pm On Dec 16, 2019 |
SamjohnnyB: Wrong Then what is it? Rev. Pastor SammyJohn. |
Programming › Program To Find The Hcf Of Two Numbers by ABCthingx(op): 3:44pm On Dec 16, 2019 |
|
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 9:39am On Dec 16, 2019 |
stupidity: interesting......I’m following Coming back later. Hopefully I've to fix somethings offline.  |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 9:35am On Dec 16, 2019 |
Q2 No, of you see your image in a mirror it doesn't mean the image is you. It just an image of you. |
Christianity Etc › Re: Bible Scholars Should Help Me Out With This Teachings. PLEASE. by ABCthingx: 9:33am On Dec 16, 2019 |
Q1 the 'our' is the Trinity. |
Romance › Re: FAILURE by ABCthingx: 9:27am On Dec 16, 2019 |
You forgot to add that no one is really interested in your sob story if you later didn't succeed at the end.
Even if you failed you should at least know why you failed. |
Romance › Re: FAILURE by ABCthingx: 9:23am On Dec 16, 2019 |
iLegendd: Try your best to fail as many times as you can because it's the shortcut to success.
1. When you fail, you'll have stories to tell 2. When you tell the stories, you'll audience to listen 3. When audience listen, you have a fanbase/platform 4. When you have a fanbase, you put yourself in a position of authority 5. When you put yourself in a position of authority, you can easily sell things 6. When you sell things, you make money 7. When you make money, you look back at how you used to fail and finally say, "Failure does not exist, but journey to success does." quoted |
Politics › Re: Magnificent Jails For Corrupt Officials In China by ABCthingx: 9:12am On Dec 16, 2019 |
Can all this ITK shut up and let op tell us what we don't know about China? Abi kini problem yin gan na?  |
Programming › Re: Acey Deucey Python And Just Basic Code by ABCthingx(op): 11:11pm On Dec 14, 2019 |
Testing the System font |
Programming › Re: Acey Deucey Python And Just Basic Code by ABCthingx(op): 11:11pm On Dec 14, 2019 |
[font=system] Testing the System font[/system] |
Programming › Re: Why I Love Reading Other People’s Code And You Should Too by ABCthingx: 10:49pm On Dec 14, 2019 |
3KINGZ18: If you can add comments to your code reading it will be more fun. Man, I hate this part |
Programming › Re: I Love Programming! by ABCthingx(op): 10:46pm On Dec 14, 2019 |
Ausrichie: Man nice at least to know people love C. It's the best for a beginner the hard truth I came to terms with sometime ago. No OOP  |
Programming › Re: I Love Programming! by ABCthingx(op): 10:44pm On Dec 14, 2019 |
Jack of all trades.... Master of all! |
Romance › Re: Two-Month Relationship, My Worst Nightmare by ABCthingx: 10:42pm On Dec 14, 2019 |
oodua1stson: before anything , go for a dna test by fore by force. If you have to involve police or thugs you better do.
I dont feel sorry for you Imaging quoting all the epistles. Some people have no conscience?  |
Romance › Re: 'I'm So Proud Of My Breast' Slay Queen Shares Her Erotic Breast On Instagramlive by ABCthingx: 10:16pm On Dec 14, 2019 |
|
Romance › Re: 'I'm So Proud Of My Breast' Slay Queen Shares Her Erotic Breast On Instagramlive by ABCthingx: 10:14pm On Dec 14, 2019 |
Vernna: Na my senior for secondary school b dis o Lol Na wa presently? |