Theme editor

Supporter bonus is liveDonate during this limited campaign to receive the advertised supporter incentive.
Limited-time supporter bonus View the deal

Anti-Social & Lurker - Hideout spot

  • Thread starter Thread starter Axois
  • Start date Start date
  • Replies Replies 172K
  • Views Views 6M
HI how is everyone doing this evening
 

Attachments

You must be registered for see attachments list
Tigger Tigger Wave GIF
Winni Tigger GIF


Good morning afternoon evening everyone!

Is there anyone here who hasn't successfully survived monday?
I don't think they can answer if they didn't survive Monday
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
me fucking you of course!

You must be registered to see attachments
You must be registered to see attachments
Yeah.. so.. *reads it* That's not a permit, Conzi..

 

Attachments

You must be registered for see attachments list

Attachments

You must be registered for see attachments list
HI how is everyone doing this evening
All is serene and the weather is fair,
Tis on eve's like this I have no care,
Woes and sorrows have all been laid bare,
And I'm not even bothered that I'm losing my hair!
 
You must be registered to see attachments
You must be registered to see attachments


So, how many holes has my favorite Swede plugged today?? ❤️
 

Attachments

You must be registered for see attachments list
OK, @Underlord and everyone else. I needed an upgrade.

You must be registered to see attachments
Oh i see
https://i.imgflip.com/8zci2e.gif

Tigger Tigger Wave GIF
Winni Tigger GIF


Good morning afternoon evening everyone!

Is there anyone here who hasn't successfully survived monday?



It is interesting, though I've tried something similar on a javascript AI and immediately realized a whole lot of implementation problems.
It works well as a piece limited, but in the greater whole, the AI chooses implementation versions that do not really work.
For instance, I had it generate a 3x3 gameboard with card objects created based on a prototype object that is supposed to have 4 random values from 1-9 and functions to access its neighbors dynamically based on the current position.

JavaScript:
// Prototype object for the card
const cardPrototype = {
  values: Array.from({ length: 4 }, () => Math.floor(Math.random() * 9) + 1),
  top: function() { return gameboard[this.row - 1][this.col]; },
  bottom: function() { return gameboard[this.row + 1][this.col]; },
  left: function() { return gameboard[this.row][this.col - 1]; },
  right: function() { return gameboard[this.row][this.col + 1]; }
};

// Create a 3x3 gameboard with card objects
const gameboard = Array.from({ length: 3 }, () =>
  Array.from({ length: 3 }, () => Object.create(cardPrototype))
);

// Assign row and column properties to each card
gameboard.forEach((row, i) => {
  row.forEach((card, j) => {
    card.row = i;
    card.col = j;
  });
});

While this isn't wrong, that's not really dynamic. It works if you make sure that you tell the card it's new position every time you change on what tile it is,
but it cannot dynamically detect the neighbors.
A dynamic solution would be to use a function to access the gameboard, find the current row & column indexes and then use those to calculate the neighbors. This also only works on a fixed gameboard size with fixed dimensions, since the gameboard is automatically divided into rows and columns.
This also fixes how the gameboard's tiles are accessible, because it predefines the size of the gameboard during creation.

Instead, a different and more flexible solution would've been to have the gameboard creates as containing an array of x tiles, giving the gameboard a width & height and rather than using direct +/- operations on fixed tiles, using modulo to dynamically access the correct neighbors even if the size & width change.

So it's a correct solution that might not work in the actual project, due to restrictions in what choices it has made for the implementation.

I think it's a nifty thing for simple and straightforward operations, but I don't think it can, in the solution, correctly account of implentation-based restrictions in how it's going to have to interact in the greater whole. The particular choice made by the AI does provide the fastest solution (predefined values, even less math) but it's not necessarily giving the solution that would actually work with the project.

I wonder if anyone managed to get it to work with something like PixiJS and create a simple visual game - because I wonder if the AI would detect the necessary restrictions in rendering hierarchy. :unsure:
HI how is everyone doing this evening
Hey Dover, hey Kuraiken... doing good!
Glad to have you here
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
You must be registered to see attachments

We can all see the page number.

You must be registered to see attachments


There's no need to mention it. It's basically a worthless post.



Next time just



I recommend you reply to someone. It's an easier post and will have more reason to exist.

Edit: @Guz89 is too fast and deleted your post before I could!
Uh, hey.. just curious.. what's the page count? *calculates it*

 

Attachments

You must be registered for see attachments list
I don't think they can answer if they didn't survive Monday
You must be registered to see attachments

Smg4 Smg4skill Issue GIF
Pepe Skill Issue Sticker


The least people who die on a monday can do is tell other people about it.
They should polish up on their ghostly skills.

Boo Ghost GIF
 
You must be registered to see attachments


So, how many holes has my favorite Swede plugged today?? ❤️
You must be registered to see attachments
more than one? how is LC's favorite doc holding up?
 

Attachments

You must be registered for see attachments list
You must be registered to see attachments
You must be registered to see attachments
more than one? how is LC's favorite doc holding up?
I think I'm holding up well? Others might have a difference of opinion though.. like telling me..

 

Attachments

You must be registered for see attachments list
I think I'm holding up well? Others might have a difference of opinion though.. like telling me..

You must be registered to see attachments
i found it keeps things interesting! so it is all good.
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
i found it keeps things interesting! so it is all good.
You must be registered to see attachments
*tries to see what you posted*

You must be registered to see attachments


You have this weird obsession with resizing things.. you know that?

 

Attachments

You must be registered for see attachments list
600 Yay I did it No I don't mean that. this is how many times I had sex this year so far that's what I mean and not what you were thinking
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
*tries to see what you posted*

You must be registered to see attachments


You have this weird obsession with resizing things.. you know that?

You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
I think it is 50 dozen.
I think you're inflating those numbers. Have you forgotten about his little problem??

You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
600 Yay I did it No I don't mean that. this is how many times I had sex this year so far that's what I mean and not what you were thinking
You must be registered to see attachments
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
Back
Top Bottom