The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,224 other subscribers

Happy birthday UDP!

Posted by jpluimers on 2020/08/20

Today it’s the 40th birthday of UDP. Or more precise: 40 years after [WayBackRFC 768 – User Datagram Protocol got submitted.

It is still used a lot today, so be sure to read more background on [WayBackUser Datagram Protocol – Wikipedia.

And of course on a birthday, it is nice to have few good jokes. So here we go:

[WayBack“I would tell you a joke about UDP, but you probably wouldn’t get it.” | Hacker News

[WayBack] I would tell you a joke about UDP, but you probably wouldn’t get it. So here’s a TCP joke | reddit.

[Archive.is]:

  • UDP packet bar walks into
  • The best thing about UDP jokes is that I don’t care if you get it. #sysadmin #networking #IT

You can generate more yourself: udpjoke.py

–jeroen


#!/usr/bin/python2
# coding: utf-8
import random
array = ['i', ' ', 'w', 'o', 'u', 'l', 'd', ' ', 't', 'e', 'l', 'l', ' ', 'y', 'o', 'u', ' ', 'a', ' ', 'u', 'd', 'p', ' ', 'j', 'o', 'k', 'e', ' ', 'b', 'u', 't', ' ', 'i', ' ', 'w', 'o', 'u', 'l', 'd', ' ', 'n', 'o', 't', ' ', 'b', 'e', ' ', 's', 'u', 'r', 'e', ' ', 'i', 'f', ' ', 'y', 'o', 'u', ' ', 'w', 'o', 'u', 'l', 'd', ' ', 'g', 'e', 't', ' ', 'i', 't']
finalstr = ''
length = len(array)
for x in range(0, random.randint(0, len(array))):
finalstr += array.pop(random.randint(0, length1))
length = length1
print finalstr

view raw

udpjoke.py

hosted with ❤ by GitHub

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

 
%d bloggers like this: