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

Type On... Excerpt Status Date
Edit Post #279185 Post edited:
finalized
over 3 years ago
Comment Post #279185 @Quintec That makes a lot more sense. Edited.
(more)
over 3 years ago
Edit Post #279185 Post edited:
over 3 years ago
Comment Post #279245 @dzaima I think keeping a delay between the frames is a bit restrictive on some languages with no time support.
(more)
over 3 years ago
Comment Post #279245 @dzaima okay, removed that.
(more)
over 3 years ago
Edit Post #279245 Post edited:
over 3 years ago
Edit Post #279246 Initial revision over 3 years ago
Article Weave strings together[FINALIZED]
Given a list of strings(and optionally, their length) as input, weave the strings together. Intro Your goal is to mimic the `WV` operator in Pip. Take a list of strings and alternate between their characters like so: ``` hello, world, → hwc,eoo,lrd,lle,od → hwceoolrdlleod code ``` Effec...
(more)
over 3 years ago
Edit Post #279245 Initial revision over 3 years ago
Article Golf me a polygonal loader
Given three positive integers as input, animate an ascii-art polygonal loading symbol on the screen. Intro Using the first input \$n\$, Take one the following regular polygons: ``` ...
(more)
over 3 years ago
Edit Post #279241 Initial revision over 3 years ago
Answer A: Partial Sums of Harmonic Series
Stax, 9 bytes Ç≈f♠É↔X+ö Run and debug it Explanation(Unpacked): ``` wii{um|+;< w iterate until a falsy result is reached: ii push iteration number i twice {um map range [1..i] to their reciprocals |+ sum that list ;< compare to the input(get...
(more)
over 3 years ago
Edit Post #279183 Post edited:
-2 bytes
over 3 years ago
Edit Post #279223 Initial revision over 3 years ago
Article Towering Cistercian representation [FINALIZED]
Inspired by this video. Given a positive integer, draw its Cistercian representation as ascii art. ![enter image description here][1] The Challenge Cistercian numerals are a decimal-based number representation system which use simple line based drawings to represent 4-digit numerals. ...
(more)
over 3 years ago
Edit Post #279221 Post edited:
over 3 years ago
Edit Post #279221 Initial revision over 3 years ago
Answer A: Prime Difference
[Husk], 8 bytes Ψḟo≥⁰≠İp Try it online! or Verify first 8 values It is always a good day when you get to use `Ψ` in your program. Explanation ``` Ψḟo≥⁰≠İp İp to the infinite list of prime numbers, Ψ apply this higher order function on overlapping pairs ḟo f...
(more)
over 3 years ago
Edit Post #279220 Initial revision over 3 years ago
Answer A: Do you want any special tag styling or requirements?
For reference, this is the list of tags we have from SE which is 9 pages long, so I'll take the liberty of listing out which ones are "required" tags, as they are used to signify a scoring criterion: - code-golf - code-challenge - popularity-contest - tips - fastest-code - cops-and-robbers -...
(more)
over 3 years ago
Edit Post #279183 Post edited:
over 3 years ago
Comment Post #279147 @mbomb007, mostly a matter of tradition more than anything. Hello world is more of a catalog type question than a serious competitive one.
(more)
over 3 years ago
Edit Post #279183 Post edited:
-8 bytes
over 3 years ago
Comment Post #279185 What do you mean by "it"?
(more)
over 3 years ago
Edit Post #279183 Post edited:
over 3 years ago
Comment Post #279189 Might wanna change the name to something better, just sayin'
(more)
over 3 years ago
Comment Post #279193 Is Canvas longer?
(more)
over 3 years ago
Edit Post #279191 Initial revision over 3 years ago
Answer A: Obligatory Quine Challenge
[Husk], 8 bytes S+s"S+s" Try it online! Basically Leo's original quine. It concatenates the string evaluated version of `S+s` to itself. So: `"S+s" + "\"S+s\""` gives the original code.
(more)
over 3 years ago
Comment Post #279155 Do host your answers on [Try it online!](https://tio.run/##K0gtyjH7DwQA "Perl 6 – Try It Online")
(more)
over 3 years ago
Edit Post #279186 Initial revision over 3 years ago
Article Catch the fruit
Implement a osu!catch style game. Introduction osu!catch is a rhythm game where the player moves a "basket" to catch "fruits" falling from the top of the screen to the beat of a song. Think pong, but with timing. It is highly recommended to watch this video before reading the question. Here...
(more)
over 3 years ago
Edit Post #279185 Initial revision over 3 years ago
Article Length of a Sumac Sequence[FINALIZED]
Heavily based on this closed challenge from SE. A Sumac sequence starts with two non-zero integers \$t1\$ and \$t2.\$ The next term, \$t3 = t1 - t2\$ More generally, \$tn = t{n-2} - t{n-1}\$ The sequence ends when \$tn ≤ 0\$ (exclusive). No negative integers should be present in the se...
(more)
over 3 years ago
Edit Post #279184 Initial revision over 3 years ago
Answer A: "Hello, World!"
HQ9+, 1 byte H Obligatory HQ9+ answer.
(more)
over 3 years ago
Edit Post #279183 Initial revision over 3 years ago
Answer A: Evaluate a single variable polynomial equation
[APL (Dyalog Unicode)], 11 3 1 byte ⊥ Try it online! Anyone who can golf this further gets a cookie! Function submission which takes reversed coefficients as right argument and \$x\$ as left argument. -8 bytes from dzaima and rak1507(APL Orchard). -2 bytes from Adám‭. ...
(more)
over 3 years ago