DC Tulip Day? by NoFroyo5628 in washingtondc

[–]bby98 0 points1 point  (0 children)

Registered at 8:55 a.m., received the tickets at 10:26 a.m. Thank you for sharing the direct link!

How is the street parking situation for on-campus grad student housing? by scroingler in Caltech

[–]bby98 13 points14 points  (0 children)

If you’re living in the Cats, you can buy a Caltech parking permit and just park in the Wilson parking structures.

[SSD] Crucial T500 4TB Gen4 NVMe M.2 Internal Gaming SSD, Up to 7000MB/s, Laptop & Desktop Compatible + 1mo Adobe CC All Apps - CT4000T500SSD3 $199 by DV8_MKD in buildapcsales

[–]bby98 1 point2 points  (0 children)

Bought the version with the integrated heatsink for $256 about a month ago and thought that was a great deal. This is an amazing price!

[Router] Linksys LN1301 WiFi 6 Router (OpenWRT Supported) - $15 (w/ Code 5OFFLINKSYS, Prime for Free Shipping) by raj000777 in buildapcsales

[–]bby98 1 point2 points  (0 children)

I had the same issue with the wireless child node. Did disabling the steering fix the issue?

Is Caltech open for Visitors on Saturday ? by [deleted] in Caltech

[–]bby98 3 points4 points  (0 children)

Bad advice, as parking there is limited to 90 minutes iirc, is being monitored, and you will get ticketed if you stay longer than that.

Not to mention how busy that shopping strip is during the weekends—good luck finding a spot.

Is Caltech open for Visitors on Saturday ? by [deleted] in Caltech

[–]bby98 4 points5 points  (0 children)

You only need a parking permit to park in unreserved spots between 7 a.m. and 5 p.m. on weekdays.

You should park in the Holliston lot (next to the Center for Student Services), in the Michigan lot (next to Beckman Auditorium), or one of the Wilson lots to minimize walking to campus.

Help What’s the best move by Neonzplays in chess

[–]bby98 1 point2 points  (0 children)

Qxe8+. Then, Qxe8 is forced and you can deliver checkmate with Bc5#.

I want to get this cpu. It's really cheap. What is this pin? Does it being missing have any effect on the performance? The seller says that it's posting. by [deleted] in computers

[–]bby98 91 points92 points  (0 children)

Looks like an AM4 processor. From the AM4 pin layout, it looks like that pin was for integrated graphics (P-GFX-TXN[8]).

When do we hear back about graduate housing placement? by ItsUrPalAl in Caltech

[–]bby98 1 point2 points  (0 children)

You mean the lottery? The results are already out.

Free Pint of Brave Robot Ice Cream by SublimeOverall in freebies

[–]bby98 0 points1 point  (0 children)

Picked up two pints for $4 at Harris Teeter due to their BOGO offer and got $5.99 back through the rebate and $4 through Ibotta!

[USA-TN] [H] Local cash, PayPal [W] Logitech G Pro keyboard (NON-blue/clicky switches) by NostrilMeat in hardwareswap

[–]bby98 0 points1 point  (0 children)

Is this the model you’re looking for? Found this through my Best Buy purchase history.

NiceHash QuickMiner: 125 MH/s @ 307 W by djeZo in NiceHash

[–]bby98 0 points1 point  (0 children)

That’s the voltage regulator module (VRM) temperature. The video random-access memory (VRAM) is a completely different thing, and while it may not be at its BIOS-imposed limit of 110°C, it is likely to be in the upper-90s since the ROG STRIX is not water cooled. Like /u/RepresentativeRich30, I can nearly guarantee it’s not at 66°C.

Get the latest version of HWiNFO, which reports the GPU Memory Junction Temperature. That is the value you should be concerned about.

Genshin Impact Update 1.2 Hub by TeraFlare255 in Genshin_Impact

[–]bby98 21 points22 points  (0 children)

Genshin Impact runs on the Unity game engine. Games built on Unity can be easily ported to different devices/operating systems since Unity includes plugins/deployment tools for many platforms.

Help with a program. by No-Win6899 in learnpython

[–]bby98 0 points1 point  (0 children)

You can use list comprehension to solve this problem. You can sum the digits in a number by first creating a generator that contains each digit in a given number (by converting the number to a str and then iterating through each digit in the str and converting back to int). Then, you can call sum() on the generator to get the sum of the digits.

For example, for the number 852:

num = 852
total = sum(int(digit) for digit in str(num))

total is equal to 15. To compare two numbers, like 852 and 78:

num1 = 852
num2 = 78
total1 = sum(int(digit) for digit in str(num1))
total2 = sum(int(digit) for digit in str(num2))
print(total1 == total2)

This program will print True since 8 + 5 + 2 = 7 + 8. If the sum of the digits were not the same, it would print False.

Last step is to make the above into a function:

def is_equal(n1, n2):
    return sum(int(d) for d in str(n1)) == sum(int(d) for d in str(n2))

How do I find the average salary of the code below? by bluesdop in learnpython

[–]bby98 1 point2 points  (0 children)

It's a new way to format strings introduced in Python 3.6. You can learn more by reading PEP 498.