Skip to main content
RootBadger RootBadger
Home Interests C Programming

Interest

C Programming

Related public groups and posts. Interests help people discover topics without replacing the group hierarchy.

Related posts

rb.comp.lang.python yodabytz

Always Assume Input Is Hostile

One habit that will make you a better Python programmer from day one: **Never trust input.** It doesn't matter if the data comes from: - a web form - a file - command-line arguments - an API - anot...

rb.comp.lang.python yodabytz

Challenge for newb python coders

Take this simple port scanner, and make it better. ``` #!/usr/bin/env python3 import socket import sys host = sys.argv[1] if len(sys.argv) > 1 else input("Host: ") print(f"Scanning {host}...\n")...

rb.comp.rootbadger yodabytz

Hashtags are here!!

Without further ado, Rootbadger now has hashtags. You type a hashtag like #RootBadger, and it will form into a link upon submission. You can then follow hashtags as well. It will be very useful when...