• Hey, guest user. Hope you're enjoying NeoGAF! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Meta GAF |ON| Gaf on Gaf

rGu47WG.jpg
 

Peggies

Gold Member
So, I went to a "strengthen your pelvic floor" course to get back the whole, you know, yoni magic and there was this one woman who had recently given birth and felt the need of telling us about her fecal incontinence. Constantly.
I couldn't help but think of this meme
duZHcA6.jpg

which made me giggle which earned me some really evil looks of the others including fecal incontinence lady.

Now I'm scared to go again :messenger_persevering:.
 
So, I went to a "strengthen your pelvic floor" course to get back the whole, you know, yoni magic and there was this one woman who had recently given birth and felt the need of telling us about her fecal incontinence. Constantly.
I couldn't help but think of this meme
duZHcA6.jpg

which made me giggle which earned me some really evil looks of the others including fecal incontinence lady.

Now I'm scared to go again :messenger_persevering:.
Make her an apology cake?

zooey deschanel chocolate GIF by HelloGiggles
 
So, I went to a "strengthen your pelvic floor" course to get back the whole, you know, yoni magic and there was this one woman who had recently given birth and felt the need of telling us about her fecal incontinence. Constantly.
I couldn't help but think of this meme
duZHcA6.jpg

which made me giggle which earned me some really evil looks of the others including fecal incontinence lady.

Now I'm scared to go again :messenger_persevering:.
 

EviLore

Expansive Ellipses
Staff Member
<html>
<header>
<center>
<h1>Welcome to coder's paradise</h1>
<img src="underconstruction.gif">
#include <iostream> #include <vector> class HTMLElement { public: virtual ~HTMLElement() {} virtual std::string render() const = 0; }; class HTMLTag : public HTMLElement { private: std::string tag; std::vector<HTMLElement*> children; public: HTMLTag(const std::string& tag) : tag(tag) {} void addChild(HTMLElement* child) { children.push_back(child); } std::string render() const override { std::string result = "<" + tag + ">"; for (const auto& child : children) { result += child->render(); } result += "</" + tag + ">"; return result; } }; class HTMLText : public HTMLElement { private: std::string content; public: HTMLText(const std::string& content) : content(content) {} std::string render() const override { return content; } }; int main() { HTMLTag html("html"); HTMLTag header("header"); HTMLTag center("center"); HTMLTag h1("h1"); HTMLText text("Welcome to coder's paradise"); HTMLTag img("img"); img.addChild(new HTMLText("")); img.render(); h1.addChild(&text); center.addChild(&h1); center.addChild(&img); header.addChild(&center); html.addChild(&header); std::cout << html.render() << std::endl; // Cleanup delete img.getChild(); delete center.getChild(); delete h1.getChild(); delete header.getChild(); delete html.getChild(); return 0; }
 

BadBurger

Is 'That Pure Potato'
Wanted to start a new character in Hogwart's named "Dick Grayson". Could not make the name Dick, despite this not being a multiplayer game.

Ah well, Richard it is.
 

Maiden Voyage

Gold™ Member
#include <iostream> #include <vector> class HTMLElement { public: virtual ~HTMLElement() {} virtual std::string render() const = 0; }; class HTMLTag : public HTMLElement { private: std::string tag; std::vector<HTMLElement*> children; public: HTMLTag(const std::string& tag) : tag(tag) {} void addChild(HTMLElement* child) { children.push_back(child); } std::string render() const override { std::string result = "<" + tag + ">"; for (const auto& child : children) { result += child->render(); } result += "</" + tag + ">"; return result; } }; class HTMLText : public HTMLElement { private: std::string content; public: HTMLText(const std::string& content) : content(content) {} std::string render() const override { return content; } }; int main() { HTMLTag html("html"); HTMLTag header("header"); HTMLTag center("center"); HTMLTag h1("h1"); HTMLText text("Welcome to coder's paradise"); HTMLTag img("img"); img.addChild(new HTMLText("")); img.render(); h1.addChild(&text); center.addChild(&h1); center.addChild(&img); header.addChild(&center); html.addChild(&header); std::cout << html.render() << std::endl; // Cleanup delete img.getChild(); delete center.getChild(); delete h1.getChild(); delete header.getChild(); delete html.getChild(); return 0; }
Homer Simpson Cartoon GIF
 

Maiden Voyage

Gold™ Member
If the purpose of the thread is to discuss bans, isn’t it a good thing it’s slow?

The only interesting one to me was daveonezero but honestly who wants to go to a website about video games and discuss human trafficking:
hidlUzi.jpg


Internet activism/posturing is the dumbest concept created in our digital age.
 
Last edited:
Top Bottom