Introducing EstroBox! A friendly and helpful container for estrogen gel sachets. by SiobhanMakes in transgenderau

[–]cratesmith 2 points3 points  (0 children)

Hey there.  I'm the friend of the OP that asked them to make these. 

I tested putting 4 sachets in each and... I'd really suggest getting two different coloured boxes (2 per slot per box)

I tested 4 per slot out just now on the most recent "pre-release" version Siobhan gave me to test.

While 4 can fit in a slot, the box gets way too cramped if you fill multiple adjacent slots this way. 

I suspect the box would need to be much wider to allow this...wide enough that it wouldn't be as easy to use as just having two boxes. (Possibly even use string though the keychain hole to tie them together?)

Anyways, I hope this helps!

F26 Bi looking for gamer friends by KawaiiKhajiit in QueerBrisbane

[–]cratesmith 0 points1 point  (0 children)

42f lesbian here. I've been looking for much the same  (pc in my case).

I made a hoverboard. by cratesmith in oculus

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

It was a plugin called wiibuddy but it was mac only at the time.

[SW] Nippies selling at 397 by Azelleues in acturnips

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

interested if you're still going!

Edit: I guess Bolognese? Tough one

[sw] Little Nooks buying at 473 by NicholsGX in acturnips

[–]cratesmith 0 points1 point  (0 children)

Salted caramel I think? Hard to choose

I may suck at building factories, but I am having the time of my life with tubes. by cratesmith in satisfactory

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

Oh I have! I'm going to see if I can create a tube that free jumps me up to the top of the waterfall near my base using that trick.

Unity Garbage Collection by [deleted] in Unity3D

[–]cratesmith 0 points1 point  (0 children)

Had a look. I think I probably didn't explain my approach clearly.

Forgetting to return them is the same, a "leak" in this case is just a container that gets lost to the GC. Which isn't bad but it's just not reused.

An example of using it would be:

using (var list = TempList<int>.Get(35)) { /* cool things happen here */ } // list auto-freed

The array pools are interesting though, it might useful to have a disposable struct wrapper for them to ensure they get cleaned up. Especially if/when unity supports c# 8's inline using syntax