TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: I automated half of my typing

815 pointsby eschluntzover 1 year ago
I've been using this for about a year now - I parsed 6 months of my messages on slack and found the most common phrases I use and generated keyboard shortcuts for them.

86 comments

eschluntzover 1 year ago
I also wrote a blog post with video about the project: <a href="https:&#x2F;&#x2F;erikschluntz.com&#x2F;software&#x2F;2023&#x2F;08&#x2F;26&#x2F;compressing-my-typing.html" rel="nofollow noreferrer">https:&#x2F;&#x2F;erikschluntz.com&#x2F;software&#x2F;2023&#x2F;08&#x2F;26&#x2F;compressing-my-...</a><p>This has been one of the rare side projects that has actually saved me more time than I&#x27;ve put in :)
crazygringoover 1 year ago
This is a very clever idea.<p>However, I realize that I would never want to use something like this that would change over time. E.g. if I ran it every 6 months and last year &quot;db&quot; produced &quot;debug&quot;, while this year it produces &quot;database&quot;. Because talk about messing up my muscle memory and habits. And the language I write changes very much over time.<p>So I&#x27;d actually be much more interested in a &quot;universal&quot; version of this -- if you ran it across books and e-mails and text messages from thousands of authors covering diverse backgrounds and contexts, then what would most reliably help <i>everyone</i>?<p>E.g. expanding &quot;t&quot; to &quot;the&quot; seems like a no-brainer, just like &quot;st&quot; to &quot;something&quot;. Is there a minimal set of, say, 200-500 of these that could simply be turned into a &quot;standard keyboard&quot; that everyone could learn?
评论 #37330876 未加载
评论 #37330247 未加载
评论 #37329847 未加载
评论 #37331271 未加载
评论 #37331427 未加载
评论 #37329875 未加载
评论 #37332952 未加载
评论 #37329808 未加载
评论 #37330613 未加载
评论 #37330432 未加载
评论 #37330990 未加载
评论 #37330696 未加载
评论 #37329831 未加载
评论 #37331190 未加载
评论 #37331123 未加载
评论 #37329777 未加载
paraditeover 1 year ago
Here&#x27;s something you probably didn&#x27;t know if you are not native Chinese speaker:<p>Chinese language has this feature &quot;built-in&quot;.<p>It is officially called 双拼 (Shuangpin)where you type two (English) characters of each word to type out the entire word:<p><a href="https:&#x2F;&#x2F;zh.wikipedia.org&#x2F;zh-sg&#x2F;%E5%8F%8C%E6%8B%BC" rel="nofollow noreferrer">https:&#x2F;&#x2F;zh.wikipedia.org&#x2F;zh-sg&#x2F;%E5%8F%8C%E6%8B%BC</a><p>Even if you don&#x27;t use Shuangpin officially, most Chinese input methods supports a similar feature (简拼) for popular phrases, where you type first English character of each word to type out a phrase of several words.<p>For example, to type &quot;thank you&quot; in Chinese (xiexie), you just type &quot;xx&quot; and it should automatically give you &quot;xiexie&quot; (Chinese characters) in most popular Chinese input methods.
评论 #37333637 未加载
评论 #37339997 未加载
评论 #37334019 未加载
评论 #37333696 未加载
zerojamesover 1 year ago
I _love_ to see projects like this.<p>I was working on a similar problem this weekend, but with whole words instead of abbreviations I had made in a dictionary, and in the general case, fine-tuned on any given corpus of text.<p>I wanted to know: could I write an autocorrect that is &quot;fine-tuned&quot; on a given corpus of text? Use case: I write a lot of docs with long phrases (i.e. &quot;data augmentation&quot;). Could I automate them?<p>I arrived at:<p><pre><code> 1. Calculate &quot;surprisal&quot; of unigrams and bigrams (entropy) from a general dataset (an NYT corpus), give a boost to words in the &quot;fine-tuned&quot; index; 2. Create a trie data structure that is weighed by surprisals. The more surprising a word, the more weight it gets. 3. Use that as advanced autocomplete. </code></pre> I got a working solution here: <a href="https:&#x2F;&#x2F;github.com&#x2F;capjamesg&#x2F;autowrite&#x2F;blob&#x2F;main&#x2F;autocomplete.py">https:&#x2F;&#x2F;github.com&#x2F;capjamesg&#x2F;autowrite&#x2F;blob&#x2F;main&#x2F;autocomplet...</a><p>(No docs yet -- coming in the next few days. Leave a GitHub Issue if you want to chat about it!)
评论 #37331198 未加载
tikkunover 1 year ago
Idea for extending this: keylogger (yeah, that&#x27;s a downside...) that&#x27;ll watch what you type, learn common phrases, identify common ones, then come up with shortcuts, then each time you type the full phrase it gently reminds you of the shortcut.<p>Then anyone can install it, no friction, and over time it&#x27;ll slowly start making you gently more productive.
评论 #37330528 未加载
评论 #37334196 未加载
评论 #37329101 未加载
评论 #37337401 未加载
评论 #37329332 未加载
评论 #37330056 未加载
评论 #37330306 未加载
评论 #37334055 未加载
评论 #37328997 未加载
MobiusHorizonsover 1 year ago
I feel like typing is never really the bottleneck for me except maybe in some chat interactions would have benefited from the extra bandwidth of video or audio. Do you actually save time on task with these kinds of shortcuts?
评论 #37330321 未加载
评论 #37333269 未加载
评论 #37334417 未加载
评论 #37331552 未加载
ThinkBeatover 1 year ago
I have spent a good deal of time trying to create text expansions for myself. (manually)<p>It is a lot harder than I thought it would be. To find aliases that dont misfire too often and provide enough value. Give that I daily communicate in several languages that adds even more trouble.<p>I have now split it by application. Different aliases for different applications. I still have misfires. Mostly I have found I need delinators.
评论 #37331460 未加载
评论 #37331671 未加载
评论 #37334120 未加载
评论 #37332649 未加载
Brajeshwarover 1 year ago
First, I have to make a personal confession — I never liked the SMS short-hand thingy that worked with pre-iPhone phones. That was one of the reason I seldom use SMS&#x2F;Text-Messages unless I really need to.<p>I have been using text-expansion since the early days of TextExpander[1], an app that works on iOS and macOS. However good the iPhone keyboard was, it was always not convenient to type and retype details such as home address, home&#x2F;work map, and many other work&#x2F;personal related info. TextExpander helped a lot.<p>I started looking for an alternative when TextExpander converted to a subscription model, which I (personal) believe is not suitable for such a tool. I found a better alternative in Alfred[2], bundled with its Powerpack — Snippets.<p>macOS&#x2F;iOS also has its built-in “Text Replacements” but it fails me quite often in non-Apple apps. What you have here is similar to that of Apple’s Text Replacement. I let that remain and the others are managed via Alfred. Honestly, I may move to this once I can totally walk out of Alfred (Spotlight is becoming good enough.)<p>However, I’d like to use a delimiter to expand so it does not come in the way of my normal typing (I can touch type). Currently, I use “,” (comma) as a delimiter (Affix) because, in English, there is always a space after a comma and my expansion is only after I type a comma and the short-text without a space. Also the comma key is located conveniently when you touch type.<p>If I do reconcile and stay with the OS’s Text Replacement, I might still introduce the delimiter to prevent automatic expansion of the word which wasn’t intended for that particular scenario.<p>1. <a href="https:&#x2F;&#x2F;textexpander.com" rel="nofollow noreferrer">https:&#x2F;&#x2F;textexpander.com</a><p>2. <a href="https:&#x2F;&#x2F;www.alfredapp.com" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.alfredapp.com</a>
评论 #37332633 未加载
SpacePortKnightover 1 year ago
Years of autocomplete has already made my second language i.e. English poorer. I know words but I often forget to pronounce them because I can no longer remember their spelling. A tool like this would completely obliterate all of my skills.
iamthejuanover 1 year ago
Instead of keywords and memorizing it, why not just use the first letters? I played around with ChatGPT with this few weeks ago and I don&#x27;t think there is an existing software for this, I am not good in programming but hopefully somebody will create. Please see screenshot below.<p><a href="https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;0o4zLwT" rel="nofollow noreferrer">https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;0o4zLwT</a>
评论 #37337192 未加载
评论 #37335941 未加载
评论 #37335991 未加载
leokennisover 1 year ago
Out of curiosity...sure you type less, but do you need to think more about which abbreviation was which word?<p>In iOS I maintain a small list of abbreviations (@@ expands to my e-mail address, lk expands to my name etc.) but if it was hundred(s) I&#x27;d probably lose more time thinking about &quot;what was the abbreviation of &#x27;online meeting&#x27; again&quot; or correcting accidental abbreviations that are part of normal words, than I&#x27;d save time typing...but maybe that&#x27;s just me.
评论 #37336435 未加载
评论 #37333861 未加载
KomoDover 1 year ago
Pretty cool and very useful, as long as you can remember all of the shortcuts (I guess it comes with time!)<p>It kind of reminds me of stenography in a way
eschluntzover 1 year ago
Also the most surprising part of doing this was seeing that abbreviating super short words like &quot;the&quot; -&gt; &quot;t&quot; actually saves far more characters overall than abbreviating long words and phrases that are less common, like &quot;what do you think&quot; -&gt; &quot;wdytk&quot;.
评论 #37330115 未加载
评论 #37331514 未加载
评论 #37329375 未加载
edanmover 1 year ago
This is really cool!<p>I did something similar on Mac, but completely manually. I&#x27;m using Espanso now, but I suffix every shortcut with an &quot;;&quot; character which causes the expansion. Since it&#x27;s home row, it&#x27;s incredibly easy to actually type it right after typing some letters, making it ideal, cause then I can use whatever shortcuts I want and very rarely have collisions.<p>I do think this automated generation of suggestions is a great idea, and I it made me realize I hadn&#x27;t thought enough about the amount of times I type something vs. how big the word is. Since I have an extra letter, I don&#x27;t want to do this for very very short words, but possibly something I type a lot is still worth it even if it&#x27;s very short. I tend to use it for semi-long words that I have a hard time typing for whatever reason.<p>Anyways, very cool, I&#x27;ll probably be running this script sometime soon to get a list of suggestions, then converting them into Espanso scripts!
评论 #37340775 未加载
codedokodeover 1 year ago
I use similar abbreviations in code editor, for example:<p><pre><code> r0 -&gt; return false rn -&gt; return null t -&gt; this puf -&gt; public function </code></pre> You can easily find the opportunities for saving typing by analyzing existing code and most used words there.
评论 #37330331 未加载
评论 #37330069 未加载
评论 #37330606 未加载
boticelloover 1 year ago
EasyScript is another rule-based shorthand system for typists.<p>I created an EasyScript translator for GPT-4: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;boticello&#x2F;1ea9c7105e5c369ea937158411c32921" rel="nofollow noreferrer">https:&#x2F;&#x2F;gist.github.com&#x2F;boticello&#x2F;1ea9c7105e5c369ea937158411...</a><p>As others have commented, this is not the most efficient or practical approach, but for me it was an experiment which worked.<p><a href="http:&#x2F;&#x2F;www.easyscript.com&#x2F;" rel="nofollow noreferrer">http:&#x2F;&#x2F;www.easyscript.com&#x2F;</a>
评论 #37347291 未加载
mtlynchover 1 year ago
This is neat!<p>I&#x27;ve thought about doing something similar with my shell history to help me figure out which shell aliases I should create.
评论 #37328217 未加载
评论 #37331575 未加载
评论 #37330343 未加载
coldbluesover 1 year ago
<a href="https:&#x2F;&#x2F;www.openstenoproject.org&#x2F;plover&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.openstenoproject.org&#x2F;plover&#x2F;</a><p>If you want to go the extra mile.
评论 #37334205 未加载
mckravchykover 1 year ago
Cool! I thght t wld b bt at-xpndg vwls. I gs smth lk tht shld b psbl nw wth LLMs. smth wh y wldd jst rndml drp chrs t incrs spd nd it wld jst gs th rght wrd 99% f ttime bsd on ctx. Nt sr hw prctl t wld b thgh bt I thnk I cld qckl gt sdd t t.
h1fraover 1 year ago
Neat! Reminds me of stenography keyboards
Nowadoover 1 year ago
I was thinking about similar solution (actually, textblaze funded by YC is pretty much that) but I didn&#x27;t like remembering the shortcuts part. So I made a different kind of indexing for it: <a href="https:&#x2F;&#x2F;discu.space&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;discu.space&#x2F;</a> Presentation uses &#x27;what are you answering to&#x27; as a key, but you can use anything.<p>It currently exists as (hopefully working for everyone, could use more testing) Chrome extension, but there&#x27;s a universal API underneath. It could be run entirely locally if one was to give up portability.
ideasman42over 1 year ago
The down side of this is you have to remember them, for some time now I&#x27;ve been writing with n-gram auto-completion based on a large body of text (including code-comments for projects I work on), see <a href="https:&#x2F;&#x2F;codeberg.org&#x2F;ideasman42&#x2F;emacs-mono-complete" rel="nofollow noreferrer">https:&#x2F;&#x2F;codeberg.org&#x2F;ideasman42&#x2F;emacs-mono-complete</a><p>I have it configured to be enabled when typing in code-comments or commit logs &amp; it often gives helpful suggestions.
porridgeraisinover 1 year ago
I prefer an autocomplete mobile like experience for most typing. I use autohotkey to have global autocomplete for English, anywhere in any app i type it gives me options in a little tabbable box immediately. I disable it for vscode usually except when I&#x27;m typing markdown I manually enable it. I love it.<p>Beyond this I use ahk&#x27;s hotstrings feature to have &quot;snippets&quot;. I separate them by topic and activate them as and when they&#x27;re required. For example I have one for css which has things like<p><pre><code> display: flex; justify-content: center; align-items: center; </code></pre> bound to a single hotstring.<p>I know I can use vscode snippets but I prefer this.<p>I also have global hotstrings for say my emails, address, etc,. Unencrypted in my home directory. I don&#x27;t care too much but you might.<p>The coolest one is a password manager that lets you use your username&#x2F;email on any website as the password.<p>You just press a hotkey and are prompted to enter the secure master password. Once you do that, it decrypts your passwords and activates the hotstrings required to convert usernames to their respective passwords. When you press enter and submit the form it kills it. This is only one of the variations I have. The previous one had me enter the master password in the form itself, and it&#x27;ll read the context of the browser itself get the URL from there and automatically replace the correct password. I stopped using this as it became unwieldy once I had to have multiple Gmail accounts for example.
评论 #37331905 未加载
评论 #37354714 未加载
评论 #37347091 未加载
HeavyStormover 1 year ago
Very interesting! I used to create some abbreviations in Office which saved me a lot of typing, but usually only for very simple words that I typed very frequently. Never occurred me that I could do sit for a few more words and even phrases.<p>But I&#x27;m wondering if I would be able to learn all these shortcuts. There would be a lot of time invested, and I don&#x27;t know how stable a solution this is - ie will I be able to use it everyday for the next five years?<p>I&#x27;m betting on the capabilities of LLMs right now - I think they can predict a lot of my typing and save me enough time and, if msft is smart, they will soon enough be present everywhere.
IntToDoubleover 1 year ago
Self plug but high relevancy - measuring keystrokes-per-second to convert the characters saved into actual $TIME.<p>Calculation for &quot;the&quot; from the screenshot in the repo:<p>9933 characters saved &#x2F; 8 kps = ~20 minutes<p><a href="https:&#x2F;&#x2F;www.inttodouble.com&#x2F;explore&#x2F;keystrokes-per-second" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.inttodouble.com&#x2F;explore&#x2F;keystrokes-per-second</a>
xormapmapover 1 year ago
While this is a cool idea, is typing speed really the bottleneck for anyone who uses a keyboard for a living?
评论 #37332305 未加载
评论 #37331873 未加载
评论 #37332065 未加载
评论 #37332324 未加载
评论 #37331880 未加载
cfedukeover 1 year ago
After reading this I determined I don&#x27;t talk about the robot nearly as much as I should or could be.
评论 #37332722 未加载
tupositaover 1 year ago
There are many things that slow down my productivity. Typing speed is certainly not one of them..
lostapathyover 1 year ago
I’ve thought about doing something like this, only using foot pedals to put it into “shorthand mode”. Having the pedal as a modifier would eliminate the need to worry about text collisions between your shorthand and normal typing.
nazgulnarsilover 1 year ago
I trd lrnng t tp lk ths as a shrtr wy f lrnng shrthnd, u cn tr t yrslf. Cms prtt fst.
评论 #37330946 未加载
评论 #37331034 未加载
评论 #37330982 未加载
eternityforestover 1 year ago
This would be especially amazing on mobile. I was not expecting to see an improvement to typing anytime soon, but I think I might actually be more productive with this.<p>Now I&#x27;m imagining building a keyboard that has it built in, with a little OLED right on the keyboard, and when you press space it types out the closest match to what&#x27;s in the buffer, and you don&#x27;t have to take your eyes away from the board to see what the autocorrect is doing.
botanicalover 1 year ago
This is great. Is it possible to somehow use it with keyd, as I don&#x27;t use autohotkey?<p><a href="https:&#x2F;&#x2F;github.com&#x2F;rvaiya&#x2F;keyd&#x2F;">https:&#x2F;&#x2F;github.com&#x2F;rvaiya&#x2F;keyd&#x2F;</a>
评论 #37332682 未加载
semiregover 1 year ago
I love the idea of a tool digesting my own writing. Ticket systems like Zendesk should offer this built-in as boilerplate.<p>Instead, I use native iOS&#x2F;macOS “text replacement” for customer service responses. It saves me so much time. I have all of my FAQ URLs as 4 letter shortcuts.<p>e.g. lltr becomes <a href="https:&#x2F;&#x2F;label.live&#x2F;guides&#x2F;label-printer-troubleshooting" rel="nofollow noreferrer">https:&#x2F;&#x2F;label.live&#x2F;guides&#x2F;label-printer-troubleshooting</a><p>llty = Thank you for the email. lllmk = Let me know if this helps.
gcrover 1 year ago
If you like this, you’ll also like Plover, an IME (input method) that translates chorded keystrokes to text. It can use certain gaming keyboards but people also sell custom hardware. Court reporters frequently use special-purpose chorded keyboards to quickly prepare court transcripts.<p><a href="https:&#x2F;&#x2F;www.openstenoproject.org&#x2F;plover&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.openstenoproject.org&#x2F;plover&#x2F;</a>
oaldersover 1 year ago
This looks like a great project. Medieval manuscripts used something similar: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;List_of_medieval_abbreviations" rel="nofollow noreferrer">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;List_of_medieval_abbreviations</a><p>You can go back even farther to ancient inscriptions. Humans have been trying to save a few characters here and there for quite a while.
abhayhegdeover 1 year ago
This is a pretty cool project! I am concerned about how reliant this is on my memory and if the keybindings keep changing every once a while, adapting to new ones might actually be time consuming.<p>This is what I thought while I was learning Vim too, but now I honestly prefer Vim keybindings everywhere. So maybe this is not too bad. I would definitely try out if one can also build a vimtutor like version for this usecase.
kqrover 1 year ago
&gt; I was surprised that very short and frequent words topped this list, such as the -&gt; t<p>Having studied some shorthand, I&#x27;m not surprised in the least! There, the most frequent words tend to get single-symbol abbreviations. Common wisdom even says that much of the benefit from shorthand writing comes from these few one-symbol abbreviations.
deafpolygonover 1 year ago
This would probably drive me up the wall. I like the idea of snippets, but not automatically changing st -&gt; something, hw -&gt; hardware, etc. I type in 2-3 different languages on a regular basis (English and Dutch mainly). There are certain idiosyncrasies in both languages that would drive me up the wall with a system like this.
fsiefkenover 1 year ago
It reminds me of Bref shorthand and autohotkey: <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;shorthand&#x2F;comments&#x2F;esjhdk&#x2F;bref_shorthand&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;shorthand&#x2F;comments&#x2F;esjhdk&#x2F;bref_shor...</a>
monoosoover 1 year ago
The author is clearly using this for prose (as opposed to code), and I wonder how it compares to dictation in terms of speed.<p>I&#x27;ve never really tried using text to speech for writing blog posts and the like, but I know David Sparks (MacSparky) swears by it; and he produces a lot more written content than I do.
评论 #37332712 未加载
评论 #37331876 未加载
jaxrtechover 1 year ago
I wish there was a way to just repurpose existing operating system support for CJK language IME for English.
评论 #37329412 未加载
ughitsaaronover 1 year ago
Speaking personally, I feel like any time I save by reducing keystrokes would be lost by having to think about shortcuts (or making corrections). However, I Once believed the same thing about vim-mode (which I believe saves me time though I couldn’t prove it).
评论 #37336506 未加载
Sparkyteover 1 year ago
1000 mph into a concrete barrier scenario, but I like the enthusiasm behind it. I would imagine some words with nearly the same spelling have potentially collided with automation causing some hilarious feedback. English is a pretty annoying language.
评论 #37332653 未加载
yieldcrvover 1 year ago
My friend does this on dating apps, he aliased a bunch of typos in his iphone with paragraphs of progressive sounding text that many women want to hear, interlaced with lots of flirty emojis<p>branches of conversation too, one step above botting<p>works for what he’s looking for
评论 #37332334 未加载
tsaiDavidover 1 year ago
Damn, this is interesting - instantly reminded me of courtroom stenography in a way
tyizover 1 year ago
PhraseExpress for Win&#x2F;Mac does something similar but different:<p>It parses your choice of documents and send emails and suggest to auto complete frequently used phrases.<p>Advantages:<p>+ no need to memorize abbreviations<p>+ no interference with your other typing.
pro-kytheraover 1 year ago
&gt; If the next few words I’m going to write are obvious, why do I even need to write them?<p>Same thing chatgpt (trapped in the philosopher&#x27;s Chinese room) is asking itself millions of times a day.
orangepurpleover 1 year ago
I aspire to reach 300 wpm at some point like Rocket has <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=no99cJBwqdk">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=no99cJBwqdk</a>
manxover 1 year ago
Very interesting. I once recorded all my vim keypresses to do something similar for vim, but never actually did anything with the data. Seems like it should be easily doable with this project now.
评论 #37331809 未加载
dghughesover 1 year ago
I do something similar using BeefText. A few long words I set with no modification others or entire phrases I precede with a ` backtick. If no backtick it can quickly become unmanagable.
lxeover 1 year ago
From the gif I originally thought this was a &quot;AI&quot; predictive typing assistant, which would not require a shortcut map heuristic but rather predict text based on probability.
jdthediscipleover 1 year ago
The obvious issue would be if you - for whatever reason - wanted to actually type something that happens to also constitute a shortcut and it gets involuntarily replaced.
neurostimulantover 1 year ago
Is it possible to alter built-in autocorrect (e.g. in firefox) to prioritize a list of words&#x2F;phrases? I feel like remembering a bunch of shortcuts is not ideal.
ulrischaover 1 year ago
Reminds me of &quot;Steno&quot; - a German fast writing form
skenderbeuover 1 year ago
I wonder if you can come up with a smaller keyboard because of this and if so would it make typing with it even faster than current keyboards?
评论 #37337928 未加载
irjustinover 1 year ago
Is there a way to combine steno typing w&#x2F; a standard keyboard so that you can seamlessly switch?<p>In the current setup there are too many collisions.
vkpdeveloperover 1 year ago
This is great, would be great if we can train GPT4 directly based on our previous conversations and it can automatically suggest.
michaelhoffmanover 1 year ago
This is super cool. I use Emacs `abbrev-mode` for taking contemporaneous notes but autosuggesting words would be great.
queuebertover 1 year ago
Hot take: If you so frequently say the same things in Slack, do your subordinates think you actually add any value?
noduermeover 1 year ago
This is like one of those ideas that&#x27;s too brilliant to be disclosed here - or to anyone, actually. Bravo.
habitueover 1 year ago
This seems like a really good way to make it so you have a hard time typing on anyone&#x27;s computer but your own.
评论 #37329787 未加载
评论 #37330037 未加载
评论 #37332111 未加载
评论 #37335181 未加载
评论 #37334482 未加载
评论 #37330349 未加载
评论 #37338891 未加载
IAmGraydonover 1 year ago
This is basically Emmet for the English language, right? A nifty application of the idea, none the less.
yoavover 1 year ago
I thought this was going to be a post about using an LLM when coding.<p>I type 20% of what I would have with copilot
KomoDover 1 year ago
Have you checked how much faster this makes your typing? I can imagine it speeds it up quite a bit
felipesabinoover 1 year ago
this reminded me of speed writing [1]<p>[1] <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;Classic_Speedwriting&#x2F;wiki&#x2F;list108&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;Classic_Speedwriting&#x2F;wiki&#x2F;list108&#x2F;</a>
throwaway75over 1 year ago
Ok, just who are these people who can type faster than I can ever hope to think?
VectorLockover 1 year ago
Combine this with a chording keyboard for ultimate high speed operator status.
thatxlinerover 1 year ago
How does this compare to CharaChorders or any stenograph software?
ReD_CoDEover 1 year ago
Cool, thinking how can use it in programming, or other conditions?
评论 #37332369 未加载
评论 #37328286 未加载
svennidalover 1 year ago
I use the native feature for this in macOS and iOS a lot!
评论 #37330372 未加载
iamthejuanover 1 year ago
I tried this similar concept with ChatGPT and it somehow understands what I am trying to say. Nice to have a tool that works almost the same. Thank you!
thrilling_gemover 1 year ago
if you can make the readline in place, and full access to all your typing history, then c-r is enough
sinuhe69over 1 year ago
Is voice-typing not much faster?
thecleanerover 1 year ago
Just shut up and take my money !
zagfaiover 1 year ago
Why not just speech to text?
James_Henryover 1 year ago
Add a charachorder to this and you&#x27;ll be typing crazy fast.
zagfaiover 1 year ago
Why not just speech to text? Or brain to text:)
dapooksterover 1 year ago
Very cool!
UtopiaPunkover 1 year ago
I use a tool called &quot;Espanso&quot; to accomplish something similar at work. It only runs locally, so no weird data scraping issues to worry about. And it&#x27;s easy to update as things changes because everything lives in a simple yml file.<p><a href="https:&#x2F;&#x2F;espanso.org&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;espanso.org&#x2F;</a><p>It can do simple text replacement, so I have words, phrases, and sentences I use frequently compressed into a few keyboard clicks. It can also grab what is in your clipboard, so that can be incorporated into responses, which is simple but very handy.<p>A simple text replacement looks like this in the yml file: - trigger: &quot;:espanso&quot; replace: &quot;Hi there!&quot;<p>But it can even work with a shell, which I think is amazing! For example, I have a particular task at work where I often need to insert a random number into a text document. I can have Espano run PowerShell behind the scenes to run a simple PowerShell command, and that looks something like:<p><pre><code> - trigger: &quot;;rand&quot; replace: &quot; {{output}}&quot; vars: - name: output type: shell params: cmd: &quot;Get-Random -Minimum 100000&quot; shell: powershell</code></pre>
评论 #37330255 未加载
评论 #37330409 未加载
评论 #37330315 未加载
评论 #37330238 未加载
评论 #37330287 未加载
Xenoamorphousover 1 year ago
This is cool but I see so many posts in HN about “hacks” that increase productivity&#x2F;save time that it makes me anxious.<p>I don’t know if it’s our field or just life these days but I would really love a more relaxed approach to work (or life in general?). It feels like I’m in a race and struggling to keep up with the pack.
评论 #37328804 未加载
评论 #37329167 未加载
评论 #37328526 未加载
评论 #37332376 未加载
评论 #37328909 未加载
alhasaniqover 1 year ago
We have finite brain power. The power you dedicate to thinking about what hotkey (&#x2F;combination of) to press for niche tasks, is not, per say, wasted. But it definitely isn&#x27;t going towards thinking about what to write, the objective. Maybe useful for less information-dense writing.
评论 #37333137 未加载
评论 #37333087 未加载
JohnFenover 1 year ago
I did this sort of thing quite a lot early in my career, but stopped quite a long time ago. The problem is that I started using multiple machines running different OSes, and not all of those machines are &quot;mine&quot;, so I couldn&#x27;t have these sorts of specializations everywhere.<p>That turned a positive into a negative when using machines that didn&#x27;t have these optimizations.
评论 #37328710 未加载
评论 #37329202 未加载
评论 #37328918 未加载
majkinetorover 1 year ago
On Windows, better fit is Autohotkey and its hotstrings for people wanting to use this. It&#x27;s much better for that as it supports full programming language so you could use function results and similar to produce abbreviations.<p><a href="https:&#x2F;&#x2F;www.autohotkey.com&#x2F;docs&#x2F;v1&#x2F;Hotstrings.htm" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.autohotkey.com&#x2F;docs&#x2F;v1&#x2F;Hotstrings.htm</a>
评论 #37330361 未加载
评论 #37330299 未加载
mikyscoover 1 year ago
<a href="https:&#x2F;&#x2F;kapeli.com&#x2F;dash" rel="nofollow noreferrer">https:&#x2F;&#x2F;kapeli.com&#x2F;dash</a><p>Somewhat similar tool to Autokey for MacOS that I use as a text expander.<p>Allows for great customization - appending ; to a phrase ensures you don&#x27;t accidentally expand a keystroke into a phrase&#x2F;URL&#x2F;etc<p>&quot;;url&quot; expands into &quot;whatever string you configure&quot;
评论 #37339875 未加载
评论 #37332480 未加载
评论 #37330027 未加载
jawnsover 1 year ago
If you&#x27;re going to use models, why not models all the way through?<p>In other words, rather than using them merely to identify words to abbreviate and suggested abbreviations, why not use an LLM that can take a bunch of abbreviated text and infer what you&#x27;re trying to abbreviate?<p>Tht wy, u dn&#x27;t hv 2 mem lsts f abbrs ahd f tm.<p>ChatGPT was able to successfully guess that last sentence in abbreviated form:<p>That way, you don&#x27;t have to memorize lists of abbreviations ahead of time.
评论 #37329186 未加载
评论 #37329315 未加载
评论 #37329928 未加载
评论 #37330379 未加载
评论 #37329047 未加载
nitin-paiover 1 year ago
There is no advantage in doing this. Typing words fully and correctly, with correct spelling and grammar, is a skill worth preserving.
评论 #37331370 未加载
评论 #37331270 未加载