₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,324,998 members, 8,419,863 topics. Date: Thursday, 04 June 2026 at 04:20 AM

Toggle theme

404Dev's Posts

Nairaland Forum404Dev's Profile404Dev's Posts

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

Technology MarketRe: Professor On Any Type Of Generator. by 404Dev:
.
WebmastersRe: How Does One Uses Color Letters To Write On Ones Nairaland Profile Signature by 404Dev: 12:20pm On Jul 05, 2021
dan761:
Thanks sir .For example if i want to write " Good" in my signature should the word " Good " be typed in between [/color] or [/color] i just tried copy and paste now written in between the bracket of it still appears as black color while i chooses red. I appreciate your Efforts.
Lol its showing red here so that means it actually worked
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 7:59pm On Jun 24, 2021
oladipuposadeeq:
don't miss it
Can it fly for 30?
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 7:17pm On Jun 24, 2021
dearygally:
I have 2 tvs for sale
A skyworth 38inches led for 40k
An LG 32 inches Led for 40k
30k for the 38inches and location?
Jobs/VacanciesRe: Is This Appointment Letter Genuine? by 404Dev: 9:28am On Jun 24, 2021
I think an official appointment letter would definitely have your name as the receipt on it.

But this has sir/ma on it.

Also check this -> https://punchng.com/fg-declares-natforce-illegal/
WebmastersRe: 8 Years 5 Times Payment Received Adsense With 6 Years Domain For Sell by 404Dev: 9:06am On Jun 22, 2021
chimpanzee4:
I have adsense and domain with age above for sell.

Reason for selling.
I'm traveling out to work with a web developing firm.

I don't have time for blogging again.
Whats your price?
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 11:09am On Jun 21, 2021
dollarnaira:
8k serious seller
Contact?
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 10:45am On Jun 21, 2021
Foxie:
1. 4 Foreign used continental tyres 205/55/R16 - 7k each
2. Pennzoil full Synthetic motor oil 5w20 5quartz - 17k
3. Bathroom shower curtains - 1k each
4. Table and 3 chairs - 10k
5. Gotv Decoder and Remote control- 3k SOLD


Location: Lagos, Mainland
09053289418
Pics of the table and chairs
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 10:40am On Jun 21, 2021
Youngsage:
The following items are still available:

- Office/computer table x1
- Ceiling fans x4
- Brand new Daniel Wellington wristwatches (clearance sales!!!)
- Complete set fairly used GoTV decoder with gotenna/remote

Location is Lagos

Kindly WhatsApp is interested O.9.O.3.3.7.4.1.8.3.5ive
Are the ceiling fans available need 2 plus the gotv
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 4:47pm On Jun 20, 2021
Anyone with tv for sale at clearance price o. Please quote me
Technology MarketRe: House Clearance Sales.. Come In Here!!!! by 404Dev: 4:39pm On Jun 20, 2021
dollarnaira:
Still available
7k? serious buyer
WebmastersRe: Nairaland And Other Nigerian Websites Can't Be Accessed Without VPN By Nigerians by 404Dev: 10:32am On Jun 17, 2021
It's just a network issue. Even mtn was down around 4am this morning couldn't access anything except Google domains. But was restored around 6
ProgrammingFull Time PHP Developer Needed by 404Dev(op): 11:10am On May 27, 2021
A PHP developer good in laravel and codeigniter is needed fr a full-time role in Ikeja.
ProgrammingRe: How Do You Overcome Laziness And Dizziness When Working by 404Dev: 2:41pm On May 17, 2021
There is no magic formula.

Just take regular breaks.

I always take a 5 to 10 mins break after working for about an hour or 2.

This keeps your mind fresh and alert.
ProgrammingRe: I Need A Developer That Can Create A Website Like This by 404Dev: 12:41pm On May 15, 2021
TheStrongest:
Hi guys, I contacted someone here few weeks ago and after revealing the website to the person they stopped communication with me. That aside.

I need someone that can create a website like betconverter.com

Not really the same website per say, just the bet converting tool I need. With a few tweak on the website.

Thanks.... Please let me know if you can do this and a way to reach you.
reach me on egusi2020@gmail.com let's discuss more
ProgrammingUrgent Vacancy For Php Developer In Lagos by 404Dev(op): 2:24pm On Jan 29, 2021
There is an urgent vacancy for a PHP Developer in Lagos.

Developer to resume immediately.

This is a full-time position.

The office location is Ikeja, Lagos.

Requirements:

1. Sound knowledge of PHP is a must.
2. Knowledge of Laravel framework.
3. Knowledge of Codeigniter framework.
4. Knowledge of javascript (Jquery, vuejs, reactjs -- anyone you can use)
5. Ability to keep to deadlines -- very important.

To apply please send your cv including previous code works or projects (you can just include your github profile and I will through it) t0 egusi2020@gmail.com

Thanks.
ProgrammingRe: A Thread For Competitive Programming by 404Dev: 10:36am On Jan 29, 2021
tensazangetsu20:
This is for the gods of programming. I don japa grin grin.
Not difficult you can check my solution.
ProgrammingRe: A Thread For Competitive Programming by 404Dev: 10:33am On Jan 29, 2021
The solution in javascript.

Well commented so newbies can follow through.

We could eliminate the first if check but I just left it there so it would be easier for newbies to follow along.

const arr = [3, 6, -2, -5, 7, 3]

/**
* Returns the max product of adjacent elements of input array
* @param inputArray
* @returns {number}
*/
function adjacentElementsProducts(inputArray) {
// Define our max number and initialize it as zero
let max = 0;

// Loop through the input array
for (let i = 0; i < inputArray.length; i++) {
// If this is the first iteration set max to the first element * the next element
if (i == 0) {
max = i * inputArray[i + 1];
} else {
// First check if we have a next element and compare the product of the next two elements
if ((i + 1) != inputArray.length && (i * inputArray[i + 1]) > max) {
// set our max if applicable
max = i * inputArray[i + 1];
}
}
}

return max;
}


console.log(adjacentElementsProducts(arr));

ProgrammingRe: Urgent Modification On A Php And Mysql App by 404Dev: 4:26pm On Jan 28, 2021
What exactly makes it unusable on android?

Doesn't open on mobile?

Not responsive on mobile?

Or you need an android app for it?
ProgrammingRe: . by 404Dev: 12:05pm On Jan 22, 2021
1.5 million.
WebmastersRe: . by 404Dev: 8:48am On Jan 20, 2021
gistray:
I feel like shooting you


Bastard


Fully functional website earning money for 10k or 70k


Al your generation will die poor idiot
No need to descend so low even if you don't agree with his view.

This is so uncalled for.
WebmastersRe: How Much To Build This App? by 404Dev: 3:14pm On Jan 19, 2021
Godmother:
Wait....do you mean seven hundred thousand naira? As in 7 with five zeros?
grin that one shock you na.
But someone else might do it lower and you can sha negotiate with him.
ProgrammingRe: People Are Fraustrating Here On Nairaland by 404Dev: 4:45pm On Jan 13, 2021
SapphireYj:
I got 76%. My code is below:

const findsimilar = (str,str1)=>{
if(str.length<str1.length){
let placeHolder = str
str = str1
str1 = placeHolder
}
const sp = str.match(/\s/g).length
const sp1 = str1.match(/\s/g).length
const spaceSimilarity = sp1/sp
if(str.includes(str1)){
const arr = str.split(' ')
const arr1 = str1.split(' ')
const wordCount = arr.join('').length
const unsimilarVals = arr.reduce((acc,val,i)=>{
if(arr1.includes(val)){
arr1.splice(i,1,'')
return acc + ''

}
else{
return acc + val
}
},'')

const wordSimilarity = (wordCount - unsimilarVals.length)/wordCount
const similarity = ((spaceSimilarity + wordSimilarity)/2).toFixed(2)
return `${similarity*100}%`
}
else{
return '0%'
}
}
console.log(findsimilar('You still never blow reach','You still never blow'))

I just quickly put this together for fun.I didnt use internet or stack overflow.It will be interesting to see your implementation and how you got 78%.Thanks.
Thumbs up, even though nairaland code formatting made my eyes bleed.
WebmastersRe: SOS To All Digital Marketers by 404Dev: 2:49pm On Jan 13, 2021
I would go with Commissions on ad spend. So if you someone has 100,000 to run ads and your commission is 20% then you take 20,000 and run ads with the rest.

I feel this is easier to explain to an average Nigerian business man than the rest.
ProgrammingRe: Help: I Need An In-depth Explanation On How Package Managers Work(npm And Yarn). by 404Dev: 9:44am On Dec 18, 2020
They are for dependency management.

What is a dependency - code that your app depends on or relies upon to run.

WHy dependencies - well because most times we will need to use someone else's code, package, or library.

For instance, let's say you are building an app, and you wanted to create a modal and you don't want to code it yourself or don't know-how.

Then you can go on npm registry and see a package someone else created for adding modals to your app.

Now you have two options -

1. Either download the source files and add them to your projects
2. Or you can use npm or yarn to install it

The problem with going with option 1 is simply this - when the author updates the package or fixes a bug, then you have to go back and download the new files and replace the ones you have. If you have 5 or 10 of these packages - then painting your app would be a nightmare.

But you with npm or yarn you can just update your dependencies with one command.

Now, most packages have cdn links to their assets if you don't want to use yarn or npm but these are very limited.

Eg. if you use bootstrap cdn, you can't customize the theme options but if you install with either yarn or npm, you can customize the theme, compile it and run it within your project.

Hope this helps.

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