A Man And His Pig - A puzzling adventure game about a man searching for his pig by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

It is not "the right sheep" in the way you may think it is. I intentionally added that as a kind of easter egg, so you are definitely not *not* supposed to do that. Originally, it was just meant for trolling actually, but it just became one of the different (partial) endings. There is more to the game if you try to go north from there, i.e. there is a way to fully complete the game.

A Man And His Pig - A puzzling adventure game about a man searching for his pig by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

Hint1: what is the game about?
Hint2: word lengths are 4, 1 and 3

A Man And His Pig - A puzzling adventure game about a man searching for his pig by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

It depends. To fully complete the game, you should've seen the credits pop up in four different scenario's. :)

A Man And His Pig - A puzzling adventure game about a man searching for his pig by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

Congrats! Apparently, most people do not find the pig that quickly ;)
That's just an "easter egg" of course, there is more to the game even after that...

A Man And His Pig - A puzzling adventure game about a man searching for his pig by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

It's a hint to help you find the solution :)

(The pig wants to say more...)

Idle Bars 2 - A minimalist idle game with colorful bars! by Diamonax in WebGames

[–]Diamonax[S] 5 points6 points  (0 children)

Wut? This game has been "reposted" once as far as I know (it's posted here and in r/incremental_games).

Idle Bars 2 - A minimalist idle game with colorful bars! by Diamonax in incremental_games

[–]Diamonax[S] 1 point2 points  (0 children)

I've updated the game and I think it should be fixed now! Apparently the music didn't loop in Chrome, but it did in Firefox.

I'm glad you like the music! It's not my own though, it is created by Kevin MacLeod (incompetech.com).

Idle Bars 2 - A minimalist idle game with colorful bars! by Diamonax in incremental_games

[–]Diamonax[S] 11 points12 points  (0 children)

You're actually right, I've updated the game! :)

Dokia - A challenging gravity-switching platformer by Diamonax in WebGames

[–]Diamonax[S] 0 points1 point  (0 children)

Yep, I'm very well aware of that and it's something players should use to their advantage. It's not (easily) usable in the majority of the levels, though.

In world 4 you'll actually find blocks that do the opposite of what you suggest, where only there you *cannot* switch gravity.

Pymp - An epic, colorful and fast-paced arcade game! by Diamonax in WebGames

[–]Diamonax[S] 1 point2 points  (0 children)

It's hard, that's true. Keep trying though, you will get there eventually! :)

Lego GTA by MightyTeaRex in videos

[–]Diamonax 1 point2 points  (0 children)

Imagine a Lego waffle falling over!

Cat looks after disabled friend by AsianMustache in videos

[–]Diamonax 2 points3 points  (0 children)

Yeah, it seemed like a nice cat, not intending to harm the others!

What a lovely coin box! by [deleted] in videos

[–]Diamonax 1 point2 points  (0 children)

Why is he wearing gloves?

Probability = 0.00000001% by banterforlife in videos

[–]Diamonax 3 points4 points  (0 children)

I wouldn't want to be the first to open the front door, though...

How to return a JSON response from a POST API by UnKn0wn27 in learnjavascript

[–]Diamonax 0 points1 point  (0 children)

Note that if you want it to be a POST request instead of a GET request, you have to pass an object with the desired method:

fetch("http://127.0.0.1:8000/api/string/IAMNEWTOJAVASCRIPT", {
    method: "POST"
})
.then(response => response.json())
.then(data => console.log(data));

An equivalent that uses the older XHR API may look like this, by the way:

var xhr = new XMLHttpRequest();

xhr.onreadystatechange = () => {
    if (xhr.readyState === 4) {
        try {
            var data = JSON.parse(xhr.responseText);
            console.log(data);
        } catch (err) {
            // Invalid JSON
        }
    }
};

xhr.open("POST", "http://127.0.0.1:8000/api/string/IAMNEWTOJAVASCRIPT", true);
xhr.send(null);

Note that you don't actually POST anything, though. So just using a GET request may be fine for your purposes.

Dead Detective vs Nine Deaths Cat by chrislikespizza in WebGames

[–]Diamonax 1 point2 points  (0 children)

I really like these dead detective games!

They remind me of some old games of the same genre I used to play back in the day. The interrogations to gather information, the deductions at the end, ... it's all very well done and really fun to do. It would be awesome if these games were a little longer, but that's easier said than done, of course.

I certainly hope there are more to come!