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 |