Advertisement · 728 × 90

Posts by yummi

That's the spirit!

4 days ago 0 0 0 0

If you're an artist, it's not that someone calling you a pedo is the problem, it's that the bsky mods will deplatform you long before anyone even has a chance to do that

1 week ago 4 0 2 0

(Pss... DDLC+ is not a free game. You're not solving the problem)

1 week ago 1 0 1 0

Very realistic

1 week ago 0 0 0 0
Post image

gigi

1 week ago 2014 314 4 0
Post image

バニートキちゃん🃏
#ブルアカ

2 weeks ago 193 57 0 0
Post image
2 weeks ago 492 79 0 0
Advertisement
// Just for historical context:
// Back in the day, every time you wanted to do some AJAX, you had to create this abomination.

function fetchData(url, callback) {
  var xhr = new XMLHttpRequest();
  xhr.open("GET", url, true);

  xhr.onreadystatechange = function () {
    if (xhr.readyState === 4 && xhr.status === 200) {
      var data = JSON.parse(xhr.responseText);
      callback(data);
    }
  };

  xhr.send();
}

// That's why, when Axios came out and let us do this instead:

function fetchData(url) {
  return axios.get(url).then(function (response) {
    return response.data;
  });
}

// It was a game changer. Of course, it made the website a bit heavier,
// but as a bonus, you got your sanity back.
// Then ES6 happened, and we finally got something better:

async function fetchData(url) {
  const response = await fetch(url);
  return response.json();
}

// Sadly, it wasn't available in all major browsers until 2017,
// and in Node.js until 2023, so it took a while for Axios to become irrelevant.
// That's why many people still use it out of inertia.

// Just for historical context: // Back in the day, every time you wanted to do some AJAX, you had to create this abomination. function fetchData(url, callback) { var xhr = new XMLHttpRequest(); xhr.open("GET", url, true); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { var data = JSON.parse(xhr.responseText); callback(data); } }; xhr.send(); } // That's why, when Axios came out and let us do this instead: function fetchData(url) { return axios.get(url).then(function (response) { return response.data; }); } // It was a game changer. Of course, it made the website a bit heavier, // but as a bonus, you got your sanity back. // Then ES6 happened, and we finally got something better: async function fetchData(url) { const response = await fetch(url); return response.json(); } // Sadly, it wasn't available in all major browsers until 2017, // and in Node.js until 2023, so it took a while for Axios to become irrelevant. // That's why many people still use it out of inertia.

2 weeks ago 0 0 0 0

(Probably for good tho)

2 weeks ago 1 0 0 0

So you missed the era of 7 conflicting versions of jQuery on the same page, <table> layouts, CoffeeScript, and other pre-ES6 crutches? Damn

2 weeks ago 1 0 1 0
Post image

わるそうな顔

3 weeks ago 160 32 0 1
Post image
3 weeks ago 20 8 0 0

Fun fact. Once, as a practical joke, I started buying purple carrots for my grandmother instead of the orange ones and tried to gaslight her into thinking they had always looked that way.

And now you tell me I was not gaslighting her at all???

3 weeks ago 0 0 0 0
Post image

ヒナ🏁

4 weeks ago 160 55 0 0
Advertisement

The problem with the false dichotomy fallacy is that sometimes the choice is actually binary, but some people got too comfortable with it not always being the case, so they conflated it with it always not being the case

1 month ago 2 1 0 0
Post image

#ブルアカ

1 month ago 60 19 0 0
Post image

wip 自由に絵を描ける時間も、そろそろ終わりみたいだ……
やっぱり、ただの夢だったのかな
#ブルアカ #BlueArchive #블루아카이브

1 month ago 37 10 0 0
Post image

venturing into the dark never a good idea!

sketch from a while ago

1 month ago 4205 710 13 1
Post image

No, for real, she never left the parking lot. The car was within their visual reach at all times. This is the pool she walks by in the 2nd section of the video

1 month ago 1 1 1 0

Wait a moment... But she left these things, and then just came back immediately... On an empty street...
You can do this in ANY city in the world

1 month ago 1 0 1 0

By the way, if you weren't aware, in the army they send you to fight in a war, not to have sex with you. Just in case you missed that kind of important piece of information.

Besides, isn't the FBI you mentioned earlier part of the government too?

1 month ago 0 0 0 0

Still, old enough to die in a war. I don't see how you're the one who can't get the point and call me a retard at the same time. Projecting much?

1 month ago 4 0 0 0

Well, by the standard you set up yourself. Not me who brought FBI into a conversation about TF2

1 month ago 3 0 1 0
Advertisement

Uh-huh. Please, call the FBI on them then, be consistent
I just wonder how it will play out that, on one hand, the government thinks you're old enough to die in a dogfight while controlling a multi-billion-dollar jet, and on the other hand, not old enough to know what to do with a loot box in TF2

1 month ago 4 0 2 0
Post image

I'll just leave it here

1 month ago 12 0 2 0
Post image
1 month ago 2478 506 2 1
Post image
1 month ago 158 41 0 0

Like I said before, there's a long list of companies that need to be scrutinized first like yesterday if "kids are gambling" is actually the problem being addressed. If anything, it looks less like it's about kids and more like it's about lobbying against a successful competitor

1 month ago 5 0 0 0

Innocent? Probably not.

The biggest offender in the lootbox scene, and the biggest problem in the industry that needs to be tackled right now, or else poor kids will gamble away everything they have? Absolutely not. It's a waste of time.

1 month ago 4 0 1 0

"Y being worse than X doesn't make X better"

Yeah, I'm afraid math isn't your strongest suit. I'm not sure how to even argue against a straight-up logically self-invalidating statement

1 month ago 15 0 1 0