Viewing profile — matvore
matvore
HN member- Joined
- Tue, Nov 04, 2014, 6:49 AM UTC
- HN karma
- 166
- Public activity
- 110 items
- HN profile
- View on Hacker News ↗
About matvore
No profile information was provided.
Recent public activity
-
comment
Comment #46497715
> Obviously the proper solution is to adjust your system thermal management / power targets, My point is that I understand the users' complaint and request for a revert, not that I…
-
comment
Comment #46494672
If the fan was turning on where it wasn't before, it seems like cooling was once happening through natural dissipation, but after your fix it needed fans to cool faster. So the fix…
-
comment
Comment #44047486
> all of the languages mentioned so far appear before the "Latin alphabet" > style languages, but 閩南語 and 閩東語 appear after them. Could it have something to do with Minnan and Mindo…
-
comment
Comment #44032928
The Wikipedia sort for the languages is as I stated above, with Literary Chinese and Japanese between Wu Chinese and Yue Chinese. I explained why it was sorted that way, because ra…
-
comment
Comment #44031685
It is sorted FIRST by radical and SECOND by stroke order. This is roughly equivalent to the Unicode codepoint sort if you stay in the basic multilingual plane. The order also puts …
-
comment
Comment #42331155
Note I work for Google and I've contributed to Chromium, though I'm not necessarily an expert on Chromium forks. 1. Google Chrome This is offical Chrome you download from google.co…
-
comment
Comment #42327078
Chromium is merely Chrome with only the open source parts. Chromium components are still implemented in a Google-controlled repo. So it has Google-oriented features and defaults.
-
comment
Comment #40593662
This is the default font of my browser-based terminal emulator, http://github.com/google/werm , along with a handful of other retro fonts (uses the int10h.org ttf's--converted to b…
-
comment
Comment #40593508
IMO it still looks rather nostalgic. I do remember using cmd.exe or command.exe in Windows 95 and later and this being the default (but it would different if you had a different le…
-
comment
Comment #40424749
Yes, let's take dozens of terminal emulator projects out of maintenance mode so app devs can individually and capriciously overload my shift and escape keys, because modern.
-
comment
Comment #40098239
> Context: Bitcoin miners have just adopted a 50% pay cut for themselves. Miners don't decide the consensus rules. The nodes validate blocks, and the miners generate them. The halv…
-
comment
Comment #39584423
Some say hunky dory comes from "honcho doori" or 本町通り (personally I don't see how ki can come from cho)
-
comment
Comment #39460745
I wish I knew awk as well as I know perl, since then I wouldn't need to hear recommendations for CPAN modules and spurious style prescriptions.
-
comment
Comment #39458914
Perl has the advantage of only having one implementation, unlike sed and grep (e.g. BSD or GNU) and /bin/sh (can be one of many POSIX shells), so upgrading this pipeline to 100% pe…
-
comment
Comment #39458759
If we're going to talk about unnecessary extra processes like useless cat, we should merge the head and grep commands into a sed, and possibly just merge everything into perl: If p…
-
comment
Comment #38684491
> To prove a point, I spent an hour reading his opensource project > and found several resource leaks This is asking a lot, but if you enjoy that, I would be thrilled if you could …
-
comment
Comment #38684418
> To prove a point, I spent an hour reading his opensource project > and found several resource leaks Sounds like some interesting case studies. Could you share some? > > if I find…
-
comment
Comment #38683045
Don't worry, we enjoy that kind of stuff. I usually put all the resource freeing at the end of a function under a goto label, or only a few lines within the allocation, so it's eas…
-
comment
Comment #38229936
If you store the number of zeros as value z, computing z+1 is O(log n) in the long run for unbounded values of z.
-
comment
Comment #38229917
If you define predictable as computable with finite memory, it is correct. If you have finite memory, you have a finite number of states and will eventually return to a previous st…
-
comment
Comment #37962360
> No, they're crazy. I already have a window manager I like; I don't need my > terminal to implement their own half-assed one, Basically agree, though note that ssh and dtach and s…
-
comment
Comment #37962074
> I notice no 1 second delay when switching modes with the Esc key, so perhaps > this is something you can configure in your terminal. This is configurable in Vim. ttimeoutlen, tim…
-
comment
Comment #37962016
What does `Ctrl + [` send to the terminal for you if not esc? In my experience these are always the same, so Vim shouldn't be able to tell the difference unless it's a GUI-integrat…
-
story
Show HN: Terminal emulator and multiplexer through browser tabs
I was cajoled into using chromeOS at work, so I created proper terminal emulator for it: werm TL;DR: Screenshots at https://github.com/google/werm/wiki/Screenshots It connects remo…
-
comment
Comment #35818440
> I stick with emacs because of the modal and recursive minibuffer(s) (ie. command-line(s)). What vim setting do I change to be able to use normal mode down there? Not a setting. J…