₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,306 members, 8,449,654 topics. Date: Wednesday, 22 July 2026 at 07:42 AM

Toggle theme

Deicide's Posts

Nairaland ForumDeicide's ProfileDeicide's Posts

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

Technology MarketRe: You Buy, I Ship and Deliver from Usa To Nigeria, Ebay @495/$ by Deicide: 1:42pm On Jan 15, 2025
Christianity EtcRe: Mubarak Bala, The Atheist Is Out Of Prison After 4 Years - BBC by Deicide: 12:12pm On Jan 08, 2025
Well Sharia Law is also under your constitution and he was in a State that practice it.
eniteden:
Where is freedom of association?? I thought the constitution is above every other law
ProgrammingRe: SEUN View Comments Under Post 2025 Agenda (IMPLEMENTED) by Deicide: 4:52pm On Jan 06, 2025
To be hones i prefer the way it's been done on Nairaland.
CrimeRe: Lady Morns After Cultists Who Came To Kill Her Brother Ended Up Killing Her Mom by Deicide: 4:43pm On Jan 06, 2025
What is the relationship between her brother and viking?
CelebritiesRe: 2024 Hardest Year Of My Life, I Lost $3.7m In Forex – Mark Angel by Deicide: 4:13pm On Jan 06, 2025
Where you getting all this information from?
dominique:
All the millions he ripped off Emmanuela, Denilson and the others working under hin nko? He was paying them paltry 100-150k while pocketing tens of thousands of dollars in content monetisation fees and millions of naira in endorsement and brand partnership. If truly he lost that amount of money them it is karma coming for his greedy ass but we know it's a lie. He doesn't want to pay the cast mates that left him their entitlement. I hope they sue his crusty ass for all he's worth.
Phone/Internet MarketRe: Romoss Powerbanks and Power Stations for sale by Deicide: 3:35pm On Jan 06, 2025
Do you have Romoss sense8 PF?
ComputersRe: Clean UK Used Lenovo T14s Gen 2 - 16GB RAM, SSD, Ryzen 5 Pro, Face Unlock by Deicide: 7:54pm On Dec 20, 2024
Kia this one pain me
ProgrammingRe: My Experience Using An AMD Based System by Deicide(op): 11:46pm On Dec 13, 2024
Nah that 2gb is going to be cut off from his total ram
majesticguy:
That's a beast you have there. It's powered by a Ryzen processor and these processors are quite new and very powerful than the Intel processor. Also the Vegas 6 is an integrated graphics not a dedicated but it's far better than 2gb dedicated graphics card of the Nvidia or the normal AMD cards.

So go for it. It's a good buy and it's worth it. Ensure that it has everything that was advertised in the specs above before buying.
FamilyRe: Becky Mbazuan: 65-Year-Old Benue Woman Declared Missing In Abuja by Deicide: 10:16pm On Dec 08, 2024
Lol, am not igbo
JohnAOne:
Make she no mistake enter CANNIBAL peoples house for Igboland lipsrsealed
FamilyRe: Becky Mbazuan: 65-Year-Old Benue Woman Declared Missing In Abuja by Deicide: 9:26pm On Dec 08, 2024
As Long say no be Ogun state, she would be found alive
PhonesRe: LG Users???? Get In Here!!!! by Deicide: 2:39pm On Dec 08, 2024
HeavenSentGroup:
LG V60 with dual screen available.

LG G8X (network locked) with dual screen available.

LG VELVET dual screen available.

08069153362
How much for only the dual screen of LG V60
BusinessRe: Why Naira Is Appreciating And How Long It May Last by Deicide: 11:50am On Dec 06, 2024
Abeg o, now way I wan convert my $ to Naira
RomanceRe: I Don't Mind If My Girlfriend Or Wife Smokes And Drinks! Am I Weird? by Deicide: 11:10am On Dec 06, 2024
Then why do you have a problem with your kids joining her to smoke?
PhonesRe: Is Anyone Using MTN 5G Router? Does It Worth Buying? by Deicide: 6:07pm On Dec 04, 2024
You can't just get any 5G phone, it has to support mtn 5g bands too
PhonesRe: Samsung Galaxy S9| 4GB | 64GB | 155k| Lagos(SOLD❌❌❌) by Deicide: 6:03pm On Dec 04, 2024
Be like say I go go fix my s9 plus then sell am for 250k grin
RomanceRe: Why Are Girls Putting On Waist Beads To Have Sex? by Deicide: 5:42pm On Dec 04, 2024
BigYash:
I too go like beads o. Na when u position her for ddggyy you go see the beauty. You fit hold the beads,if e many.. grin
This just shows you've never had sex in your life before
ProgrammingRe: AOC 2024 by Deicide(op): 3:11pm On Dec 03, 2024
Day 2 - Red-Nosed Reports

const isIncreasingOrDecreasing = (arr: number[]) => {
const box = [];
for (let x = 0; x < arr.length - 1; ++x) {
const foo = arr[x + 1] - arr[x];
box.push(foo);
}
return box.every((x) => x < 0) || box.every((x) => x >= 0);
};

const adjacentDiff = (arr: number[]) => {
const box = [];
for (let x = 0; x < arr.length - 1; ++x) {
const foo = Math.abs(arr[x] - arr[x + 1]);
box.push(foo);
}
return box.every((x) => x >= 1) && box.every((x) => x <= 3);
};

const doPartOne = (item: number[]) => {
for (let i = 0; i < item.length; ++i) {
let box = item.toSpliced(i, 1);
if (isIncreasingOrDecreasing(box) && adjacentDiff(box)) {
return true;
}
}
return false;
};

export const part1 = async () => {
const input = await fileReader("https://adventofcode.com/2024/day/2/input");
const lines = input.split("\n" );
let ans = 0;
lines.forEach((line) => {
const box = line.split(/\s+/).map(Number);
if (doPartOne(box)) {
ans += 1;
}
});
console.log(ans);
};
ProgrammingRe: AOC 2024 by Deicide(op):
Day 1: Historian Hysteria

export const part1 = async () => {
const input = await fileReader("https://adventofcode.com/2024/day/1/input");
const rightBox: number[] = [];
const leftBox: number[] = [];
input.split("\n" ).forEach((line) => {
const [left, right] = line.split(/\s+/);
leftBox.push(Number(left));
rightBox.push(Number(right));
});
leftBox.sort((a, b) => a - b);
rightBox.sort((a, b) => a - b);
const ans = rightBox.reduce(
(acc, curr, index) =>
curr > leftBox[index]
? acc + curr - leftBox[index]
: acc + leftBox[index] - curr,
0,
);
console.log(ans);
};

export const part2 = async () => {
const input = await fileReader("https://adventofcode.com/2024/day/1/input");
const rightBox: number[] = [];
const leftBox: number[] = [];
input.split("\n" ).forEach((line) => {
const [left, right] = line.split(/\s+/);
leftBox.push(Number(left));
rightBox.push(Number(right));
});
const map = new Map<number, number>();
rightBox.forEach((item) => {
if (map.has(item)) {
map.set(item, map.get(item)! + 1);
} else {
map.set(item, 1);
}
});
let ans = 0;
leftBox.forEach((item) => {
if (map.has(item)) {
ans += map.get(item)! * item;
}
});
console.log(ans);
};
ProgrammingAOC 2024 by Deicide(op): 5:57am On Dec 01, 2024
I go respect myself this time around use typescript + Bun.
Nairaland GeneralRe: Linkedin Verification In 1,2,3... by Deicide: 8:38pm On Nov 30, 2024
So person no fit use National ID
ProgrammingRe: Voice Authentication In Nodejs by Deicide: 8:54am On Nov 29, 2024
Using require in 2024 is wild o
Phone/Internet MarketRe: BUY UR ORIGINAL XIAOMI,ROMOSS POWER BANKS, WIRELESS SPEAKERS, MOBILE ACCESSORIES by Deicide: 12:48pm On Nov 27, 2024
How much for 30000Mah Romos?
PhonesRe: I Just Got A New Romoss Product. Any Tips? by Deicide: 8:09am On Nov 27, 2024
Why is it more expensive on AliExpress
PhonesRe: How Good Is Romoss Powerbanks? by Deicide: 7:59am On Nov 27, 2024
Chimatesky64:
na fake you buy oga.
so there are fake once?
RomanceRe: What Else Will A Guy Gain From A Girl That Says "No Sex" In The Relationship? by Deicide: 9:50am On Nov 26, 2024
Me i don't even care about sex, na breast I wan press grin
FashionRe: What Do You Think About Women Wearing Leg Chain? by Deicide: 6:22pm On Nov 25, 2024
Puss360:
Lol, my auntie's daughter wears leg chain, nose ring, even has tattoo on her breast.. lol...
And guess what, she is a professional Paediatric specialist... With outstanding medical qualifications...
doesn't mean she's not an Olosho, if you know you know
FamilyRe: Please We Are Looking For This Girl by Deicide: 6:20pm On Nov 20, 2024
Ogun Ah. Just forget about it
RomanceRe: Why Are So People Wicked And Heartless by Deicide: 10:01am On Nov 20, 2024
So you were doing all this so he can care about you. Why are you gay?
PhonesRe: LG Users???? Get In Here!!!! by Deicide: 11:39pm On Nov 18, 2024
Lol, nope.
skywolf28:
Experienced the charging port problem yet?
PhonesRe: LG Users???? Get In Here!!!! by Deicide: 9:25pm On Nov 18, 2024
Listening to music on this v60 day burst my head cheesy
TravelRe: Nigerian Lady Denied US Visa, Nigerians Demand Refund Policy. by Deicide: 8:57am On Nov 11, 2024
How much does it actually cost?. Make i know to pity them or not.
BusinessRe: Upwork Thread (Questions/Help/Advice) by Deicide: 8:52am On Nov 11, 2024
grin Bold of you to assume that i get Jobs
Adebaba1:
How do you get jobs

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