404Dev's Posts
Nairaland Forum › 404Dev's Profile › 404Dev's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 (of 16 pages)
. |
dan761:Lol its showing red here so that means it actually worked |
oladipuposadeeq:Can it fly for 30? |
dearygally:30k for the 38inches and location? |
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/ |
chimpanzee4:Whats your price? |
dollarnaira:Contact? |
Foxie:Pics of the table and chairs |
Youngsage:Are the ceiling fans available need 2 plus the gotv |
Anyone with tv for sale at clearance price o. Please quote me |
dollarnaira:7k? serious buyer |
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 |
A PHP developer good in laravel and codeigniter is needed fr a full-time role in Ikeja. |
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. |
TheStrongest:reach me on egusi2020@gmail.com let's discuss more |
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. |
tensazangetsu20:Not difficult you can check my solution. |
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));
|
What exactly makes it unusable on android? Doesn't open on mobile? Not responsive on mobile? Or you need an android app for it? |
1.5 million. |
gistray:No need to descend so low even if you don't agree with his view. This is so uncalled for. |
Godmother: that one shock you na.But someone else might do it lower and you can sha negotiate with him. |
SapphireYj:Thumbs up, even though nairaland code formatting made my eyes bleed. |
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. |
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. |