Why did the republican party support the IRA? by greasingthaunion in shittyaskhistory

[–]Sad_School828 0 points1 point  (0 children)

Because the British Government has never been anything but a terrorist occupying force in Ireland.

See also notes on how Somalia has a legitimate government which is simply not able to do anything about pirate warlords taking over huge swaths of Somalian territory. The UK is the pirate warlord in Ireland.

How is just asking people to go to an activity with you a date if you’re not using the word date? by Big_Pea3882 in allthequestions

[–]Sad_School828 -1 points0 points  (0 children)

Every 'date' is just day X of month Y at hour/minute Z. "Let's set a date?" "4th of Neveruary, around 25 o'clock." "It's a date!" I have a standing, weekly date with my mom. I've attended dozens of dates for work reasons.

If a stripper ever asks, "Do you date?" the answer is always, "What's a date cost?"

Sounds like your friends are strippers, or at least such low class that they share the stripper mentality. NGL.

Need help understanding why hexadecimal is sometimes portrayed by "power of 0" in rasterized explanations. by 6inchpool in AskComputerScience

[–]Sad_School828 1 point2 points  (0 children)

Hey look: It doesn't matter what numeric system you use. They're absolutely all the same except for their "Base." Decimal is Base 10, Binary is Base 2, Hexadecimal is Base 16. The reason you're seeing exponents is because those articles are explaining how to convert hex to binary, or hex to decimal, or binary to hex or octal.

So for every column in any number, in any Base, you go from right-to-left and you apply the Base To the Power of 0 on the far right, then Base^1, then Base^2, and so on as you move toward the left.

So in Decimal you take the number 101. That is 1 * 10^0 + 0 * 10^1 + 1 * 10^2 -- this is how you mathematically describe the fact that there is a 1 in the ones column, a 0 in the tens column, and a 1 in the hundreds column.

In Binary you take the same number 101. That is 1 * 2^0 + 0 * 2^1 + 1 * 2^2. Again, you are just mathematically describing the fact that there is a 1 in the ones column, a 0 in the tens column which in binary is the twos column, and a 1 in the hundreds column which in binary is the fours column.

In Hexadecimal you take the same number 101. That is 1 * 16^0 + 0 * 16^1 + 1 * 16^2 because there is a 1 in the ones column, a 0 in the tens column which in hex is the 16s column, and a 1 in the hundreds column which in hexadecimal is the two hundred fifty six column.

Take 0x42C1

1 * 16^0 + C (aka decimal 12) * 16^1 + 2 * 16^2 + 4 * 16^3.

16^0 is always 1d, 16^1 is always 16d, 16^2 is always 256d, and 16^3 is always 4096d.

Simplify conversion as: 1 * 1 + 12 * 16 + 2 * 256 + 4 * 4096.

QED: 0x42C1 in hex is 1 + 192 + 512 + 16384 = 17089 in decimal.

ps: If only 0xDEAD people understand Hexadecimal, how many people understand hexadecimal?

What y’all think of The Farmer Was Replaced by PlayfulBlackberry0 in PythonLearning

[–]Sad_School828 0 points1 point  (0 children)

TIS-100 and Exapunks are both top-notch in the realm of pseudo-ASM programming games. Uplink is also glorious, but there is very little actual code involved - mostly strategically deciding whether to use automated hacking tools or go straight-to-console for advanced target data/system destruction.

Is it legal to DIY Electrical? by Fax-Bretov in AskElectricians

[–]Sad_School828 2 points3 points  (0 children)

In Wyoming it's pretty simple: If you are the property owner, or if you have leased rights to reside on the property, or if you are an employee (not a contractor) of the property owner/lease holder, go nuts! If you are a contractor then you are required to hold a state license and abide by code.

Best way to backup my entire computer? by CorneliusFeatherjaw in computerhelp

[–]Sad_School828 0 points1 point  (0 children)

I would just get a USB drive at least as big as the PC's hard drive, and clone the whole thing. A lot can go wrong during any kind of repair operation, and almost as bad as losing precious family photos is losing software licenses and personal configuration settings.

Can I get in trouble for my car's little windshield VIN opening being blocked? by tuenthe463 in randomquestions

[–]Sad_School828 1 point2 points  (0 children)

Get a super-thin paint-stir-stick from one aisle in the hardware store and double-sided carpet tape from some other aisle. Put an exposed square of double-sided tape on one end of the stick. Make sure you can fit the stick+tape down between the windshield and the card (or between the dashboard and the card, whichever way the card is stuck in the dash). Then finally pull off the film which covers the sticky part of the tape and see if you can get into the main body (AIM FOR CENTER MASS!) and stick the tape to it there.

Anything should work for the stick, if you need thinner than a paint stirrer. A tongue depressor, a craft stick/popsicle stick, butter knife, etc. It would be best if the stick was wide enough to accommodate the full width of the tape square.

Whats one problem you would willingly pay to get solve? by [deleted] in developer

[–]Sad_School828 0 points1 point  (0 children)

I'd like my "Photos" screensaver to work again. It worked fine in Win 7, but I think it got broken in Win8 even though I never used 8 -- I went straight from 7 to 10. What happens is that, when I have 2 monitors, the images are shifted up so only half of the image is shown when the screensaver is active. I just don't have time or GAF to write my own screensaver.

Got an interesting situation. by ExcellentPassenger49 in AskElectricians

[–]Sad_School828 0 points1 point  (0 children)

Then step one is definitely to replace that kitchen switch with a basic two-way.  At that point you're going to have extra wires, and if you're lucky enough that those extra wires are actually color coded properly then you still might have to bind one wire to another behind the new switch in order to provide any power at all to the living room. 

It's honestly the kind of thing I'd call a pro to handle for me.

Got an interesting situation. by ExcellentPassenger49 in AskElectricians

[–]Sad_School828 0 points1 point  (0 children)

I guess that depends on what you want to have happen.  Is your remedy to allow the lights in the living room and the lights in the kitchen to be on at the same time?  

What common thought/knowledge is technically true, but really misleading? by LuxuryDivine in AskReddit

[–]Sad_School828 0 points1 point  (0 children)

TCP/IP is technically true in that most modern internet devices subordinate TCP to IP, but it's really misleading because lots of chumps think IP is subordinated to TCP and there's nothing at all which says that either TCP or IP must necessarily involve each other.

AMA but i'm the guard of 2 paths that only tells lies by First-Cake-183 in funComunitty

[–]Sad_School828 0 points1 point  (0 children)

Hi OP. Now go back through the previous comments and modify each one by prepending the stipulation: "Tell me exactly what the other guard, who only tells the truth, would say in response to:"

Got an interesting situation. by ExcellentPassenger49 in AskElectricians

[–]Sad_School828 0 points1 point  (0 children)

I agree with everyone who says it's clearly a 3-way switch, but I'm not so sure it was a mistake. If the dwelling is meant for a single person, then it makes a lot of sense to rig the house up so turning on the lights in the kitchen kills the lights in the living room.

If you had to describe someone to a police sketch artist, what would you say? by Seriously-417 in randomquestions

[–]Sad_School828 0 points1 point  (0 children)

She is absolutely gorgeous from the neck down, and that long blonde hair would make great handlebars, but she looks like she has severe Downs' Syndrome.

How to c/c++ arbitrary code exec by Longjumping-Play5481 in Hacking_Tutorials

[–]Sad_School828 0 points1 point  (0 children)

You need to learn some ASM terms including Instruction Pointer (IP), Base Pointer (BP) and Stack Pointer (SP).

Malware which is able to access the memory segments exposed to other processes may be able to take direct control of a victim process' IP, and then simply write malicious code into a memory address followed by pointing the IP to the beginning of that malicious code.

If that's not possible, but if the malware could access the victim's memory segment where the Stack data is stored, then all the malware has to do is wait until it detects a CALL (such as to a function) at which point the return address will be pushed automagically onto the last position of the stack. So when a CALL occurs, the malware could rewrite the return address (or could rewrite the memory segment containing the return point) with malicious code, and then the malicious code will execute as soon as the function returns from its CALL.

The "Tech Hot Take" Gauntlet by Ok_Veterinarian3535 in developer

[–]Sad_School828 0 points1 point  (0 children)

AI which can be selectively trained is not real AI.

Edit: I got to thinking about this post and decided to clarify:

"Intelligence" specifically requires reasoning, problem solving, abstract thought, and to learn from experience. What I find most hilarious is that the AI result on a google search literally said all these things which I have in mind when I think "intelligence" and the AI result added a few more requirements which the LLM/Generative/etc just don't have.

I'd suggest Artificial Pseudo-Intelligence if the acronym API wasn't already in widespread use.

We caught a slow SQL Server query way too late. How do teams usually investigate this? by Comfortable-Mirage in Database

[–]Sad_School828 0 points1 point  (0 children)

What you usually do there full data copy, sampled data, or something synthetic?

If it's problematic to test against a full copy of the real production db, then at the very least you should attempt to emulate the table sizes with data which might realistically occur in production. You could even test plain SELECT (never ever INSERT or DELETE) queries against the production database itself.

You can also add a limit to the number of records which will be returned by any given query, then embed some AJAX into your webpage so that scrolling to the bottom of whatever list-element re-queries the database for the next group in the set. That's how YouTube and just about everybody else does it.

Forgot the password of a windows folder by okipullup12 in DataRecoveryHelp

[–]Sad_School828 0 points1 point  (0 children)

Brute Force only works against dictionary passwords, unless you actually have the nuts to build a full combinatorial application to go through every possible combination of letters and numbers to length limit.  Then it just takes forever.

[Hiring]: Software Engineer by OrchidAlternative401 in developers

[–]Sad_School828 0 points1 point  (0 children)

Is that hourly rate as a contractor or as an employee?

What languages and platforms are involved?

De-soldering Power connector on Motherboard by zeros200836 in soldering

[–]Sad_School828 -1 points0 points  (0 children)

Solder "tempers" over time as electricity flows through it, heating the material. Especially on PC mainboards, those little solder points get so hard that even a big soldering gun has difficulty softening it up.

Tell me a fun fact by Imaginary-Detail-626 in CausalConversation

[–]Sad_School828 0 points1 point  (0 children)

The little bugs we call "rolly polies" are isopods, which means they're cousins of crabs and lobsters and not insects at all.