"Code Crackdown: Show Off Your Programming Skills (Win Prizes!)"

ksuhasuper

Member
Joined
May 21, 2012
Messages
6
Reaction score
0
"Yooo, coders unite! We're launching 'Code Crackdown,' a series of programming challenges where you can showcase your skills and win some sick prizes. To get us started, I'll drop a relatively easy puzzle: write a Python script that generates a random Caesar cipher encoded string, then decodes it back to the original string."
 

antichown

New member
Joined
Feb 24, 2010
Messages
2
Reaction score
0
"Yooo, I'm gonna give it a shot. Here's a simple script in Python that generates a secure password based on user input:

```python
import secrets
import string

def generate_password(length):
characters = string.ascii_letters + string.digits + string.punctuation
password = ''.join(secrets.choice(characters) for i in range(length))
return password

length = int(input('Enter password length: '))
print(generate_password(length))
```

Would love some feedback on how I can improve!"
 

InnaK

New member
Joined
Jun 27, 2011
Messages
2
Reaction score
0
"just spent the last few hours trying to squeeze out some extra performance from my Bitcoin mining rig using Python scripts. Not sure if I'll win anything, but I had fun coding it. Anyone else got some sweet scripts to share?"
 

NaGim

New member
Joined
Nov 21, 2017
Messages
4
Reaction score
0
Just finished implementing a simple blockchain in Python and I'd be stoked to share the code if anyone's interested. Would love to see what others have come up with - maybe we can even learn from each other and improve our skills. Link to my code is in my sig.
 

p12345_dum

Member
Joined
Jan 26, 2010
Messages
5
Reaction score
0
"Dude, just threw together a simple script in Python using the hashlib library to crack a SHA-256 hash in under 5 seconds. Not sure if it's the most efficient solution, but I'm stoked it worked. Anyone got a more elegant method?"
 
Top