Activity for Razetime
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #279185 |
Post edited: finalized |
— | about 4 years ago |
Comment | Post #279185 |
@Quintec That makes a lot more sense. Edited. (more) |
— | about 4 years ago |
Edit | Post #279185 |
Post edited: |
— | about 4 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) |
— | about 4 years ago |
Comment | Post #279245 |
@dzaima okay, removed that. (more) |
— | about 4 years ago |
Edit | Post #279245 |
Post edited: |
— | about 4 years ago |
Edit | Post #279246 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279245 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279241 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279183 |
Post edited: -2 bytes |
— | about 4 years ago |
Edit | Post #279223 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279221 |
Post edited: |
— | about 4 years ago |
Edit | Post #279221 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279220 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279183 |
Post edited: |
— | about 4 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) |
— | about 4 years ago |
Edit | Post #279183 |
Post edited: -8 bytes |
— | about 4 years ago |
Comment | Post #279185 |
What do you mean by "it"? (more) |
— | about 4 years ago |
Edit | Post #279183 |
Post edited: |
— | about 4 years ago |
Comment | Post #279189 |
Might wanna change the name to something better, just sayin' (more) |
— | about 4 years ago |
Comment | Post #279193 |
Is Canvas longer? (more) |
— | about 4 years ago |
Edit | Post #279191 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Comment | Post #279155 |
Do host your answers on [Try it online!](https://tio.run/##K0gtyjH7DwQA "Perl 6 – Try It Online")
(more) |
— | about 4 years ago |
Edit | Post #279186 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279185 | Initial revision | — | about 4 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) |
— | about 4 years ago |
Edit | Post #279184 | Initial revision | — | about 4 years ago |
Answer | — |
A: "Hello, World!" HQ9+, 1 byte H Obligatory HQ9+ answer. (more) |
— | about 4 years ago |
Edit | Post #279183 | Initial revision | — | about 4 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) |
— | about 4 years ago |