Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
oftenwrong
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
301.
▲
by
oftenwrong
4y ago
You will want to read the man pages. 'pee' is straightforward to understand if you already understand 'tee'. 'pee' is used to pipe output from one command to two downstream commands. https://en.wikip
302.
▲
by
oftenwrong
4y ago
The Maven ecosystem partly solves the "the right java" problem, although it's not necessarily well known and not particularly great. 1. For selecting the correct JDK to use with standard plugins, including the compiler plug
303.
▲
YAML Multiline: Find the right syntax for your YAML multiline strings
(yaml-multiline.info)
2 points
by
oftenwrong
4y ago
|
0 comments
304.
▲
by
oftenwrong
5y ago
We all saw this coming. Even if this instance is low-quality, eventually a similar scenario will happen with one that is good enough to fool most people. I think it is not long until official videos come with cryptographic signatures. I am
305.
▲
by
oftenwrong
5y ago
`just` seems like a useful tool, but it only covers a secondary use case of `make`. `make` without a dependency graph is like a bicycle without wheels.
306.
▲
When Phones Were Fun: Sony Ericsson P910 (Released 2004)
(youtube.com)
2 points
by
oftenwrong
5y ago
|
0 comments
307.
▲
by
oftenwrong
5y ago
Uncompressed PCM-based audio and bitmap-based image formats are also similarly simple, portable, and future-proof.
308.
▲
by
oftenwrong
5y ago
I am not sure; I don't know much about performance of git operations. Which step is slow? Have you figured out why? I am curious.
309.
▲
by
oftenwrong
5y ago
For the "move to subdir" step, I recommend using git-filter-repo, which should be preferred over git-filter-branch (older code snippets often use it). Use git-filter-repo's --to-subdirectory-filter and --tag-rename: https:&#
310.
▲
by
oftenwrong
5y ago
I have had similar issues in the past. The primary solution was to invest in an ergonomic work desk setup. The following elements are all important: - height-adjustable desk - monitor floating on an arm - keyboard tray with adjustable tilt
311.
▲
by
oftenwrong
5y ago
In hindsight, I understand your confusion. I agree with your comment. Without static analysis tools like error-prone, findbugs, nullaway, checker framework, sonar, PMD, IDE-provided analysers, et cetera, it is easy to write problematic Jav
312.
▲
by
oftenwrong
5y ago
Java has a high bar for the amount of prerequisite experience it takes to write good code. In other words, it has too many pitfalls for beginners. It is a phenomenally poor choice of language for teaching beginners to code. On the other han
313.
▲
Long-held beliefs about arson science have been debunked (2015)
(abajournal.com)
1 points
by
oftenwrong
5y ago
|
0 comments
314.
▲
Are Traffic Engineers Sociopaths? (2021)
(dearwinnipeg.com)
2 points
by
oftenwrong
5y ago
|
0 comments
315.
▲
Bond Ratings Are for Investors (Not Taxpayers) (2021)
(strongtowns.org)
1 points
by
oftenwrong
5y ago
|
0 comments
316.
▲
How Did New York City Government Recover from the 1970s Fiscal Crisis?
(larrylittlefield.wordpress.com)
1 points
by
oftenwrong
5y ago
|
0 comments
317.
▲
by
oftenwrong
5y ago
This reminds me a bit of The Erlang Ticket System, a "Minimal Viable Program", that Joe Armstrong described on his blog: https://joearms.github.io/published/2014-06-25-minimal-viabl...
318.
▲
by
oftenwrong
5y ago
That's a "null MX", indicating that the domain does not accept mail. https://datatracker.ietf.org/doc/html/rfc7505
319.
▲
by
oftenwrong
5y ago
I agree with all of the good things said about golang in this thread, but I could not consider it "fun". It is boring in a good way.
320.
▲
by
oftenwrong
5y ago
I have a lot of fun with shell scripting, even if it is a terrible programming environment in so many ways. It is fun to be able to quickly hack together existing tools in such a messy, but natural, way.
321.
▲
by
oftenwrong
5y ago
IANA also reserves TLDs like '.test' and '.example' as well as some IDN equivalents. https://www.rfc-editor.org/rfc/rfc2606.html https://www.iana.org/domains/reserved
322.
▲
by
oftenwrong
5y ago
The default isolation level in postgres is read committed.
323.
▲
by
oftenwrong
5y ago
https://impossibl.github.io/pgjdbc-ng/docs/0.8.9/user-guide/... or https://github.com/pgjdbc/r2dbc-postgresql#listennotify
324.
▲
by
oftenwrong
5y ago
I've felt for a long time that this would be an obvious move. I know that many people, myself included, like the Kinesis Advantage design, but wanted a split design like the Freestyle. I've even seen DIY versions.
325.
▲
Majestic Modular Monoliths (2020)
(lukashajdu.com)
3 points
by
oftenwrong
5y ago
|
0 comments
326.
▲
by
oftenwrong
5y ago
>a forty-plus year old car that has more than 770,000 miles on it I would love to hear more about this car!
327.
▲
by
oftenwrong
5y ago
You can save yourself some headaches by not using transitive dependencies in your Maven builds. This can be enforced with Maven Enforcer. The trade-off is that you will have to clean unused dependencies. This can be tool-assisted with somet
328.
▲
by
oftenwrong
5y ago
>What if Maven Central goes down one day? Most Java shops run their own artefact repository acting as a pull-through repository to Maven Central and other 3rd party repositories. In addition to acting as insurance against losing access t
329.
▲
by
oftenwrong
5y ago
To "vendor" a dependency is to check it into your project's source control, whether as source or binary.
330.
▲
by
oftenwrong
5y ago
For Maven, you can use this plugin to move downloading dependencies into a separate step: https://github.com/qaware/go-offline-maven-plugin It's not perfect, but it can be useful.
More ›