Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,532 members, 7,816,298 topics. Date: Friday, 03 May 2024 at 09:05 AM

Stanliwise's Posts

Nairaland Forum / Stanliwise's Profile / Stanliwise's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 298 pages)

Sports / Re: Thomas Müller: “Against Messi Things Always Go Well, CR7 Was Our Biggest Problem by stanliwise(m): 7:11am On Mar 09, 2023
Honourable1901:
Talk is cheap cheesy grin
But the figures backed the talk up. So you’re talking cheap
Programming / Re: Is This A Wise Decision? by stanliwise(m): 10:29am On Feb 26, 2023
chukwuebuka65:
I found this YouTube channel of a Nigerian developer. The guy has a lot good videos, about 70 of them . And he has been a YouTuber for about 9 months . But he has only 200 subscribers which I believe is because he uses pidgin to teach, I mean pidgin English. I believe this is a bad idea because firstly, he is limiting his audience to Nigerians, secondly, I don’t think there is would be any aspiring developer that doesn’t understand English .

What do you think? Yay or Nah?
Maybe you should focus more on his motives than the numbers.
Was his motive to reach people who prefer using pidgin, if yes then it’s fact that people who go online to find pidgin English videos are few.

It will be more objective if you speak about his quality of video and the work he puts into it. Perhaps if his motive was to get follower then quite alright that is a dead wrong approach. If not then maybe it is not

1 Like

Programming / Re: I Just Bombed A Technical Interview by stanliwise(m): 8:28am On Feb 22, 2023
like you say a vector an array is just fine. I think you're overthinking data structure
Programming / Re: I Wrote My First JS Code by stanliwise(m): 6:11pm On Feb 18, 2023
const name="Xuzier";
const age=120

//concatenation😃
console.log(`my name is ${name} and I am ${age}`);

//array 😀

const fruits=[
'apple', 'mango', 'orange'
];
fruits[3]='pineapple';
console.log(fruits)

😂
I just dey start I know say e go choke later with all the stories I have been hearing about JS
JS is not hard to start and learn. Like everything it is required you’re able to exploit its feature to make real life applications.

Watch quality videos with detailed explanations of concept and avoid the rush as a beginner

1 Like

Romance / Re: Sabinus Slams Tinubu For Raising Hands For National Anthem by stanliwise(m): 7:40am On Feb 18, 2023
SavageResponse:


He should focus on comedy and leave politicians alone
Useless agbadorian.

11 Likes

Romance / Re: In A Relationship, What Statement Hurts You Most During An Argument? by stanliwise(m): 1:09am On Feb 18, 2023
JapaToDNext:
Are u man Enough

Do your worse


I go kill am with beating tha day
So the beating go unturn the word abi
Romance / Re: Dating A Broke Guy by stanliwise(m): 10:20pm On Feb 16, 2023
cumoverna:
change is constant, a broke man today can drive toyota spider next month.

i don see many example of guys like this.
nonsense talk

1 Like

Programming / Re: One Of The Worst Websites I've Seen So Far by stanliwise(m): 6:55am On Feb 10, 2023
majesticguy:
For a financial institution as big as this, and considering their position and the amount of monies they make, I expected way better.

Navigating through the links is one heck of an Herculean task. How is it that everything is all on desktop view. Unless this is a bug or something, then it's quite understandable otherwise this is very bad.
Well they didn’t build it properly. They could have outsourced it to a tech firm to do for them but they didn’t
Celebrities / Re: Speed Darlington Slams Dino Melaye: 'No Senator Should Be This Wealthy' by stanliwise(m): 6:50am On Feb 10, 2023
witworth:
He wasn't senator from brith and he won't be for life.
So let's not allow one broke lazy fool to come and change our mentality why one man cannot be even richer than this.
A wise man hustle for his coming generations to have easy ride in the future and one foolish man is not happy about it.
When it's not as if a senator is a religious leader/spiritual father who some idiots still believe they shouldn't be rich
or when it's not as if he made all his money from being a senator.
This speed Darlington needs a rehabilitation ASAP
You’re brain dead
Programming / Re: What Could Be Wrong With This? by stanliwise(m): 6:14am On Feb 05, 2023
lazynairalander1:
I keep getting error on my console after typing in this line of code.

library(tidyverse)
data()
view(msleep)

name(msleep)
list(msleep)

msleep %>%
drop_na(vore) %>%
ggplot(aes(x = vore))+
geom_bar(fill = "#97B3C6"wink+
#coord_flip()+
theme_bw()+
labs(x = "vore",
y = NULL,
title = "Number of Observation"wink

#Flip your chart
msleep %>%
drop_na(vore) %>%
ggplot(aes(x = vore))+
geom_bar(fill = "red"wink+
coord_flip()+
theme_bw()+
labs(x = "vore",
y = NULL,
title = "Number of Observation"wink

#create your chart in order
msleep %>%
drop_na(vore) %>%
ggplot(aes(fct_infreq(vore)))+
geom_bar(fill = "green"wink+
#coord_flip()+
theme_bw()+
labs(x = "vore",
y = NULL,
title = "Number of Observation"wink


msleep %>%
drop_na(vore) %>%
ggplot(aes(fct_infreq(vore)))+
geom_bar(fill = "green"wink+
#coord_flip()+
theme_bw()+
labs(x = "vore",
y = "Total sleep",
title = "Number of Observation"wink


#change the label of X axis
msleep %>%
drop_na(vore) %>%
ggplot(aes(x = vore))+
geom_bar(fill = "#97B3C6"wink+
#coord_flip()+
theme_bw()+
labs(x = "who eats what?",
y = NULL,
title = "Number of Observation"wink

msleep %>%
ggplot(aes(x = awake))+
geom_histogram(binwidth = 2, fill = "#97B3C6"wink+
theme_bw()+
labs(x = "Total sleep",
y = NULL,
title = "Histogram on total sleep"wink

msleep %>%
ggplot(aes(x = awake))+
geom_histogram(binwidth = 2)+
theme_bw()+
labs(x = "Total sleep",
y = NULL,
title = "Histogram on total sleep"wink

msleep %>%
ggplot(aes(x = awake))+
geom_histogram(binwidth = 2, fill = "#97B3C6"wink+
coord_flip()+
theme_bw()+
labs(x = "Total sleep",
y = NULL,
title = "Histogram on total sleep"wink

msleep %>%
ggplot(aes(awake))+
geom_histogram(binwidth = 2, fill = "#97B3C6"wink+
theme_bw()+
labs(x = "Total sleep",
y = NULL,
title = "Histogram on total sleep"wink

mean("Total sleep"wink
Learn how to post code snippets and give more context to things. That is how to ask for help

1 Like

Programming / Re: Back-end Development Is So Boring And I Hate It. by stanliwise(m): 1:48pm On Feb 04, 2023
Devdevdev:
Please this is a serious thread and I'll appreciate responses.

I've been learning Front-End web development for 4 months now and I've made a lot of progress. Recently I tried to learn some back end with Nodejs, Express and MongoDB just to get some exposure, but I've realized it's not for me at all. Its so boring and I hate every bit of it. It literally puts me to sleep everytime.

I spend hours working on Front end projects and I enjoy every minute of it, but backend is like a chore.

Since it is apparent that frontend is my calling, can I possibly become a successful Front-End developer? Are there really opportunities for beginner frontend devs? I've been told that adding backend languages to your stack improves the possibility of you being hired, but it's clear I hate backend and would hate a job as a backend developer.

What's your advice for me?
A working app don't give a f*uck if you're backend or frontend. It has to work, everyone needs to have the knowledge of fullstack and operate at a capacity of fullstack but you don't need to professionally work as fullstack. Infact I advice strongly against such moves.

1 Like

Phones / Re: Fisayo Fosudo Test-Runs SpaceX's Starlink (Video) by stanliwise(m): 7:43am On Feb 04, 2023
Starlink will do it
Romance / Re: . by stanliwise(m): 5:00pm On Feb 03, 2023
Ginaz:
i just told my crush he have bad breath, things like this isn't so easy i swear. i was so nervous and couldn't tell him face off but i managed to tell him today.

i felt he should know about it . i hope i didn't destroy his confidence though

Let’s wait and see

1 Like

Programming / Re: How Can I Create My Own Web Hosting Server by stanliwise(m): 6:44pm On Jan 31, 2023
arejibadz:
please is possible to create my own web hosting server in which i can host my website
The problem here is that your pc must have an IP allocated and dns lookup for that ip must route to your machine.

So to make it easy you have to look for a machine with a public IP that can forward the request to your custom machine
Programming / Re: I Hate Paginated Blogs by stanliwise(m): 6:40pm On Jan 31, 2023
princely4ever:
Am I the only one who hates paginated blogs?
well what exactly do you hate?

Lack of search?
Lack of categories?
Lack of tags?
Or no featured content?
Education / Re: Outrage As FUTMINNA Fixes Exam A Day To 2023 Election & 2 Days After by stanliwise(m): 8:41am On Jan 30, 2023
Aufbauh:
Why are some people bent on politicizing every situation?
Every slight decision that inconvenient everyone is solely against them.

This is not the first time we will be holding general election during tertiary institutions academic year so every student voters should find a way around it.
yama yama talk.. mtchew
Programming / Re: How Did You Succeed As A Developer/programmer? by stanliwise(m): 3:59pm On Jan 25, 2023
Maxxim:

I get, thanks for sharing.
But when it comes to developing some projects going solo, I'll like to believe there are exceptions right.
And the later has to be one of the greatest hack to have learned, thanks 😊
A solo project will look solo that is all. You can’t go solo and build Google search engine

1 Like 1 Share

Programming / Re: I Need Explanation On This Code?? Php Programmers by stanliwise(m): 12:31am On Jan 25, 2023
WallStreetfx:
embarassed embarassed embarassed please i need explanation i dont what the variable is result is doing in the function
That is filter_var() function, it is used to check or validate input based on the choice of algorithm you choose.

FILTER_VALIDATE_EMAIL is a constant that will choose algorithm for validating email
Programming / Re: How Did You Succeed As A Developer/programmer? by stanliwise(m): 7:07pm On Jan 24, 2023
Maxxim:

Can you give an example of this, might be a summary
To develop a personal project for personal use vs to develop project that are useful to others outside yourself is a totally different ball game.

Also the way software developed, good software are developed through collaboration and iterative development rather than staying in a fortress and single handedly crafting Magics.

Also learning part of a skill that translate to immediate value as per you can use it to do something for someone is far better approach to other form of learning. This time you don’t choose just what to learn but you learn just what you need to get the job done.
That part of getting the job done learning is the hardest part, because you will be forced to be pragmatic with your learning.


Be value driven is the summary of all I am trying to say

6 Likes

Programming / Re: How Did You Succeed As A Developer/programmer? by stanliwise(m): 8:21am On Jan 23, 2023
I simply became more pragmatic and realistic with my expectations and the deal breaker for me is that I went ahead to explore how things actually work in real life. Lol and behold it was different from what I had in mind
Programming / Re: PHP Is Giving Me Problem?? by stanliwise(m): 8:19am On Jan 23, 2023
truthCoder:


There are two types of learning.

The ‘How’ and the ‘Why’.

Many people want to learn how things are done. It is a short term form of learning and works only in an exam environment.

You should learn Why something is being done. When you know the why, your brain automatically starts to understand the logic.

Lecturers who know why dont need notes. Ordinary typographical errors can scatter the life of a how learner.
Everyone needs notes to tech properly and not forget important things to talk about. It would be better you say they don’t need too much consultation when explaining a concept
Programming / Re: Why Will NL Take The Food Cooked By Chefs To Front Page, But Never Tech Projects by stanliwise(m): 8:16am On Jan 23, 2023
Seun:
Suggest a thread.
Seun why you never improve this platform all this while?

Invest in developers
Software/Programmer Market / Re: I Need A Web Developer To Get A Project Done by stanliwise(m): 8:14am On Jan 23, 2023
kayjegs:


Thanks for your response. This is not my first-time giving projects out to be done. I know what needs to be done. I wanted to just give this project to a web developer who is based in Nigeria but they disappointed me. I have freelance guys that can help me do it but are not Nigerians.
It is not about being a Nigerian or not. It is about giving it to the right people. There are lot of fake devs out there. Freelancers, international and local. You would never have it easy anywhere. Na to invest time to find the right people

1 Like

Software/Programmer Market / Re: I Need A Web Developer To Get A Project Done by stanliwise(m): 8:41pm On Jan 22, 2023
kayjegs:
I have an idea for a web development project. I have had a couple of disappointments here and there. It is a website that lists products and discounts on them. The website does not process payments. It only lists products, when the user clicks on the products, it gives more details about the product and the seller contact. The user can then visit the seller's website to buy the product but will also get a discount coupon generated on another product of his choice on the website. Once the user buys the product, his discount coupon for the other product is activated. I don't feel it is supposed to be very difficult for a developer that knows his/her stuff. If you are up to the task, let me know here with your contact email and I will contact you. But first, you have to show me the work you have done before. And I will have to choose the best person for the job. Thanks
Lolz 😂

Don’t you think you’re underrating software development?

You just talked about the flow and you have forgotten it would have an interface and would be usable on mobile and desktop.
Perhaps maybe user registration is needed
Perhaps email notification
Perhaps admin dashboard.

Simply consult the right people on the technical requirements of your idea. It is not enough to look for developers without a good architect of your software

2 Likes

Celebrities / Re: I Was Pregnant 3 Times For Apostle Suleman - Halima Abubakar by stanliwise(m): 3:10pm On Jan 22, 2023
Passwords247:
Let the people without sin start casting their stones, you aborted three pregnancies and you're proud to say it publicly, where did you drop your bag of shame?, You 4got that the blood of those kids are on your head. Be careful before you bring KARMA on yourself. All this sex scandals I haven't heard anyone saying that this is the child I born for him. Until God uses one of you as an example, you all won't stop this nonsense. Even if he's guilty of what you claim, it's only God that has the right to judge his prophets and not any of you. No matter what you do I'm not a member of Omega Fire Ministry but I'll continue to love Apostle Johnson Suleiman, his teachings, preachings, e.t.c and his ministry at large. I wish you well Apostle Johnson Suleiman, God will surely see you through all this storms.
you need Jesus in your life, only Jesus can save you.
Romance / Re: Man Fumes At Lady After Spending So Much On Her & She Says NO (video) by stanliwise(m): 8:30pm On Jan 21, 2023
So nairaland now supports emoji 🤔🤔🤔🤔
Family / Re: Mum Rejects Car Gift From Son, Questions His Source Of Wealth (Pix, Video) by stanliwise(m): 8:27pm On Jan 21, 2023
sisisioge:
Good woman, ask questions please. How is a student without a job able to afford expensive things? Some parents need to be flogged failing to ask these questions!
The ones who didn’t ask, knows so they won’t ask
Programming / Re: Nairaland Should Have Their Api by stanliwise(m): 10:58am On Jan 18, 2023
It deserves been underrated. Lack of investment by the owner and no growth plans

1 Like

Romance / Re: Is It Advisable To Marry A Girl Who Has Sent You A Nude Picture Online Before? by stanliwise(m): 10:03pm On Jan 14, 2023
habsydiamond:
No good girl will ever send her naked pix to u... a girl brought up in a good home will know that the human body is sacred and should be shared publicly except with one person ur husband or ur doctor for any treatment in that region or child bearing.
Bro a girl may never send nude to you but would do so with another guy. It’s all in lines. If you know what I mean

3 Likes

Celebrities / Re: Kanye West Marries Bianca Censori In Secret Ceremony (Photos) by stanliwise(m): 8:23pm On Jan 13, 2023
Ted4real:
Hmmmmm

Super stars cum celebrity marriage don't moved me as they are base on fantasy that Doesn't have a background in God
Wow such a bold statement. You knew so much about them.
Assistant God. Well done
Celebrities / Re: Kanye West Marries Bianca Censori In Secret Ceremony (Photos) by stanliwise(m): 8:21pm On Jan 13, 2023
ogoloray:
What do these guys even hope to get in marriage that they cannot get by simply dating the person?

Next news now, he will be parting ways with some of his hard earned millions, just because he signed a shitty piece of paper...

Men seem to enjoy bondage sha!
Marriage is commitment. Dating is dating
Don’t be with wrong people is what matters

1 Like

Crime / Re: Gunmen Kill Councillor, Boutique Owner, Sales Girl And Customer In Sapele (Pix) by stanliwise(m): 10:58am On Jan 05, 2023
Kajaard:


Reword your post, it should be : may we never be at the wrong place not right place.
There is nothing wrong about the place. It’s just wrong timing.

I can’t say for all the victims but surely for some of them

13 Likes

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 298 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. 50
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.