Viewing profile — arthurtw
arthurtw
HN member- Joined
- Sat, Nov 01, 2014, 8:26 AM UTC
- HN karma
- 630
- Public activity
- 36 items
- HN profile
- View on Hacker News ↗
About arthurtw
No profile information was provided.
Recent public activity
- story
- story
- story
-
comment
Comment #12276528
Those terms are for the site, not for the text editor. :-) I might open source the editor when I have time.
-
comment
Comment #12275766
Not yet. I might do that later, but it requires some cleanup work. The code has three parts: Markdown to HTML text, HTML DOM to Markdown, and the editor. The total size is about 30…
-
comment
Comment #12274525
Wow, that's fun. No wonder few applications use "/" for hotkey combination. Maybe I should use a different key, say, ".".
-
comment
Comment #12274420
Yes, its HTML editing is pretty basic. I did not intend to make a full-blown HTML editor. There are already many ones. My goal is to make Markdown and HTML editors working together…
-
comment
Comment #12274363
Yes it follows CommonMark, but is stricter for safety consideration (e.g. does not allow scripts).
-
comment
Comment #12274252
It does not force you to use mouse click on GUI elements. You can use `⌘`+`/` (or `Alt`+`/` on Windows) to switch between WYSIWYG/Markdown modes. Actually it's the preferred way un…
- story
- story
-
comment
Comment #12245080
I believe OP means a WYSIWYG editor is much better than Markdown. In terms of a markup language in pure text, I think Markdown is your best bet. Folks in CommonMark.org tries to "s…
-
comment
Comment #12234368
Didn't you use existing rich text editors like TinyMCE or CKEditor?
-
comment
Comment #12234340
At least you must be careful when using multiple Facebook accounts from the same computer. It might cause your main Facebook account locked, and take you a while to have Facebook u…
-
comment
Comment #12234278
Forum anonymity (or more precisely, disposable account) is the source of moderation pain and the reason of suboptimal forum content quality. It's one of the main issues I want to a…
-
comment
Comment #12233969
Exactly. That's why we did not use Google identity service. Google accounts are disposable, while Facebook enforces one-account-per-person policy.
-
comment
Comment #12233850
Maybe you are right. But Reddit uses Markdown, too, and people seem OK with that? Most redditors are not developers.
-
comment
Comment #12233079
You can use a verified Facebook account to join Twincl site for free. Ideally, we should use our own SMS verification process to prevent disposable accounts - maybe when we have mo…
- story
- story
-
comment
Comment #9155218
> 2. Static compilation. This makes a massive difference over Python in terms of catching and correcting problems at compile time vs run time. Correct. When comparing a static prog…
- story
-
comment
Comment #8894420
Bingo. With `regex!(r"[a-zA-Z0-9_]+")`, Rust finally runs faster than Nim. I’ve updated the article.
-
comment
Comment #8885275
Yes, I think Nim deserves more attention, and that’s part of the reason I wrote this article.
-
comment
Comment #8885266
Good point! I’ve updated the article accordingly. I learned the Entry thing a few months ago, but Rust’s BTreeMap did not support the entry API at that time, so my code did not use…