Posts
1156
Following
123
Followers
142
of the @kitsunecafe@tech.lgbt notoriety

"what a fascinating yet quietly terrifying being neofox_pleading" @kirakira@furry.engineer

eli, vampire kitsune

Edited 6 months ago

@kasdeya aw, thank you neofox_hug_cat i kind of volunteered because it was between me doing it, and someone who doesn’t understand it need to spend even more time trying to learn it and work through it. i figured this was the least sacrifice between all the options

0
0
2

eli, vampire kitsune

however thanks to all the stuff i did at work, i was able to convince my company to work on a casual time basis so that i can freely wind down my hours in order to focus on my games when i want to

1
0
4

@foxysen i just had to unblock mastodon.social to see your posts cat_attack

0
0
1
boost to cleanse your timeline from the instance drama
0
2
0

eli, vampire kitsune

should i reward myself for all the work i did this week by getting a facial piercing

0% yes
100% yes (bold letters)
1
0
2

eli, vampire kitsune

well after 70 hours in 5-ish days i’m done working for now neofox_flop_woozy

0
0
6
Edited 6 months ago

call me mystery

5
6
1
Edited 6 months ago

Motherfuckers will say some shit like "Ugh, I hate Turn-base combat and random encounters! ninini", and the next second they will go to social media and start arguing with random people.

2
3
1
re: workposting
Show content

@tempest thanks!! 💜

this entire project Sure Is Something and has company-wide notoriety for having been a terribly managed shitshow. it’s now common knowledge that everything is saddled with tons of technical debt despite not having been released yet

0
0
1
re: workposting
Show content

@ilobmirt neofox_hug_dog_heart

admittedly, it’s because she has no idea what anything does and wanted to alleviate her anxiety related to the project’s impending deadline

i have no idea what anything does either but i’m okay with that neofox_up_paws

0
0
0
re: workposting
Show content

@catgirl_so as the supreme knower of [thing] eternal, one must enjoy the benefits of the position responsibly. which is say constantly with no interruption, especially not for questions of any sort.

0
0
2
workposting
Show content

@rowan correcting {the (now former) world expert on [thing]} about [thing] makes one the new expert on [thing]. rebuff any questions about [thing] with "it's too political to ask questions"; this ensures one cannot be [corrected, dethroned]. secure in the knowledge of one's place as the supreme knower of [thing] eternal, take a cozy nap. neocat_floof_happy

1
1
1

ouhh-shaped moss 🍮 [Viridi Vix]

sorry

1
3
2

this is a fantastic video on how to make good tutorials for any kind of game - not just the strategy games he’s talking about in the video

https://www.youtube.com/watch?v=-GV814cWiAw

2
2
4
re: workposting
Show content

@Shivaekul aw, thank you! 💜 it’s not too bad, i’m going to take most of next week off to compensate :3

her exact phrasing was “it’s just too political right now” (in reference to sending an email to another company that we hired to checks notes answer questions)

1
0
4

eli, vampire kitsune

Edited 6 months ago
workposting
Show content

my work week so far

  • already at 40 hours
  • had to correct the “world’s leading expert in [thing]” on [thing]
  • rewrote a sql query that originally took 3 minutes to run, it now takes 3-5 seconds
    • to be fair to the previous implementer, he had to write it without knowing anything about the data
    • the person who made the database couldn’t write it because he “hasn’t played with the tables much”
  • was loudly talked down to by my boss because she’s upset that her attempt at replacing my software with something made by chatgpt didn’t work right
    • this conversation started because i had a question and was told that it’s too political to ask questions
6
0
10
re: small js infodump, sorry
Show content

@kirakira side note: strict mode fixes the globalThis issue in constructor functions

1
0
2

@kirakira neofox_pat_sad you’re a real js programmer now (i’m sorry)

0
0
4

eli, vampire kitsune

Edited 6 months ago
re: small js infodump, sorry
Show content

@kirakira both of them produce an Object, which is the same one you get when you use the object literal ({ foo: 1 }) syntax. these are all mutable by default (unless if you use one of the metaprogramming functions like Object.freeze or, more specifically, Object.preventExtensions which stops new properties from being added to an object)

0
0
2

eli, vampire kitsune

Edited 6 months ago
small js infodump, sorry
Show content

@kirakira ES6 classes are not exactly the same but bear significant resemblance to constructor functions. for sake of simplicity, it’s easiest to say that ES6 classes are syntactic sugar on top of constructor functions. the major difference is that classes throw an error when attempting to construct them without the new keyword while a constructor function will have a corrupted state (notably, it will inherit the globalThis as its own this).

the following declarations are nigh-identical

class bitchA {}

function bitchB() {
  if (!new.target) {
    throw new TypeError("calling bitch constructor without new is invalid")
  }
}
2
0
3
Show older