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 »

Activity for Sisyphus‭

Type On... Excerpt Status Date
Edit Post #279702 Initial revision over 3 years ago
Answer A: Reverse an ASCII string
[Bash], 3 bytes rev Try it online! Less boring: [Bash], 8 bytes tac -rs. Try it online!
(more)
over 3 years ago
Edit Post #279701 Post edited:
over 3 years ago
Edit Post #279701 Post edited:
over 3 years ago
Edit Post #279701 Initial revision over 3 years ago
Answer A: Reverse an ASCII string
[C (gcc)], 34 bytes f(chars){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 #2: [C (gcc)], 36 bytes f(s){write(read(0,&s,1)&&f(),&s,1);} Try it online!
(more)
over 3 years ago
Edit Post #279422 Post edited:
over 3 years ago
Edit Post #279422 Initial revision over 3 years ago
Answer A: Bytes to Segfault
[Python 2], 13 bytes exec'+1'59 Try it online! No idea why this works. Something in the Python expression parser?
(more)
over 3 years ago
Comment Post #279420 Actually, I think even just `main;` works (since return type defaults to int).
(more)
over 3 years ago
Edit Post #279169 Post edited:
over 3 years ago
Edit Post #279169 Initial revision over 3 years ago
Question 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 0 1 2 2 1 0 0 1 2 3 2 1 0 0 1 2 3 3...
(more)
over 3 years ago