NewStats: 3,265,389 , 8,186,583 topics. Date: Saturday, 14 June 2025 at 06:02 PM 8e5v

6382y

Roadsta's Posts 3r586w

Roadsta's Posts

(1) (2) (of 2 pages)

roadsta(m): 4:45am On Dec 07, 2020
JovialJune:



In marriage, there is nothing like this is mine and this is yours, whatever is acquired is tly owned by both of them, only a vindictive partner will claim all to be his/hers just to get a pound of flesh cos of divorce, which is not suppose to be.

Even when the said properties were acquired before she came into the picture?

If as a couple he/ they bought or acquired any property, I'd be in not when he struggled all alone to get those properties.

Anyway, I think they should be thinking about the future of the kids rather than fighting for personal gain

14 Likes

roadsta(m): 2:52am On Sep 08, 2019
whiteavenuegrp:

yes i am. may i have your number so i can call you
08105492630
roadsta(m): 4:26am On Sep 02, 2019
chichar1:
op is not true!!!! Abaribe is Nnamdi kanu surety in his bail out from court, so he is not among

So all these hullabaloo is for Nnamdi kanu?
I was thinking they were/are actually fighting against bad governance and a better Nigeria.
It is well.�
roadsta(m): 4:00am On Aug 25, 2019
can i get it in ph?
roadsta(m): 4:58am On Jul 15, 2019
I have 25k... You game?
roadsta(m): 4:53am On Jul 09, 2019
Location pls and can it go for 750k?
roadsta(m): 4:46am On Jul 01, 2019
stevebent:
Still available. This is a money spinner if done right.

ROI could be up to x5-10
What's the cost estimate for clearing ?
roadsta(m): 5:00am On Jun 18, 2019
khiaa:


Well, we all know in order to have a healthy relationship that thrives there has to be love, honesty, loyalty, respect, and trust, but empathy, comion, humility, understanding, nurturing, [b]affection and are also a must. These are the qualities a woman should offer to a deserving man in a relationship.

1. It is important to have empathy and comion in your relationship because there will be times when your man will go through many ups and downs and the need for emotional is essential.

2. A woman who loves her man will have the humility to put her own needs aside, sometimes, in order to put his first.

3. Love without understanding[/b]is doomed. The willing to understand is important. It isn't easy at times but a loving relationship is strengthened by the willingness to understand. Ladies, this is where our empathy and comion comes in.

4. Women have a natural tendency for taking care of others and this is an amazing quality to offer in a relationship. Some examples of those [b]nurturing
qualities in the relationship are, (taking care of him when he is sick, making sure her man is fed, clothes are washed, and making him feel special and needed.)

5. is very important in a relationship. A man needs someone who has his back (Alezy, baby I have your back smiley). A woman will give her man the extra push that he needs to take care of business(that push could be helping him financially)and when he succeeds she will celebrate his triumph with him.

6. Affection is a must ladies. Give your man lots of hugs and kisses, don't over do it though, be sincere with them.

When it comes to a relationship I think a man wants a woman that he can feel safe with, someone that he can open up to emotionally. When he (keyword here is relationship) wants to be in a relationship it's not just about sex, he wants to be close to his woman emotionally as well.

That's my two cents.

Better person

1 Like

roadsta(m): 2:36am On Jun 17, 2019
Are you on whatsapp ?
roadsta(m): 1:31am On Jun 11, 2019
Unlike by Naira Marley, zlatan Ibile and 2,344 others.

2 Likes 1 Share

roadsta(m): 6:52pm On May 16, 2019
Pavore9:
Sighs...He has no business being in a Police Station but with mental health professionals immediately after rescue.
Suicide is a punishable offence in this country
roadsta(m): 7:57am On Oct 22, 2018
Hi Gosj01, your WhatsApp number pls
roadsta(m): 5:11pm On May 17, 2018
OmoAlata1:
Is anyone here good with API? I need someone to give me crash course on it

A crash course on youtube :


https://www.youtube.com/watch?v=LooL6_chvN4

2 Likes 1 Share

roadsta(m): 11:31pm On May 14, 2018
Can you post the code or the table definition here ?
roadsta(m): 8:17pm On Dec 13, 2017
check out https://mailchimp.com
they have free plans

1 Like

roadsta(m): 1:48am On Aug 14, 2017
SilverG33k:
I may not fully understand all those big terminologies but with the little android apps I made with java, it made me love java as a language.
Note: I have seen php, python(don't even like it at all), and javascript. The fact that javascript is even too simple makes me not to like it... IMO, java is bae

'javascript simple'?... How do you mean sir?
roadsta(m): 5:27am On Jul 30, 2017
good.
roadsta(m): 9:16am On May 02, 2017
onedayatime:
who has successfully installed angular cli on his windows system? No matter how I tried installing it, it wont just work.



How did you go about it.
P.s. I have read almost I could lay my hands on on how to install angular cli..

How did you install it?
try some clean-up with "npm cache clean" and then re-install.
Note that both the CLI and generated project have dependencies that require Node 4 or higher, together with NPM 3 or higher
i had to upgrade my node/npm version.
roadsta(m): 8:44am On May 02, 2017
skyhighweb:
okay how do i do that, am not fully sure which code to edit or add

Try to be more elaborate in your questions(detailed information) if you want an elaborate answer.
O.k Lets see an example :

From your initial post,i understaood that you have a list of names like "array(mike, jacob, steve, David); right?

If so, all you have to do is iterate through the list, grab the selected element in the list and remove with the unset fuction ing in the key :

As an example:

$s = [mike, jacob, steve, david];

foreach($s as $key=>$val)
{
if ($val==david) unset($names[$key]);
}
print_r($s);

I hope this should help solve the problem.
roadsta(m): 11:49pm On May 01, 2017
skyhighweb:
php
In that case all you need to do is :

- grab the value from the array
- then call unset($value) to remove it
roadsta(m): 3:33pm On May 01, 2017
^^
Oh yes! it is javascript. Just translate it to favourite language, But if you can´t do it.
tell me your favourite
language
skyhighweb:
looks like javascript
roadsta(m): 12:29pm On May 01, 2017
var array = ['a', 'b', 'a', 'c', 'a', 'd'];
// the list
var element = 'a';
// selected element
var idx = array.indexOf(element);
// first find the element index
while (idx != -1) {
// this makes sure the element is defined in the list
array.splice(index, 1);
// this return a new list without the selected element
}

Note that this wont work in older browsers like ie 7 but if you target such, you can use polyfills.
roadsta(m): 6:09am On Jan 12, 2016
FrancisTony:


So, your point is that we should abandon it because it was done in the old testament?

Why not abandon YAHWEH too, and worship a new god. Probably, you could choose from Sol invictus, Ashtoreth, Aphrodite, Venus etc

Should the law related to tithe be added since it also belong to Old Testament ?
roadsta(m): 4:28am On Jan 11, 2016
Profvic107:
the fruit is like the virtue(character) the gift like the special ability(anointing)...the ability or anointing without good character will bring a man down very quick with shame..... I go for d fruit of the spirit....

Is it possible to have that special ability(anointing) without virtue(character)?
Is it possible to have the gift of the spirit without the gift of the scripture?
roadsta(m): 8:49am On Jan 05, 2016
Clone the repo (git clone git@address/to/repo) or the zip file
modify/do whatever u wish to suit ur taste
And .....
I think that's all
roadsta(m): 1:55am On Dec 30, 2015
@ACJohn
I seriously agree with you sir.
The OP/writer mentioned Argentina . When macri took over, the first thing he does was taking this costly decision (well after making known his stance with Mr Maduro of Venezuela).
Now go check the current value of their currency. Dropped 30% further just after 48 hours.
Freeing the currency will only cause more hardship in the long run.

1 Like

roadsta(m): 1:55pm On Aug 24, 2013
emacs.
roadsta(m): 11:33pm On Aug 16, 2013
try this:
http://eloquentjavascript.net/
you can read online or the e-book. Its totally free and the most comprehensive book on js.
roadsta(m): 11:10pm On Aug 16, 2013
This is just a short description. If there is anything you don't understand, hit back and I¡ll try to throw more light.
if I got the question:
you are trying to make a copy of database_1 available to database_2.
If that is the case, then this might help

Access database_1 from PHPMY
Select the database from the left
Now check the top row of the main page and try to locate something like EXPORT
Click (and select the values down the page according to your taste/want)
Store on your local machine.
Close.

Access database_2 from PHPMY
Select the database( or create it )
Check the top row of the main and try to locate something like IMPORT
Click and use the file submit form to late the file (database_1 you exported to your local machine)
And you are almost done.
roadsta(m): 6:06pm On Jul 23, 2013
@
babakk2:
THANX FOR THE INFO, YOU HAVE IF YOU HAVE ANY HELP FOR ME.

You can post any request here or [email protected]
roadsta(m): 1:43am On Jul 23, 2013
@babakk2
I´ll advice you go for JavaScript instead of php.(I think the future of php is been threatened anyway)
with js, its just one language for all(both client-side js and server-side with nodejs).Just give it a try and there are lost of online tut and free eBooks and lectures online especially from github.
Good luck in your new adventure.
roadsta(m): 6:26pm On May 17, 2013
try ip tracking :one registration per ip address.though not quite sure i think there is an extension for this. check the extesion page.

(1) (2) (of 2 pages)

(Go Up)

Sections: How To . 31
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland.