Ren Guoy

@ghosteathuman
24 Followers
185 Following
109 Posts

Asian & Nerdy.

Tests in production on Fridays. 汚いオタク.

Capital T Toxic. Absolute Red Flag 🚩.

Posts & opinions my own. He / Him.

Posts are ephemeral and will be gone eventually.

Bloghttps://bagofwords.zrguoy.com

Enjoying progging raids on week 1 so far. Took a few tries but cleared M9N & M10N. Kinda enjoying the mood where everyone is trying to figure out the fights. Special love to Red Mages for the rez when both healers are down.

Also Soken is just popping off with the range of music in the current raid tier!

https://youtu.be/zAGMe_gZm2w?si=lZI-gvgXY8cWyyUS

Browsing a static site with latest Firefox Focus on iOS 18.x. Site works fine on Safari.

I have taken offence from browser lists.

Had Knafeh and Halawet el-jibn, which are great Syrian desserts.

These moments are rare and it makes me cherish my experiences even more.

My experience with Flexbox recently.

Ruby's single splat operator (*) can be used to de-structure arrays and to get a certain segment of an array.

For example:

> array = [1,2,3,4]
=> [1, 2, 3, 4]

# De-structuring the beginning of an array
> *beginning, ending = array
=> [1, 2, 3, 4]
> beginning
=> [1, 2, 3]
> ending
=> 4

# De-structuring the ending of an array
> beginning, *ending = array
=> [1, 2, 3, 4]
> beginning
=> 1
> ending
=> [2, 3, 4]

#ruby