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

107 posts
75%
+4 −0
Challenges 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.

posted 3y ago by Razetime‭

Answer
75%
+4 −0
Challenges 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 r...

posted 3y ago by Razetime‭

Answer
75%
+7 −1
Meta Who should the temporary moderators be?

I nominate Jo King, as they were already voted as moderator by the community earlier. They have proven to be an active and trustworthy moderator, who is also a consistent contributor to the code g...

posted 3y ago by Razetime‭

Answer
75%
+4 −0
Sandbox Find the IP address class [FINALIZED]

posted 2y ago by Razetime‭  ·  edited 10mo ago by trichoplax‭

75%
+4 −0
Challenges 1, 2, Fizz, 4, Buzz!

RoadLang, 340 bytes wagwan my slime x is 0 rip dat bong till x bigger den 99 n dat x is x n 1 ayy bossman (x leftova 15) be 0 init bruv man say"FizzBuzz" yeah init bruv ayy bossman (x lef...

posted 3y ago by Razetime‭

Answer
75%
+4 −0
Challenges The Ludic Numbers

The Ludic Numbers are a sequence that pops up when you apply the sieve of eratosthenes to the natural numbers, completely removing the numbers every iteration. Here is how they are generated: The...

3 answers  ·  posted 2y ago by Razetime‭  ·  last activity 2y ago by General Sebast1an‭

Question code-golf sequence
75%
+4 −0
Challenges Calculate a person's age

Challenge Given a date with day, month and year, calculate how old a person born on that day would be today. Input can be in any reasonable format(params, array, date object). Input will never b...

0 answers  ·  posted 3y ago by Razetime‭

Question code-golf date
75%
+4 −0
Challenges Create an Alphabet Diamond

Canvas, 10 7 6 bytes Z[]/┼┼ Try it here! Creates the top portion, centers it, and mirrors it. -3 bytes from dzaima's hint. -1, found the 6 byter! Explanation Z[]/++ Z push the al...

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

Answer
75%
+4 −0
Challenges Create an Alphabet Diamond

Stax, 12 bytes ç ∩<▬%▌ê▓jFo Run and debug it Same method as the Canvas answer.

posted 3y ago by Razetime‭

Answer
75%
+4 −0
Challenges The Pell Numbers

Introduction The Pell(no, not Bell) Numbers are a simple, Fibonacci-like sequence, defined by the following relation: $P_n=\begin{cases}0&\mbox{if }n=0;\\1&\mbox{if }n=1;\\2P_{n-1}+P_{n-2...

9 answers  ·  posted 3y ago by Razetime‭  ·  last activity 2y ago by torres‭

75%
+4 −0
Challenges When The Ternary Is Balance

Inspired by this Rosetta Code article. Introduction Balanced Ternary is a method of representing integers using -1, 0 and 1 in base 3. Decimal 11 = (1 * 32) + (1 * 31) + (−1 * 30) = [1,1,-1] or ...

3 answers  ·  posted 2y ago by Razetime‭  ·  last activity 2y ago by Moshi‭

Question code-golf number base
75%
+4 −0
Challenges "Hello, {name}!"

jq, 14 bytes "Hello, \(.)!" Try it online! jq has expression interpolation, pretty epic!

posted 2y ago by Razetime‭

Answer
71%
+3 −0
Challenges Make a frequency table (histogram)

Challenge Given an array in any suitable format, create a frequency table for it. i.e: Pair each unique element with the number of times it appears in the array. You can return the frequency tabl...

10 answers  ·  posted 2y ago by Razetime‭  ·  last activity 1y ago by Moshi‭

Question code-golf math
71%
+3 −0
Sandbox Create a range grid

posted 2y ago by Razetime‭

Article code-golf matrix
71%
+3 −0
Meta How can we grow this community?

Questions The most important thing to gain traffic in a code golf site is having good questions. SE code golf has 12,718 questions(and counting), and many people are still actively posting questio...

posted 2y ago by Razetime‭

Answer
71%
+3 −0
Sandbox The Ludic Numbers[FINALIZED]

posted 2y ago by Razetime‭  ·  edited 10mo ago by trichoplax‭

71%
+3 −0
Sandbox Balance my ternary[FINALIZED]

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

71%
+3 −0
Sandbox Are All Elements Equal?[FINALIZED]

posted 2y ago by Razetime‭  ·  edited 10mo ago by trichoplax‭

71%
+3 −0
Meta How free is "free" for cops and robbers?

Free as in usable on a free platform "free" meaning there must be a downloadable interpreter available for the language which can run the program with the required features, on an online/offline s...

posted 2y ago by Razetime‭

Answer
71%
+3 −0
Meta Leaderboards are live

Few QoL improvements can be made: Some trivial challenges(i.e. "Hello World!") get many, many answers, so the leaderboard should show a scrollbar beyond some point(after the first 10 submissions, ...

posted 3y ago by Razetime‭

Answer
71%
+3 −0
Challenges Towering Cistercian Representation

SE Sandbox Link, Codidact Sandbox Link Inspired by this video. Given a positive integer, draw its Cistercian representation as ascii art. The Challenge Cistercian numerals are a decimal-based...

1 answer  ·  posted 3y ago by Razetime‭  ·  edited 2y ago by General Sebast1an‭

Question code-golf ascii-art
71%
+3 −0
Challenges Reverse an ASCII string

Ruby, 14 bytes ->s{s.reverse} Try it online! a straightforward builtin.

posted 3y ago by Razetime‭

Answer
71%
+3 −0
Sandbox Weave strings together[FINALIZED]

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

71%
+3 −0
Challenges 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 num...

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

Answer
71%
+3 −0
Meta 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 criterio...

posted 3y ago by Razetime‭

Answer