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 hydroxyl-radical‭

Type On... Excerpt Status Date
Edit Post #290667 Post edited:
improve LaTeX notation for the modular arithmetic
5 days ago
Edit Post #294030 Post edited:
where oh where did the newline data go
5 days ago
Edit Post #294030 Post edited:
fix the link
5 days ago
Edit Post #294030 Post edited:
]]where'dmyspacebarsgoinmypreviousedit?anyways, base 36 is nice but base 256 would be better
5 days ago
Edit Post #292173 Post edited:
Tag with 'decision-problem'
6 days ago
Suggested Edit Post #290667 Suggested edit:
improve LaTeX notation for the modular arithmetic
(more)
helpful 6 days ago
Edit Post #294029 Post edited:
clarify 'clickable'
6 days ago
Edit Post #294029 Post edited:
not just in questions,
6 days ago
Suggested Edit Post #292173 Suggested edit:
Tag with 'decision-problem'
(more)
helpful 6 days ago
Comment Post #294030 1. better way to encode the nets in different ways (right now it uses an order such that some nets that use a lot of space vertically can use a lot of space when encoded) 2. better way to encode the list of all valid nets (e.g. base 256)
(more)
6 days ago
Edit Post #294030 Post edited:
where'dmyspacebarsgoinmypreviousedit?anyways, base 36 is nice but base 256 would be better
6 days ago
Edit Post #294030 Post edited:
Update TIO with the save(463to400bytes)
6 days ago
Edit Post #294030 Post edited:
Delete the spaces
6 days ago
Comment Post #294030 editing this in, thanks! though, actually optimizing for code golf optimization, would probably warrant a better compression/encoding scheme (using \x00 through \x7f and possibly r"...")
(more)
6 days ago
Edit Post #283294 Post edited:
Might as well link the tags </opinion>
9 days ago
Edit Post #294030 Post edited:
10 days ago
Edit Post #294030 Initial revision 10 days ago
Answer A: Net​​ or​​ not?
[Python 3], 463 400 343 338 bytes -63 bytes thanks to trichoplax's suggestion to remove spaces \ -57 bytes by simple conversion to base 36 \ -5 bytes by removing `base=` (seriously, how did I miss this, thanks trichoplax) ```python lambda s:hex(sum(2i(c=='#')for i,c in enumerate(s)))[2:]in...
(more)
10 days ago
Suggested Edit Post #283294 Suggested edit:
Might as well link the tags </opinion>
(more)
helpful 10 days ago
Edit Post #294029 Post edited:
10 days ago
Edit Post #294029 Post edited:
10 days ago
Comment Post #294029 Motivated from seeing ["a [proof-golf]-like [cops-and-robbers]"](https://codegolf.codidact.com/posts/293001) and ["This is [code-golf]"](https://codegolf.codidact.com/posts/293750), so I've put it on this site due to its higher relevance / [quality of life]impact here (for example, you don't really s...
(more)
10 days ago
Edit Post #294029 Initial revision 10 days ago
Question Add inline tags in text - e.g. "[tag:this-is-a-tag-name]"
Currently, making a tag that looks like this: code-golf ...is somewhat hard: ```html code-golf ``` although if you drop the requirement for it to link to the URL for that tag it can be `a-bit-shorter` - Would something similar to what Codegolf SE has (being `[tag:code-golf]`) be feasibl...
(more)
10 days ago
Edit Post #294028 Post edited:
on the left* (please ignore my previous edit doing nothing ??????????????)
10 days ago
Edit Post #294028 Post edited:
Ok but it doesn't count as a major change I was just lazy; <s>bytecount</s> won't happen or anything until others actually help me in which case its needed for credit (or something like that)
10 days ago
Edit Post #294028 Post edited:
Ok but it doesn't count as a major change I was just lazy <s>bytecount</s> won't happen or anything until others actually help me in which case its needed for credit (or something like that)
10 days ago
Edit Post #294028 Post edited:
Syntax highlight right
10 days ago
Edit Post #294028 Initial revision 10 days ago
Answer A: Convert to Hexadecimal
[JavaScript (Node.js)], 60 bytes ```javascript n=>{for(l='';n;l="0123456789ABCDEF"[n%16]+l,n>>=4);return l} ``` [Try it online]! Explanation ```javascript n=>{for(l='';n;l="0123456789ABCDEF"[n%16]+l,n>>=4);return l}/ l=''; | ⁡S...
(more)
10 days ago
Edit Post #280226 Post edited:
Incorrect answer for test case (and a missing space)
23 days ago
Suggested Edit Post #280226 Suggested edit:
Incorrect answer for test case (and a missing space)
(more)
helpful 24 days ago