₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,301 members, 8,449,623 topics. Date: Wednesday, 22 July 2026 at 07:03 AM

Toggle theme

Davien's Posts

Nairaland ForumDavien's ProfileDavien's Posts

1 2 3 4 5 6 7 8 9 10 (of 127 pages)

RomanceRe: The Rise Of Atheism In Nigeria Is Very Good by davien(m): 7:36am On Jan 08, 2023
It's not all round a good thing conclusively, sure they may not buy what religions sell, but that doesn't mean they don't believe something else like destiny, karma etc..
I know many so-called atheist in Nigeria who aren't any different because of magical thinking.
CrimeRe: Young Women Working On Andrew Tate's Sex Cams Were Tattoed "Owned By Tate" by davien(m):

They said he beat up his ex-girlfriend.

She came out and told everyone he didn't and that she roleplayed rough s3x which explains the video.

They said he owned guns illegally.

He said he registered his house as a gun range.

They said he traffics women.

He said he owned a camgirl business 5 years ago before the allegations and gave women open contracts.

They said he r4pes women.

The girl that was "detained" in his house told her boyfriend who discovered she cheated on him that he held her against his will.


See the truth is that all these bad allegations are what people carry on their head like gala just because mens eyes are opening to see the rubbish the west is selling to the world.

If he's guilty, let him face the book, else leave him alone. Highest they kill him in jail and the world finally wakes up to the people pulling the strings(I doubt because most men are busy in the dms of women who don't want them).

Googling his name alone you'll see all these allegations first before anything he says given to you, talk about misrepresentation.

Recent evidence has shown he is guilty of coercion and obtaining women for his cam business under false pretence of marriage. He deserves to be sent to jail for those crimes and taking money from his workers to avoid taxes. The good advice he gave is still relevant as a conversation starter even if his character is not in line with the law.
ProgrammingRe: Data Scientist 100k Per Month (ridiculus) by davien(m): 3:19pm On Jan 06, 2023
chim14:
If it's intern, one can understand with dat pay structure, cuz they're still novice or new in the tech space and one wuld assume dey stand a chance of learning from d so called IT firm. But those requirements is too much for an intern.

And d names of these companies look as stupid as the pay what's "Inbranded" huh. They cant even come up with a good name, let alone hire fullstack developer.
They're looking for a slave and can't even pay high enough to justify the amount of requirements they're looking for.
Funny enough web dev interns in Nigeria are worked like full-time employees.
RomanceRe: Why Are Girls Always Like This? by davien(m): 12:15am On Jan 06, 2023
Keep funding women who won't return value back to you in any form.
ProgrammingRe: Data Scientist 100k Per Month (ridiculus) by davien(m): 6:03pm On Jan 05, 2023
Another example.

ProgrammingRe: Data Scientist 100k Per Month (ridiculus) by davien(m): 3:12am On Jan 05, 2023
So you'll learn machine learning with R and Python along with SQL for #100k, barely over two bags of rice in my area.. Lol..

I also saw a backend job for #50k on that same indeed, C# asp.NET backend developer with preferred experience on java too.
ProgrammingRe: A Comprehensive Guide To Learning Web Development On Your Own by davien(m): 10:04am On Dec 29, 2022
ProgrammingRe: Can You Solve This Google Coding Interview Problem? (pics) by davien(m): 9:34pm On Dec 22, 2022
Funny people, I just grasped loops very well today and feel really good about it, got into functional programming too and enjoy that also, especially using a spread operator to avoid mutating functions but referencing them. Web dev may seem funny to some but I love what I'm doing and if and when it's time to start hitting these algorithms I'll still face them with my full chest because na human being make am, no be God.
Besides, programming is an eternal learning journey.

Let's encourage each other like how foreigners do, it's only in Nigeria you'll see massive gatekeeping, lecturer go gatekeep grades, you sef go gatekeep programming. Rest, you and everyone struggles before you understand.
RomanceRe: Nairaland REDPILLERS Are Misunderstood by davien(m): 8:12pm On Dec 22, 2022
Your carton of beer is at the front op, welcome.
RomanceRe: Have You Approached A Girl That Is Not Into Guys? by davien(m): 8:09pm On Dec 22, 2022
The one you slept with was a nympho, this one may be the real deal. Some nymphos lie so you don't think they're one but for you to think you "converted" them. I'm sure she cheated on you and you "found out".
ProgrammingRe: Chatgbt Is A Scam. It Cant Solve This Simple Thing I Ask Him by davien(m): 9:19pm On Dec 18, 2022
Get 20-200 recharge cards, write the numbers into chatGPT and tell it to predict the next numbers. If it does correctly, resell those loaded cards for real cash and profit or ask it to make an algorithm in python to predict the next ones.
RomanceRe: The Final Solution To End Hook Up In Nigeria by davien(m): 5:44pm On Dec 18, 2022
Be foo0ling yourself. This was life before the internet and social media, open expression of sexuality like hookup and short skirts were talked down on. Now if you don't give her 20k there's one fo0ol on her phone in another state or another part of the world that will.

I'm not saying hookups are good but you have to adapt to the world now or continue crying of the same results...

Go on TikTok and see very ugly women but because their breasts is big you see men sending them money, that's society now. Get a decent girl early and build yourself, it's all 304s everywhere.
ProgrammingRe: Stuck In Javascript by davien(op): 10:22pm On Dec 16, 2022
LikeAking:
Relax! Na small small. After u have learnt to reverse a string. Another one go still dey ahead... Calm down..

To reverse a string is very simple if you understand for let loops, while loops and co.

Instead of counting upwards,the normal way, count downwards to reverse a string. U will use the generated numbers to reference the array.

Instead of

for(let I = 0; I < string.length; I++){
console.log(string[I])
}

Do

for(let I = string. length-1; I >= 0; i--){
console.log(string[I])
}

U can manually do

String[5]
String[4]
String[3]
To
String[0]

To understand.

Feel free to drop any question, let me help u in my own small way.
Thank you so much bro, I am still learning JavaScript loops and have gotten the idea, the next stage now is how to access sub-arrays, 2D arrays.
ProgrammingRe: Flexbox Is Underrated. Here's The Skeleton Of An Image Gallery I Created. by davien(m): 10:41pm On Dec 14, 2022
Arrayman:
would u be able to use any framework without understanding how css works?
Frameworks can give false knowledge for many people as they most times become familiar with frameworks than the vanilla CSS. I once saw a lady on TikTok admit she didn't know how to form a nav bar without a framework. Knowledge of fundamentals will always take you far and that's when you now use frameworks to shorten build times.
ProgrammingRe: Flexbox Is Underrated. Here's The Skeleton Of An Image Gallery I Created. by davien(m): 12:07pm On Dec 14, 2022
Arrayman:
who needs to go through all these when there are css frameworks that can conviently handle your layout.
True though a thorough understanding of layout techniques will save you time and give you the ease to customize your layout.

For example, border can have a 1px solid layer but if it's coming through too strongly for whatever reason you could use a box shadow and use pixels lower than 1px. Vanilla CSS is a very good skill to have bro.
ProgrammingRe: Let's Talk About OpenAI ChatGPT. What's The Future of Developers ? by davien(m): 9:08pm On Dec 13, 2022
I asked ChatGPT to make a text based JavaScript game and it did a very good mockup of one, it's a good tool to point one in a good direction. I'll use it to enhance me learning to code or explain hard things for me then cross check with documentation or stackoverflow.

It's not going to take anyone's job.
ProgrammingRe: Flexbox Is Underrated. Here's The Skeleton Of An Image Gallery I Created. by davien(m): 7:10pm On Dec 13, 2022
QuoteJustOnce:
lol newbie syndrome.
while they can "almost" do the same thing, using flexbox produces more verbose code than grid
the sweet spot is knowing when to use each or most of the times both to accomplish something
flex more verbose than grid? So all the boilerplate to assign grid areas by rows and columns are less than flex?
No offense but grid is more verbose(word heavy) as unlike flex you're specifying layouts in 2 directions. Remember that flex uses align-items for verticality and justify for horizontal, grid uses both plus it's own specificity for areas, columns, rows and even to center with place-items.
ProgrammingRe: Stuck In Javascript by davien(op): 10:31pm On Dec 09, 2022
Ayo081:
Take it one step at a time. Learn how to solve problems instead.

You can't know all the inbuilt functions or prototypes like you mentioned.

Even if you know or learn them, you'll forget most/some. Some you won't be using through out your career life.

Learn how to break problems into steps (algorithm) and not bothering about the challenge on whatever platform.

Use Google. Even google developers use Google.

After breaking the steps down, then you can Google to learn the concepts you need (you'll come across thousands of articles on how to do that).

That way you can solve the challenge in whatever language.

For example I might choose to learn Go lang/Python and then use JavaScript FCC challenges to practice because I can break down the steps.



What exactly is your focus track? FE or BE? You really don't need to wait till "24 what happened to mid "23?

Choose a track FE or BE learn it well, build projects and apply for internships/jobs.
Thank you for the thorough post, I'm learning to land a frontend role.
RomanceRe: Elderly Men Are More Romantic Than The So Called Young Men by davien(m): 8:24pm On Dec 09, 2022
Did your father or uncle molest you growing up? Or has a fatherly figure never cared for you? Most people attracted to elderly folks are looking for a father figure. Only few it's actually grounded on respecting the man.
ProgrammingRe: My Recently Completed Portfolio Website by davien(m): 10:18pm On Dec 08, 2022
Your animations are chiefs kiss, very nice.
ProgrammingRe: Stuck In Javascript by davien(op): 10:11pm On Dec 08, 2022
I'm thinking of approaching things by knowing what the inbuilt JavaScript prototypes do.
They're the ones you can see on your console by using console.log(Object.prototype) and console.log(Array.prototype) while also strengthening my understanding of loops.
ProgrammingStuck In Javascript by davien(op): 10:06pm On Dec 08, 2022
After a while of learning JavaScript on FCC I eventually became stuck on basic algorithm scripting section.
I don't know how to reverse a string as I haven't done such before, though I know I'll probably use an array or there might be an inbuilt method for that, nor do I know how to return the biggest number from an array. My question now is;

I've learnt using books, videos and FCC + documentation from JavaScript dort info should I start learning how to approach algorithms or just read for the specific tests on FCC?

I'm at a level I could solve fizzbuzz, leap year challenges and simple things like converting fahrenheit to celsius though now I'm questioning my abilities because of these algorithms, plus taking a glance at the certification projects got my heart racing, those who've passed through the same experiences, what's your advice to approach the algorithms section on FCC and what skills should I learn along the way to make myself employable.

Note: I'm familiar with HTML, CSS(vanilla), SCSS, and bootstrap. Want to finish the JavaScript portion then move to react and redux and then node, express, bash and finally SQL in early 2024.
ProgrammingRe: Chatgpt, The AI That Can Answer Any Question by davien(m): 12:01am On Dec 06, 2022
It disrupts nothing, I'll tell you why. Its the latest in a long line of tools to help programmers.
There was once only machine code, binary.
Then came Assembly, Perl, B.
Then C, C++ C#.
Python, JavaScript, Ruby.
Web builders, frameworks etc..

Each of these were said to be groundbreaking and the end of the previous style of programming, programmers are still here, maintaining the old code and making new ones.

GPT3 to me is just a tool, if it could write entirely new code nobody has ever seen before through abstraction alone and doing something that can't be done by humans then I'd be scared, it's just stackoverflow with less steps.

You'll still need a programmer to maintain that GPT3, if it's a deep learning tool you'll need people training it, you'll need people contributing to make sure it's correct most of the time and you'll need people introducing new things to it and seeing if it can make something up that the next set of programmers can learn and build even more complex things.
Christianity EtcRe: Why Do People Fear Man Rather Than God? by davien(m): 9:01am On Dec 04, 2022
Because subconsciously we all know it's crap, if I carry a pipe and shout "I'm going to break your head!", you'll run.
If I shout and say, "My God will punish you!" you'll even insult me back.
ProgrammingRe: I've Been In Web Development For A While by davien(m): 10:13pm On Dec 02, 2022
Bro, I as a beginner have more "projects" than you.
My own advice is atleast have a portfolio site where you have your e-commerce, enterprise builds screenshotted and have the people you've worked with give you endorsements on LinkedIn.

I have bootstrap+sass projects on my public portfolio and hope to expand it to JavaScript+js frameworks next year. Best of luck to you.
RomanceRe: Is My Girlfriend Cheating? by davien(m): 5:38pm On Nov 28, 2022
Church girl no dey collect prik? Or swear say you never chop the girl?
Drop her number lemme test her for you.
ProgrammingRe: Let's See The Real Programmers Here by davien(m): 9:58am On Nov 28, 2022
Katelyn543687:
So how dt be your prb, you dt are not dirt cheap drop your portfolio link let see what you're upto
What's your problem? Never said I'm done learning web dev.
ProgrammingRe: Let's See The Real Programmers Here by davien(m): 6:46am On Nov 28, 2022
See how dirt cheap some Nigerian "developers" are selling their services on Reddit.

RomanceRe: Increasing Lamentations Of Guys by davien(m): 11:51pm On Nov 27, 2022
I think narcissism has become idolized and is the result of our modern society, how can men be strong both mentally and emotionally when media and women train their boys to be soft? Nothing wrong being a soft person but as a man the world is against you from day one and you have to face it regardless, being soft means you'll lose more often than not in whatever encounter you have, be it relationships or daily living..
I've become a person that sent a lady out of my house at the dead of night for trying to test me, did I enjoy that? No, but it was necessary as I'll always choose respect and peace over love.
Till this day that lady still respects me but she's trash to me, men, never go soft on women, that's how the world is now.
BusinessRe: Inside Abuja Local Tea Stall Where Cryptocurrency Is Accepted As Payment by davien(m): 5:14pm On Nov 27, 2022
CoolUsername:
Have we learned nothing from Sam Bankman-Fried?
Sshhh, I go use my Pi build house with it since those guys who think it's worth something.

1 2 3 4 5 6 7 8 9 10 (of 127 pages)