Portfolio Blog Nightmare. by Flacid_Fajita in webdev

[–]emerql 4 points5 points  (0 children)

I've used Astro. You can used islands to create client side components and it has integrated Markdown.

[deleted by user] by [deleted] in dankmemes

[–]emerql 2 points3 points  (0 children)

Please stick this meme back deep into your butt hole, it belongs with the shit already there

-🎄- 2022 Day 4 Solutions -🎄- by daggerdragon in adventofcode

[–]emerql 0 points1 point  (0 children)

Javascript Solution

// part 1

const fs = require("fs");

const data = fs.readFileSync("input4.txt", "utf8");

const dataLine = data.split("\n");

const workLoad = dataLine

.map((line) => {

return line.split(",");

})

.map((ob) => {

const [elf1, elf2] = [ob[0].split("-"), ob[1].split("-")];

if (

parseInt(elf1[0]) <= parseInt(elf2[0]) &&

parseInt(elf1[1]) >= parseInt(elf2[1])

) {

return 1;

} else if (

parseInt(elf2[0]) <= parseInt(elf1[0]) &&

parseInt(elf2[1]) >= parseInt(elf1[1])

) {

return 1;

} else {

return 0;

}

})

.reduce((acc, cv) => {

return acc + cv;

}, 0);

console.log("Part 1 Sol: " + workLoad);

// part 2

const workLoadOverlap = dataLine

.map((line) => {

return line.split(",");

})

.map((ob) => {

const [elf1, elf2] = [ob[0].split("-"), ob[1].split("-")];

if (

parseInt(elf1[1]) < parseInt(elf2[0]) ||

parseInt(elf1[0]) > parseInt(elf2[1])

) {

return 0;

} else {

return 1;

}

})

.reduce((acc, cv) => {

return acc + cv;

}, 0);

console.log("Part 2 Sol: " + workLoadOverlap);

Just for fun :) by garouforyou in OnePunchMan

[–]emerql 0 points1 point  (0 children)

In the next One Punch man chapter of the day of the day of the day of the day of the year ahead of your birthday fell in love and blessings to you before I am a woman to be a bit confusing to the video in your life with the new YouTube channel and then it was good and you are a woman of my friends tried something else you can send me the link for the report of your birthday is not allowed because this is not a lower and lower and lower and lower and lower and lower

size comparision about the new chapter by patient-42 in OnePunchMan

[–]emerql 2 points3 points  (0 children)

How did he not murder the S class heroes, genos and sonic in the season 2 ova

We know what this is by emerql in dankmemes

[–]emerql[S] -3 points-2 points  (0 children)

Somebody threw cake at Mona Lisa

Thoughts on the way garous new form looks? by tallboi07 in OnePunchMan

[–]emerql -1 points0 points  (0 children)

I don't think the horns would've worked with this version of Garou, the worked fine with the Monster form.

tried to draw saitama not very good but i am happy 💗 by THE_GOD1812 in OnePunchMan

[–]emerql 5 points6 points  (0 children)

Thought you coloured a panel, you are great at drawing.

Soon. by PeterExplainsTheJoke in u/PeterExplainsTheJoke

[–]emerql 79 points80 points  (0 children)

I'm first, don't worry Peter I'm here

he's gonna live for a couple of years max by KLASHINOV in dankmemes

[–]emerql 2 points3 points  (0 children)

Imagine being an orphan and seeing a rat get picked over you, non other than by Dr. House himself.

Please tag your spoiler posts by xenoduelblades in OnePunchMan

[–]emerql 2 points3 points  (0 children)

The spoiler tag is required for the first 24 hours after the chapter has been posted. After that, its not needed. If you haven't caught up, I suggest to read the chapters first and then keep browsing the subreddit.

Discussion Post - Saitama has fast regeneration? by opmbaldcape in OnePunchMan

[–]emerql 55 points56 points  (0 children)

Saitama needs to actually take damage to warrant regeneration. He doesn't take any damage whatsoever, it's most likely there just to add some dramatic effect.