Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
arve0
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
arve0
2y ago
> if plain text were the only format possible Hard to enforce? <p>this</p> is text too.
2.
▲
by
arve0
3y ago
> without exposing the secret to the shell history file Any command in shell with a space before it will be omitted from history. Agree it should take input from stdin.
3.
▲
by
arve0
3y ago
I'm not up to speed in JSX, how is it be better there? Don't one normally map over an array to loop? You cannot use for-loops inside JSX? Or do you create an array of JSX-elements, like let elements=[] for (let i=0; i &l
4.
▲
by
arve0
3y ago
Each loops over anything with a length property: {#each {length: 3} as _, i} https://stackoverflow.com/questions/58213585/svelte-3-how-to...
5.
▲
by
arve0
3y ago
A few I know: rqlite, dqlite, SQLite wasm, litestream.
6.
▲
by
arve0
3y ago
When you do not rely on ACID for data consistency, you need to architect for eventual consistency. For example CRDT on collaborative editing a text document.
7.
▲
by
arve0
4y ago
The history feature in VSCode have saved me multiple times. To me, 200MB per workspace is worth it.
8.
▲
by
arve0
5y ago
I think they are solving for management, for example by locking down the dev environment. Not saying it’s impossible in desktop IDEs, but maybe harder?
9.
▲
by
arve0
5y ago
Thank you, will try it out :-)
10.
▲
by
arve0
5y ago
Yes, using a hook is optimal. But when reading repos without a style guide or formater, “pretty diffing” makes it easier to review. Another use case is when you encounter that giga god-commit “added formater” which touched all lines in all
11.
▲
by
arve0
5y ago
Anybody know if it’s possible to run a formater before diffing? For example running “go fmt” or “prettier”?
12.
▲
by
arve0
5y ago
> If another company wants to provide NFC capability for credit cards, they can and the actual credit cards already do. The other companies wants to provide NFC capabilities for their mobile bank/direct payment app. Like Norwegian “
13.
▲
by
arve0
5y ago
Thank you, that is useful, but basically same as "jumping" between branches. @pronik's reply was spot on, viewing the merge commit, which shows which branches and tags the commit is included in. Example: https://gi
14.
▲
by
arve0
5y ago
Thank you. Tried on the commit in PR, did not show up, but the merge commit did. I guess it's dependent on merge strategy, where squash merge will not include the initial commit hash. Or maybe "pr commit view" excludes the sa
15.
▲
by
arve0
5y ago
…which is nice, when the master is not tagged and you’re trying to find out “does this release include the bug fix in pr #123” (without cloning and/or jumping between tags/branches).
16.
▲
by
arve0
5y ago
> My question is, if it's so advantageous to employ people via onsite staffing firms (basically half of FAANG's workforce is employed this way), why doesn't Google stop directly employing people altogether? Because it’s th
17.
▲
by
arve0
5y ago
I’ve used wait-for-it with success. https://github.com/vishnubob/wait-for-it
18.
▲
by
arve0
5y ago
zx has a small dependency tree, 12 packages marked as "@types" and 36 regular packages[0]. If you are fluent in Node, it should be easy to avoid further dependencies. 0: https://arve0.github.io/npm-download-size&#x
19.
▲
by
arve0
5y ago
Also, why would evolution select for an equilibrium? With so many parameters I would expect oscillation.
20.
▲
by
arve0
5y ago
> The patch doesn't include any comment about a race condition in the actual code …but it’s in the commit message, which is basically the same as a comment. https://git.kernel.org/pub/scm/linux/kernel&
21.
▲
by
arve0
6y ago
One yuck about aliases, it doesn’t give you autocomplete. See abbr in fish shell for an alternative.
22.
▲
by
arve0
6y ago
Model X: 198” L x 79” W
23.
▲
by
arve0
6y ago
Sorry, thought you meant “initial” total purchasing price, if that makes sense. Road tax is back, this year. No ferry fee is only on Europe roads. No toll fee still. Also service cost is probably cheaper, as electric has less failing motor
24.
▲
by
arve0
6y ago
They are priced the same, I’ve bought this car to this price. The MSRP includes no sale tax (mva) and no horse power tax. Are you thinking of some other incentives?
25.
▲
by
arve0
6y ago
Yes, that is correct. But the argument is, «electric cheaper -> sells more». My argument is that the people of Norway wants electric, when priced the same. Electric is the new shiny that most people in Norway want.
26.
▲
by
arve0
6y ago
Kia niro comes out the same price, electric sells the most. Hybrid 405k NOK [0] Electric 415k NOK [1] 0: https://www.kia.com/api/bin/docDownload?program=brochure&loc... 1: https://www.kia.com/a
27.
▲
by
arve0
6y ago
Are you comparing a large car, Subaru Outback, to a small car, Model 3? Model X would be a fairer comparison, where model X is 300k NOK more in base model.
28.
▲
by
arve0
6y ago
web-ext does hot swap, see the sibling comment from insin to get a minimal manifest for a userscript.
29.
▲
by
arve0
6y ago
Have you seen the commonmark standard? Did not see that mentioned. https://commonmark.org/
30.
▲
by
arve0
6y ago
markdown-it [1] has a number of plugins that let you add extra features to commonmark. For adding attributes, I wrote markdown-it-attrs [2]. Combine that with a flexible static site generator, like metalsmith [3], and you have a solution ad
More ›