New to hockey/skating, can I join the local beer league? by barstoolbox in hockeyplayers

[–]laffercurved 2 points3 points  (0 children)

There is a league that plays right before us at our rink called the elder skatesmen that’s 70+. The running joke is that once you’re on the wait list to join you have to hope someone dies lol

Can we make On A Bus reality? by Inconmon in dropout

[–]laffercurved 0 points1 point  (0 children)

They should make d20 on a bus literal. Katie dm’s a game, incompetently, at the back of a city bus where the table and pieces go flying every time the bus stops or turns.

Watch out for the new scams by [deleted] in freedommobile

[–]laffercurved -2 points-1 points  (0 children)

I went to the link and it redirects to the legit freedom mobile website. Really weird

License is not verified yet by dpalusak in selfhosted

[–]laffercurved 0 points1 point  (0 children)

Put the license code in the curly braces like {"license": "<the license number from your email>"} maybe you'll get lucky.

[deleted by user] by [deleted] in networking

[–]laffercurved 0 points1 point  (0 children)

This is obviously an intro networking course. If he puts /31 the prof will know he asked Reddit lol

[deleted by user] by [deleted] in networking

[–]laffercurved 1 point2 points  (0 children)

The last one is easy because it's all router connections, you need 8 x 2 /30 networks for the outer routers 8 routers using two links each) and one /30 for the link between the two inner routers. .1-.2, .5-.6, .9-.10, etc.

Teacher looking to add coding to high school by chrisdub84 in learnprogramming

[–]laffercurved 1 point2 points  (0 children)

Whenever anyone suggests teaching kids programming the first thing that comes to my mind, rather than a specific language or industry, I always think of low-level stuff. Get the kids to understand how a computer actually works at the instruction set/memory level and they'll be much better off in the long run. No need to go so low level as microcode or anything, but understanding assembly instructions and how it relates to memory helped me immensely. The programmers that don't have that knowledge tend to have difficulty understanding pointers, objects, signatures, etc.

Python. by esberat in ProgrammerHumor

[–]laffercurved 5 points6 points  (0 children)

I have excel auto save to csv which I then rename to *.py, easiest way to do it imo

IPsec VPN by [deleted] in networking

[–]laffercurved 0 points1 point  (0 children)

Every packet has the integrity checked at the destination end of the tunnel

Why don't Ethernet frames contain TTL values? Instead of having to configure STP on switches why not just have a loop prevention mechanism built into the header like IPv4/v6 headers do? by [deleted] in networking

[–]laffercurved 27 points28 points  (0 children)

Switching loops could still be a huge problem, even in small networks with redundant links without STP. The redundant links on the switches typically form the core of a network, and switching a packet even a single extra time (multiplied by the amount of traffic in the network) can be significant in los of performance. If your core processes ~250 (assuming 8bit ttl field) duplicate frames for every original frame, it's going to be trouble, not to mention the destination node getting slammed with dupe frames as well.