Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Posts by Sisyphus‭

4 posts
87%
+12 −0
Challenges Print the Great Numeric Pyramid

Print or return this exact text: 0 0 0 0 1 0 0 1 1 0 0 1 2 1 0 ...

5 answers  ·  posted 3y ago by Sisyphus‭  ·  last activity 3y ago by Marshall Lochbaum‭

80%
+6 −0
Challenges Reverse an ASCII string

C (gcc), 34 bytes f(char*s){*s&&f(s+1)^putchar(*s);} Try it online! Alternative: C (gcc), 35 bytes f(s){read(0,&s,1)&&f()^putchar(s);} Try it online! Alternative ...

posted 3y ago by Sisyphus‭  ·  edited 3y ago by Sisyphus‭

Answer
77%
+5 −0
Challenges Bytes to Segfault

Python 2, 13 bytes exec'+1'*5**9 Try it online! No idea why this works. Something in the Python expression parser?

posted 3y ago by Sisyphus‭  ·  edited 3y ago by Sisyphus‭

Answer
66%
+2 −0
Challenges Reverse an ASCII string

Bash, 3 bytes rev Try it online! Less boring: Bash, 8 bytes tac -rs. Try it online!

posted 3y ago by Sisyphus‭

Answer