mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 05:26:28 +02:00
12 lines
No EOL
270 B
Python
12 lines
No EOL
270 B
Python
"""
|
|
Description
|
|
Writing a large file to disk in the jobs directory, exhausting the
|
|
space will temporarly disable other jobs to be started.
|
|
|
|
Discovered by
|
|
Discord Derpius#9144
|
|
"""
|
|
|
|
with open("beans","w") as f:
|
|
n = 2**24
|
|
f.write("I love beans\n"*n) |