₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,274 members, 8,425,764 topics. Date: Saturday, 13 June 2026 at 03:42 AM

Toggle theme

Xxlbnero's Posts

Nairaland ForumXxlbnero's ProfileXxlbnero's Posts

1 (of 1 pages)

TravelRe: Travelling To Canada Part 8 by xxlbnero: 7:03pm On Jul 21, 2015
vinci500:
Saskatchewan is also said to hav more days of sunshine than any other province making it the sunshine capital of Canada, true?
Yaa true .. the heat is pretty extreme this past weeks but for newcomers, they will probably say it's cold for them. I believe winter this year will be harsh.
ProgrammingRe: President Buhari Voice Recognition Program - Contest For 50,000 Naira by xxlbnero: 12:37am On Jul 21, 2015
Seun:
As a sequel to the signature contest, here's a more challenging contest for programmers who are true computer scientists:

Write a program that will read a sound recording (mp3 format) containing at least 10 seconds of a Nigerian politician talking, and then print "Yes" to the console if the person speaking in the sound recording is President Buhari, and "No" if the person speaking is not President Buhari.

You can use any common programming language that runs on Windows 7/8/10. Use only open source libraries that I can compile on Windows.

The prize is 50,000 naira and I will award it to the first contestant whose code achieves a high level of accuracy (~90%).

Good luck!
Nice concept .. but there should be a way for the public to download and test .exe code themselves. Maybe setting up a website for this purpose will do some good. Anyways, my schedule's kinda tyte ... would have given it a try !!!
EducationRe: Opinion: Courses That Are Easy To Obtain A FIRST CLASS Degree by xxlbnero: 12:00am On Jul 21, 2015
aloa3:
Well i might later be crucified.....but all this are just my opinion after researching and listening to testimonies......
1... Agric related courses
2....Engineering courses
3.... Computer science
4.... Philosophy
5.... Sociology
6.... Public administration
7.... Geology
8.... Yoruba
9.... Mass Communication
10...Political science

Now note people also do fail but am just saying this courses are quite easy to get a first class in with the being hardworking...dont be lazy
Contary opinion are accepted
Come Canada come talk sey Computer Science dey easy to take first class ... abeg tell d nearest person close to u to pinch you ... u still dey sleep ni
TravelRe: Travelling To Canada Part 8 by xxlbnero: 10:50pm On Jul 20, 2015
Hi guys, I'm currently studying at the U of S and truly speaking, it was a miracle. The U of S seems to be "one of" the most affordable ( of which I know of tho ) in Canada. One of it's advantage is : you dont have to pay your tuition ahead before you being granted an admission. Even when you eventually get here, the tuition is flexible. I.E, you only pay for the number of courses you wish to enroll for that semester. But BEWARE , Saskatoon is one of the coldest cities in Canada. It gets upto -50 during the winter so plan your coming.
If you need advice on the process, lemme know, I'll be happy to help.
God bless all your endeavors !!!
TravelRe: Travelling To Canada Part 7 by xxlbnero: 9:53am On May 18, 2015
darefestus:
This your PM tho, R-i-g-h-t.
Click on His profile, Send him a Private message..I will also try to mention it to him.

Btw, have u tried Wakanow?
lol,
Sorry, like I said earlier, Just a newbie here. Still trying to settle with the features of the site.
Thank you for your assistance bro. I have not tried wakanow but will do a search on it ASAP. I'd also appreciate it if you could be of help to me.
TravelRe: Travelling To Canada Part 7 by xxlbnero: 8:49am On May 18, 2015
[quote author=jengbetiele post=33845861][/quote]Hello jengbetiele;
I see you are in the UofS. I just got my visa and I am having trouble booking my flight since I am a newbie. I'd appreciate it if you can direct me on the steps I need to follow. You can also drop you number / email so we can communicate. Your Phone Number is Preferable as I am able to make free calls to Canada and also for interactive guidelines.
Thank you for your time.
TravelRe: Travelling To Canada Part 7 by xxlbnero: 8:14am On May 18, 2015
loladeoye:
try to pm jengbetiele. he is in sask.
OK, will do. Thank you :-)
TravelRe: Travelling To Canada Part 7 by xxlbnero: 7:47am On May 18, 2015
Hi NLanders,
I just got my Canadian Visa to Saskatchewan and I am having a little challenge booking for my flight. With your invaluable experiences, what flight do you recommend me taking and how do I go about this process ? I am a newbie here and also a first time traveler. So do not mind my amateur questions. Thank you all for your time.
ProgrammingRe: Java JDBC Resultset.next PROBLEM by xxlbnero: 8:28pm On Oct 06, 2014
Capnd143:
@javanian and all the pros in the house please help me out
i am having problem with navigating a jdbc, in created a button,
and i want the button to load the next record from a datase when clicked
but i keep getting a weird looking logical error when i try it out, this is my code:


private void btnNextActionPerformed(java.awt.event.ActionEvent evt) {
try{while( rs.next( ));
int id_col = rs.getInt("ID"wink;
String first_name = rs.getString("First_Name"wink;
String last_name = rs.getString("Last_Name"wink;
String job = rs.getString("Job_Title"wink;
String id = Integer.toString( id_col );
textID.setText(id);
textFirstName.setText(first_name);
textLastName.setText(last_name);
textJobTitle.setText(job);}
catch(SQLException err){System.out.println(err.getMessage());}


this is the error i get when i run the the application:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at Employees.Workers.btnNextActionPerformed(Workers.java:204)
at Employees.Workers.access$200(Workers.java:17)
at Employees.Workers$3.actionPerformed(Workers.java:138)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6505)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
at java.awt.Component.processEvent(Component.java:6270)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4861)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:703)
at java.awt.EventQueue.access$000(EventQueue.java:102)
at java.awt.EventQueue$3.run(EventQueue.java:662)
at java.awt.EventQueue$3.run(EventQueue.java:660)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:676)
at java.awt.EventQueue$4.run(EventQueue.java:674)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:673)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:163)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)
@javanian
@
@programmer
@seun
huh huh huh huh huhhuh
this is a typical logic error ...
i will suggest you remove the semicolon at the line : try{while( rs.next( )); ...
that while loop is a condition that returns a boolean ( true / false ). Even though rs.next() is a call to a method ( next() ) which is usually preceded by a semicolon at every call, it is not true when used as a while loop sentinel. ...the semicolon included in the while condition automatically makes it a statement .
TravelRe: Can Anyone Tell Me The Address Of Vfs New Zealand Office In Lagos by xxlbnero(op): 10:22am On Oct 01, 2014
yea, thanks for your post. But i've tried that site and it only shows their UK office . Maybe i'll go through their SA branch
TravelCan Anyone Tell Me The Address Of Vfs New Zealand Office In Lagos by xxlbnero(op): 10:02pm On Sep 24, 2014
i've tried surfing through the net, but to no avail . Any information will be most helpful .

1 (of 1 pages)