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 orthoplex‭

13 posts
77%
+5 −0
Challenges Can you give me half?

dc, 3 unique bytes, 138 bytes This challenge is pretty easy if you aim for just 4 unique bytes. For example, you could push the stack depth repeatedly to get ascending integers, set the precision ...

posted 2y ago by orthoplex‭

Answer
71%
+3 −0
Challenges Looping counter

Ruby, 18 bytes loop{$><<$/=?*+$/} Try it online!

posted 2y ago by orthoplex‭

Answer
66%
+2 −0
Challenges Looping counter

brainfuck, 31 bytes ++++++++++[[>]>-[<+>---]<[.<]>] Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Make my value binary

dc, 4 bytes 2o?p Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Looping counter

Python 3, 28 bytes _="" while 1:_+="*";print(_) Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Looping counter

Python 2, 26 bytes _=1 while 1:_*=10;print~-_ Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Looping counter

Bash, 17 bytes echo x$1;./$0 x$1 Try it online! Thanks to celtschk‭ for spotting my mistake :)

posted 2y ago by orthoplex‭  ·  edited 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Looping counter

dc, 13 bytes [r1+pA*rdx]dx Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Looping counter

><>, 10 bytes 1:naoa*1+! Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Create a range grid

Python 3, 49 bytes lambda m,n:[[*range(n*_,n*_+n)]for _ in range(m)] Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges Create a range grid

Python 2, 46 bytes lambda m,n:[range(n*_,n*_+n)for _ in range(m)] Try it online!

posted 2y ago by orthoplex‭

Answer
60%
+1 −0
Challenges From the smallest seed

HQ9+, 2 bytes Two quines. QQ

posted 2y ago by orthoplex‭

Answer
50%
+0 −0
Challenges It's Hip to be Square

dc, 9 bytes _?dvd*-^p Try it online! Comparisons are expensive in dc, so you have to get a bit creative. I came up with $0^{n-\lfloor\sqrt{n}\rfloor^2}$.

posted 2y ago by orthoplex‭

Answer