nickwitha_k (he/him)

  • 1 Post
  • 214 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle


  • This is fair and warranted.

    Also, to be fair, Windows is a trash-tier piece of software that become little but adware/spyware in a trenchcoat, masquerading as an operating system. I ran an install in a VM a couple of weeks ago for the first time in nearly two decades and even the basic installation process is on par with the WinXP alpha (before the installer was ready), requiring extra driver disks and software just to be able to think about installing. I had to fight with UEFI and Grub to get Arch to boot alongside Fedora the other day and that was a much more enjoyable process.













  • Top row, second column. That chip is a Xilinx (now AMD) Spartan 6 Field-Programmable Gate Array (FPGA). An FPGA is a type of chip that contains an array of logic gates, flip-flops, and other elements whose interconnects can be “programmed” (I use quotes because it’s more like configuration than software programming). These elements are collectively referred to as the FPGA “fabric” and the naming of the individual elements varies between manufacturers but Xilinx uses “Logic Cells”.

    The fabric of this particular chip has 74,637 Logic Cells (there’s more element types but I’m not going into those because I’m still learning any them).

    What makes FPGAs so special? Basically, they contain all of the parts needed to make a CPU (or other digital circuit). An FPGA may not be able to implement a general purpose CPU that is as fast or powerful as custom silicon but, it can do it. A CPU implemented on an FPGA is known as a “soft core”.

    What is RV32? Simply, a 32-bit RISC-V processor. There are some open-source RV32 implementations that will both fit in the pictured FPGA and are capable of booting mainline Linux.



  • Yeah… I’d argue, from my anarchist view point, that Marx nearly had it. Humans and unjust hierarchies have existed longer than economics, so, I feel that to be an oversight on his part. To my thinking, economic division is a mechanism of creating or sustaining a hierarchy of classes. The problem isn’t purely economic nor sociological but both, that is socio-economic (like electricity and magnetism are make up electro-magnetism).

    Economics (wealthy disparity), religion (castes), and violence are all mechanisms used to separate people into hierarchies of power and allow a small number to exercise power over others. Any hierarchy of societal power results in repression. The Soviets betrayed the Makhnovists, rolled tanks into Czechoslovakia to prevent self-determination, and committed genocide via forced relocation of “problematic” ethnic groups to destabilize any resistance to their hierarchy of power that made all subservient to Moscow.


  • I’m posting another comment because you seem to be genuinely interested in discussion the concepts that you are bringing up in your essay. I haven’t yet fully read it, though I have skimmed and will spend some time giving out a fair read.

    I do not think that I’ll have much positive in my critical analysis based mainly upon my philosophical orientation (anarchist) and neurodivergence (AuADHD so, have strong feelings about what I perceive as just/unjust ex. hereditary rule is intrinsically unjust). From a writing style/communication perspective, it does seem, at a high level, to be well-written.

    I’ll try to remember to get some time to read through the rest of it on the weekend.



  • Modifying software that might not be within the scope of the company that I work for, much less my team, on systems that I explicitly do not have authorization to make such changes on? No, I would not be doing that.

    An important thing to remember is that going all-in on a given tool is going to result in a bad time. You suggestion of SQL, for example, excels in querying and modifying data that lives in a database and follows the expected structures in said database. Most data is not in databases, nor is it structured in a compatible manner, if at all. The workarounds needed to coax SQL into performing such tasks would result in syntax both more arcane and more verbose than the regex necessary to transform it into something compatible.

    Use the right tool for the right job. For transforming semi-structured and unstructured data into something useful in a practical amount of time, regex is frequently the right tool.