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 Kevin M. Mansour‭

8 posts
75%
+4 −0
Meta Is it good practice to change the names of variables in challenges?

Today, I have posted my first challenge in Code Golf. I have made the Job in 202 byte. Someone in comments, have changed variables name. e.g: From rot to o, and this renaming have saved 2 bytes. ...

1 answer  ·  posted 2y ago by Kevin M. Mansour‭  ·  edited 2y ago by Kevin M. Mansour‭

Question discussion
66%
+2 −0
Challenges Caesar shift cipher

Javascript (V8), 202 97 bytes o=>r=>o.replace(/[a-zA-Z]/g,o=>String.fromCharCode((o<="Z"?90:122)>=(o=o.charCodeAt()+r)?o:o-26)) Try it online! Since the text of input must be ma...

posted 2y ago by Kevin M. Mansour‭  ·  edited 2y ago by Kevin M. Mansour‭

Answer
66%
+2 −0
Challenges Recreate the Stack Overflow logo

HTML + CSS, 29 + 677 (706) bytes HTML: <div id="S"><div></div></div> CSS: #S{box-sizing:border-box;position:relative;display:block;height:192px;width:163px;}#S div{pos...

posted 2y ago by Kevin M. Mansour‭

Answer
60%
+1 −0
Challenges "Hello, World!"

Kotlin, 34 bytes fun main(){print("Hello, World!")} Try it online!

posted 2y ago by Kevin M. Mansour‭

Answer
60%
+1 −0
Challenges "Hello, World!"

Swift, 23 bytes print("Hello, World!") Try it online!

posted 2y ago by Kevin M. Mansour‭

Answer
60%
+1 −0
Challenges "Hello, World!"

PureScript, 25 bytes main=log("Hello, World!") Try it online!

posted 2y ago by Kevin M. Mansour‭

Answer
60%
+1 −0
Challenges Guess the language! (Cops' Thread)

Erlang (escript), 43 bytes - cracked by Shaggy main([])-> io:fwrite("Cops and Robbers"). Printing Cops and Robbers as the challenge says. Try it online!

posted 2y ago by Kevin M. Mansour‭  ·  edited 2y ago by Shaggy‭

Answer
50%
+0 −0
Challenges "Hello, World!"

Lean, 64 bytes def hello_world:io unit:=put_str"Hello, World!"#eval hello_world Try it online!

posted 2y ago by Kevin M. Mansour‭

Answer