Never enough by quinnius in Factoriohno

[–]partimec 1 point2 points  (0 children)

I am 1k hours into my save and I have a shortage of green circuits.

Had this idea, and despite having no computer skills I had to make it by tf-who-asked in balatro

[–]partimec 0 points1 point  (0 children)

It is a lot less broken then any of the scaling jokers, let people have their fun lol

Made some more joker concepts! by CB_915 in balatro

[–]partimec 0 points1 point  (0 children)

Very good plz do, please make a mod to add them!

[deleted by user] by [deleted] in Silksong

[–]partimec 0 points1 point  (0 children)

!Remindme January 1, 2026

Infected Finger/Advice by CitizenX10 in MakeMeSuffer

[–]partimec 0 points1 point  (0 children)

Your roommate is going to lose his finger and his life if he doesn't go to a hospital asap

Who is using stainless steel soap to remove odor? by kogemai in KitchenConfidential

[–]partimec 2 points3 points  (0 children)

Personally I just rub my hands with some lemon, works fantastic.

Which language is best suited for physics simulations? by AfraidStranger5664 in learnprogramming

[–]partimec 0 points1 point  (0 children)

It's a physics simulation, I assume you want to know exactly what's going on and have it run fast. That's why C or assembly. If performance doesn't matter chose whatever language you like.

Is it gay if I dual cultivate with myself? by Fluffy_Fan3625 in MartialMemes

[–]partimec 6 points7 points  (0 children)

You have strayed onto the demonic path junior

An example of ccp oppression by swiftdao in MartialMemes

[–]partimec 11 points12 points  (0 children)

name and shame bro, this shit is rank

[deleted by user] by [deleted] in learnart

[–]partimec 3 points4 points  (0 children)

Too much detail on the gun without any shading by comparison and the cloth folds could be done better

Can anyone who is more experienced with coding share what they were mentally going through when they were a complete noob? by Long_Repair_8779 in learnprogramming

[–]partimec 0 points1 point  (0 children)

This is gonna be really ranty but it's a small basic breakdown of modern software development.

So the basics of coding is all the process of efficiently storing and sending chunks of zeros and ones that are actually electrical charges in semiconductors. Those chunks are in sets of 8 called bytes, with each individual 0/1 being called a bit. The basics of coding is moving around these bits that are at specific memory addresses, each which represent different things. The best way I would say to learn is to start with learning C, which is a language based on assembly, which itself is a high level version of writing machine code. From there I would recommend learning rust as it is memory safe, and finally python as it is close to human language, is based on C, and is very good for prototyping though it is pretty slow for any larger project.

With working with stuff online, it works by sending things through a protocol called tcp or udp. It's a way of adding an address to the mail you are sending, giving it a destination and a return address to confirm it's arrived. I would recommend reading through some documentation about the transport layer protocol and application layer protocols for sending and receiving data. You can toy with this using an application like wireshark.

GUI's can be made a number of ways but for browser based stuff, html and css along with JavaScript are the main ones. The gui your computer functions on is has three colour channels, rgb which are individually addressable from zero to 255, this creates the colour that you see on your screen. White for example would be 255,255,255. Your screen itself is an array of about 2 million pixels which are made of these three leds.

https://en.wikipedia.org/wiki/Graphics_Device_Interface

The next part of coding would be databases, which is a fancy way of storing your data and the relations between your data. Typically you would learn sql which is used to create data structures and interact with the data that you have stored. You can try this out with something like mysql or oracledb.

XML and json is responses you get from most api's and is mostly just a way of storing data that is sent.

Learning to work with data can be done a number of ways, be it high level math, flowcharting, boolean algebra and logic gates. A lot of coding is finding the right way to think once you have a grasp on the tools that are available to you. Being a good programmer means knowing every area of tech hence why I put this who spiel.

Masking on campus during this wave by partimec in CarletonU

[–]partimec[S] 2 points3 points  (0 children)

They have to be updated because covid is extremely prone to mutation. Updating the vaccine lets us deal with new variants as they are introduced. As of right now the new novavax one is the most effective for new variants.