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 »

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
1.6k posts
 
81%
+7 −0
Meta How do we handle standardizing things?

This sounds like a great idea to me. To summarize how we can move forward on this: For the Codidact Team Create a new meta tag (defaults? name pending) that is one of the options for the requir...

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

Answer
81%
+7 −0
Challenges Print the Great Numeric Pyramid

Python 2, 76 bytes i=27 while~i:print' '*i+' '.join(`min(i,j,27-i-j)`for j in range(28-i));i-=1 Try it online! Computes the digit in row i from the bottom, position j as min(i,j,27-i-j). F...

posted 4y ago by xnor‭  ·  edited 4y ago by xnor‭

Answer
81%
+7 −0
Meta Who should the temporary moderators be?

As we have set up communities here on the Codidact network we've been appointing temporary moderators. Ultimately, of course, we want each community to choose its own moderators; we've been doing ...

4 answers  ·  posted 4y ago by Monica Cellio‭  ·  last activity 3y ago by deleted user

81%
+7 −0
Meta Should sandbox posts give rep?

The Sandbox is intended to be a place for feedback, right? If I lost rep because my sandboxed idea wasn't good, I'd be pretty angry about that. Don't have the Sandbox modify reputation; instead us...

posted 4y ago by Corsaka‭

Answer
81%
+7 −0
Challenges Bytes to Segfault

Challenge Cause the currently running program to receive the SIGSEGV signal (on Linux or other *nix systems) as fast as possible. What it does with the signal doesn't matter as long as it receives...

10 answers  ·  posted 4y ago by moony‭  ·  last activity 3y ago by radarek‭

Question code-golf *nix
81%
+7 −0
Challenges Reverse an ASCII string

Ahead, 3 bytes SW@ S Slurp entire input to stack W Write entire stack @ End Try it online!

posted 4y ago by snail_‭

Answer
80%
+6 −0
Meta Meet the Codidact Team!

As we start on building a new community here together, we're bound to find some sticking points. Those might be bugs, new features you need, things you need support with... whatever they are, the C...

0 answers  ·  posted 4y ago by luap42‭  ·  edited 4y ago by ArtOfCode‭

80%
+6 −0
Challenges "Hello, World!"

PHP, 13 bytes Hello, World! PHP by default prints all source to output until it encounters <? or <?php.

posted 4y ago by manassehkatz‭

Answer
80%
+6 −0
Meta Should we import our old policy posts?

Over on codegolf.stackexchange.com, we have numerous meta posts outlining loopholes answers can't break, validity of output/input methods and other rule-type posts. Some examples: https://cod...

2 answers  ·  posted 4y ago by lyxal‭  ·  edited 4y ago by lyxal‭

Question discussion
80%
+6 −0
Challenges Partial Sums of Harmonic Series

Japt, 11 10 bytes >0©ÒßUÉ/°T Try it >0©ÒßUÉ/°T :Implicit input of integer U >0 :Greater than 0? © :Logical AND with Ò :Negate the bitwise ...

posted 4y ago by Shaggy‭  ·  edited 3y ago by Shaggy‭

Answer
80%
+6 −0
Challenges 1, 2, Fizz, 4, Buzz!

C (gcc), 113 Bytes i;main(){while(i++<100){char*h[]={"%d "," "},**p=h;i%3||(*p++="Fizz%2$s");i%5||(*p="Buzz ");printf(*h,i,h[1]);}} This compiles with several warnings, but no errors. Here'...

posted 4y ago by celtschk‭  ·  edited 4y ago by celtschk‭

Answer
80%
+6 −0
Meta Link with Stack Exchange

The profile link is only relevant for claiming imported content at the moment. When we import content from SE, linking profiles allows us to give users the option of claiming their posts - thus lic...

posted 4y ago by Mithical‭

Answer
80%
+6 −0
Challenges Shape of an array

Given a non-ragged array (an array where all sub-arrays at a particular level have the same length) of non-negative integers, answer its shape, that is, the length along every dimension. You may as...

6 answers  ·  posted 4y ago by Adám‭  ·  last activity 3y ago by south‭

Question code-golf
80%
+6 −0
Challenges Reverse an ASCII string

JavaScript, 25 24 bytes -1 byte thanks to @Arnauld‭ f=([a,...b])=>a?f(b)+a:b Try it online!

posted 4y ago by Hakerh400‭  ·  edited 3y ago by Hakerh400‭

Answer
80%
+6 −0
Meta Default Rules: Loopholes

Cat Quines Quines that simply output the source code due to some sort of implicit I/O, such as 1 in many languages.

posted 3y ago by Quintec‭

Answer
80%
+6 −0
Meta Default Rules: Code Golf I/O

In languages without STDIN (eg ///) programs may input through insertion into the source code Also applies to cellular automata, in which the most natural way of taking input is specifying some sp...

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

Answer
80%
+6 −0
Meta Default Rules: Libraries

Language + libraries count as a separate language In the header of your entry, you should have something like this: C (clang) + <libraries>, <byte count> You do not need to inclu...

posted 3y ago by Moshi‭

Answer
80%
+6 −0
Meta Default Rules: Code Golf I/O

Regexes may output via the list of matched strings (capture group 0)

posted 3y ago by AndrewTheCodegolfer‭

Answer
80%
+6 −0
Meta Default Rules: Loopholes

Multiple URL shorteners in a web-based challenge In challenges which require fetching data from the Internet, URL shorteners can be problematic. This is because: shorteners made after the cha...

posted 3y ago by AndrewTheCodegolfer‭

Answer
80%
+6 −0
Q&A Getting started with making (and/or solving) KOTH challenges

About King of the Hill King of the Hill (KoTH) is a relatively straightforward concept: Entrants create bots; bots compete against each other. Making a KoTH challenge The exact details of the co...

posted 3y ago by Moshi‭

Answer
80%
+6 −0
Challenges Reverse an ASCII string

C (gcc), 34 bytes f(char*s){*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 ...

posted 4y ago by Sisyphus‭  ·  edited 4y ago by Sisyphus‭

Answer
80%
+6 −0
Challenges Write a Deadfish Interpreter

A rewrite of this SE question with a simpler input format and guidelines. Challenge Deadfish uses a single accumulator, on which all commands are to be performed. It has the following commands: ...

8 answers  ·  posted 4y ago by Razetime‭  ·  last activity 2y ago by Zakk‭

80%
+6 −0
Challenges Diagonalized alphabet

BQN, 18 bytesSBCS 'A'-¬⊸⌊2×13-˜⌜○↕14 Run online! This solution computes a table of c-r, where r is the row number and c is the column number, so that the first row is 0 1 2… and the first colu...

posted 3y ago by Marshall Lochbaum‭

Answer
80%
+6 −0
Challenges Output 256 in many different ways

Vyxal, 20 23 24 solutions Thanks to @Razetime for suggesting using Π, allowing for +1 solution. Try them Online! The programs are meant to be run individually, so the ,Ṡ_ is just there to output...

posted 3y ago by Aaron Miller‭  ·  edited 3y ago by Aaron Miller‭

Answer
80%
+6 −0
Challenges Output 256 in many different ways

Japt, 27 Solutions This started out as a collaboration with Quintec but quickly got very out of hand! Posted with their permission. More solutions to follow. Hopefully! 256 Try it Just the b...

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

Answer