sarahasakura

@[email protected]

Hello! I’m a lot of things, but most fundamentally I’m a person who is terrible at writing bios

This profile is from a federated server and may be incomplete. Browse more on the original instance.

sarahasakura,

Nah, there have been some blogs recently from engineers who were bucking the Microservice trend - Notably Amazon Prime Video moved back to more of a monolith deployment and saw performance improvement and infrastructure cost reduction

linkedin.com/…/shift-back-monolithic-architecture…

I wouldn’t say anything is wrong with them, the pros and cons have been there, but the cons are starting to be more recognized by decision makers

sarahasakura,

Favorite factions: Evolution was my first run in with the idea of group who wasn’t necessarily a tag team, and that whole experience still holds a place in my heart. More modern, I’m a fan of the Elite; Kenny, Hangman, and the Bucks really brought me back into the scene in 2019 (also liked them individually in NJPW and other things I’d see them in)

Least Favorite: if I had to pick one, I think I’d have to say things like House of Black. Not that they’re bad; just the whole vibe isn’t my thing

Between 2016 and 2019, I was trying to get into NJPW after a 10 year hiatus from the sport. One thing that struck me as interesting but a challenging idea was how important the different stables were. Not a bad thing, I just remember feeling like, “wow, this is pretty different”

sarahasakura,

I don’t think I was watching for that, or if I was watching at the time I wasn’t paying attention lol

I did like the both of them too, especially Eddie who I had a lot more exposure to. Viva la raza

sarahasakura,

My weekend was pretty great! Today’s the end of a juat-over-a-week long vacation for me

Last weekend, I visited a friend and got to meet some new people. They’re the first group who only know me by my chosen name, that I’ve only been using with close friends for a few months. It’s been nice knowing that

Last night, a friend (one of the close ones who’s in on my chosen name) and I went to Philly to see a pro wrestling show. The crowd was great, and there was a lot of love and acceptance and support

I’m looking forward to getting back to work and back into my normal routines, with thankfully a shorter work week ahead

sarahasakura,

I’ve got a 20 month old at home, but thankfully my wife let me visit a friend. They were going to come with, but ended up staying home and seeing my Mom

I feel you on the anxiety, I’m very much an introvert and awkward around new people. I got lucky with my friend being extroverted. Spent a lot of the night sitting quietly and listening, but eventually they got me to open up

sarahasakura,

No worries about having the time wrong, I was surprised when it was going to be starting around 5

A buddy and I were 3rd row, and I had a blast! I’ll say up front I don’t keep up much with either brand

Some of the match endings felt a bit abrupt, and there were a few mistakes made earlier in the show, but overall some good spots, a good surprise in the Douki v Callihan match, and a good crowd

sarahasakura,

I started on Digg in the summer/fall of 2005 right around the launching point of Diggnation; maybe 5-10 episodes in. A friend got me introduced to that. I was there until September of 2010 and then made the move to reddit as a part of the Great Digg Migration, and now find myself here on the fediverse

I’ve never been a very active contributor, but still felt connected and enjoyed seeing the conversations and links that people were sharing

sarahasakura,

Expanding a bit on what others have said, for anybody who is further interested (simplified; this whole discussion could be pages and pages of explanation)

The code we write (source code), and the code that makes the machine do its thing (executable code) are usually very different, and there are other programs (some are compilers, others are interpreters, I’m sure there are others still) to help translate. Hopefully my examples and walkthrough below help illustrate what others have meant by their answers and gives some context on how we got to where we are, historically

At the bare metal/electricity flowing through a processor you’re generally dealing with just sequences of 0s and 1s - usually called machine code. This sequence of “on” and “off” is the only thing hardware understands, but is really hard for humans, but it’s all we had at first. A program saved as machine code is typically called a binary (for formattings sake, I added spaces between the bytes/groups of 8 bits/binary digits)

00111110 00000001 00000110 00000001 10000000 00100110 00000000 00101110 00000000 01110111

A while later, we started to develop a way of writing things in small key words with numerical values, and wrote a program that (simplified) would replace the key words with specific sequences of 0s and 1s. This is assembly code and the program that does the replacements is called an assembler. Assemblers are pretty straight forward and assembly is a close 1:1 translation to machine code; meaning you can convert between the two


<span style="color:#323232;">LD A, 0x01
</span><span style="color:#323232;">LD B, 0x01
</span><span style="color:#323232;">ADD A,B
</span><span style="color:#323232;">LD H, 0x00
</span><span style="color:#323232;">LD L, 0x00
</span><span style="color:#323232;">LD (HL), A
</span>

These forms of code are usually your executable codes. All the instructions to get the hardware to do its thing are there, but it takes expertise to pull out the higher level meanings

This kind of writing still gets tedious and there are a lot of common things that you’d do in assembly that you might want shortcuts for. Some features for organization got added to assembly, like being able to comment code, add labels, etc but the next big coding step forward was to create higher level languages that looked more like how we write math concepts. These languages typically get compiled, by a program called a compiler, into machine code, before the code can run. Compilers working with high level languages can detect a lot of things and do a lot of tricks to give you efficient machine code; it’s not so 1:1

This kind of representation is what is generally “source code” and has a lot of semantic things that help with understandability


<span style="color:#323232;">int main() {
</span><span style="color:#323232;">  int result = 1+1;
</span><span style="color:#323232;">}
</span>

There are some, very popular, high level languages now that don’t get compiled into machine code. Instead an interpreter reads the high level language and interprets it line by line. These languages don’t have a compilation step and usually don’t result in a machine code file to run. You just run the interpreter pointing to the source directly. Proprietary code that’s interpreted this way usually goes through a process called obfuscation/minimization. This takes something that looks like:


<span style="color:#323232;">def postCommentAction(commentText, apiConnection) {
</span><span style="color:#323232;">  apiConnection.connect()
</span><span style="color:#323232;">  apiConnection.postComment(commentText, userInfo)
</span><span style="color:#323232;">  apiConnection.close()
</span><span style="color:#323232;">}
</span>

And turns it into:


<span style="color:#323232;">def func_a(a,b){b.a();b.b(a,Z);b.c();}
</span>

It condenses things immensely, which helps performance/load times, and also makes it much less clear about what the code is doing. Just like assembly, all the necessary info is there to make it work, but the semantics are missing

So, to conclude - yes, you can inspect the raw instructions for any program and see what it’s doing, but you’re very likely going to be met with machine code (that you can turn into assembly) or minified scripts instead of the kind of source code that was used to create that program

sarahasakura,

I’ll join you in that! Fun to showoff the shelf candy and see some from others

I’ve been playing since the early 2000s, starting with D&D 3.5. Later picked up a few Pathfinder 1e books to help supplement the D&D. Also got Serenity around that time since my group was really into Firefly

That was my collection for a while, then I inherited some D&D Basic, 1e, and 2e sets from a friend’s family who was decluttering. I also inherited my D&D 4e stuff in a similar way

Another break later I got my first 5e stuff and slowly built that as books released. Star Wars got picked up when my 5e group got into an Edge of the Empire game. Around that time Starfinder and Pathfinder 2 were coming out, and Paizo’s books subscription was wonderful, though I did eventually cancel because we just weren’t playing those games

The most recent updates are the smaller indie games like Kids on Bikes, Mork Bork, Cyborg, etc. And also the Cyberpunk/Shadowrun sets

We don’t play nearly enough to actually get to all of these games, but they’re really nice reference and inspiration to have

https://lemmy.blahaj.zone/pictrs/image/7TSLOqaBPT.jpg

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • KamenRider
  • Ask_kbincafe
  • TheResearchGuardian
  • KbinCafe
  • Socialism
  • oklahoma
  • SuperSentai
  • feritale
  • All magazines