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

Type On... Excerpt Status Date
Edit Post #283415 Initial revision about 3 years ago
Answer A: Recreate the Stack Overflow logo
HTML + CSS, 29 + 677 (706) bytes HTML: ```html ``` CSS: ```css #S{box-sizing:border-box;position:relative;display:block;height:192px;width:163px;}#S div{position:absolute;bottom:0;left:0;box-sizing:border-box;width:155px;height:68px;border:17px solid #bcbbbb;border-top-width:0;backgro...
(more)
about 3 years ago
Comment Post #282999 [Try it online!](https://tio.run/##S/mfmVuQX1SiUFySogfEmfnWCgr/y/IzUxRyEzPzNDSry4syS1I1lJzzC4oVEvNSFILyk5JSi4qVNK1r//8HAA)
(more)
over 3 years ago
Edit Post #282970 Post edited:
Cleaning Up.
over 3 years ago
Edit Post #282970 Post edited:
over 3 years ago
Comment Post #282970 Yes, you are right. Should I edit the post with the new language?
(more)
over 3 years ago
Comment Post #282903 Hmm, I think No, since I am running on "JavaScript (V8)" but the snippet you added is "JavaScript (NodeJS)".
(more)
over 3 years ago
Comment Post #282967 OK. I thought it is PowerShell since it is worked. :)
(more)
over 3 years ago
Edit Post #282970 Post edited:
Minor Stuff
over 3 years ago
Edit Post #282970 Initial revision over 3 years ago
Answer A: 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!
(more)
over 3 years ago
Comment Post #282967 As far as I know, It is Powershell. [Try it online!](https://tio.run/##K8gvTy0qzkjNyfn/PzU5I19ByTm/oFghMS9FISg/KQkop2StoBySWlySmZeuo1ACYSgYKhgpGHNxAXUUYNfhUZph//8/AA)
(more)
over 3 years ago
Edit Post #282931 Post edited:
First Letter.
over 3 years ago
Comment Post #282932 @#53196 @#53501 Thank you. :)
(more)
over 3 years ago
Comment Post #282903 Edited answer. :)
(more)
over 3 years ago
Edit Post #282903 Post edited:
Golfing..
over 3 years ago
Edit Post #282938 Initial revision over 3 years ago
Answer A: "Hello, World!"
PureScript, 25 bytes ``` main=log("Hello, World!") ``` Try it online!
(more)
over 3 years ago
Edit Post #282937 Initial revision over 3 years ago
Answer A: "Hello, World!"
Lean, 64 bytes ```lean def helloworld:io unit:=putstr"Hello, World!"#eval helloworld ``` Try it online!
(more)
over 3 years ago
Edit Post #282936 Initial revision over 3 years ago
Answer A: "Hello, World!"
Swift, 23 bytes ```swift print("Hello, World!") ``` Try it online!
(more)
over 3 years ago
Edit Post #282935 Initial revision over 3 years ago
Answer A: "Hello, World!"
Kotlin, 34 bytes ```kotlin fun main(){print("Hello, World!")} ``` Try it online!
(more)
over 3 years ago
Comment Post #282932 Thank you since someone has improved my code, should I update my post with the new code or should I keep my answer as is?
(more)
over 3 years ago
Edit Post #282931 Initial revision over 3 years ago
Question 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. So, Is it good practice to change the names of variables in challenges?
(more)
over 3 years ago
Edit Post #282903 Post edited:
....
over 3 years ago
Comment Post #282903 Done! everything is now fine.
(more)
over 3 years ago
Edit Post #282903 Post edited:
Codidact
over 3 years ago
Edit Post #282903 Post edited:
Cleaning Up.
over 3 years ago
Edit Post #282903 Initial revision over 3 years ago
Answer A: Caesar shift cipher
Javascript (V8), 202 97 bytes ```js o=>r=>o.replace(/[a-zA-Z]/g,o=>String.fromCharCode((o=(o=o.charCodeAt()+r)?o:o-26)) ``` Try it online! Since the text of input must be manually changed from the code, here is how to change it, Go to `console.log(rot("Hello World")(4));` and change text b...
(more)
over 3 years ago