Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jplatte
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Invalid Strings in Valid JSON
(svix.com)
1 points
by
jplatte
1y ago
|
0 comments
2.
▲
by
jplatte
8y ago
The KeePassXC browser integration also does it the way you describe where you choose a profile instead of having the firm already filled in when the page loads.
3.
▲
by
jplatte
9y ago
There is one important difference between Box and unique_ptr though: unique_ptr is nullable while Box isn't.
4.
▲
by
jplatte
9y ago
> In Python I have to figure out what the indentation is built from, spaces or tabs, and make sure there's no ambiguity there. The following program throws a TabError in Python 3: def demo(): print("1 tab")
5.
▲
by
jplatte
9y ago
I'm one of those people who are really confused about the whole Python project management situation. Is there a resource where I can learn the equivalent of common operations found in other project management tools such as npm / y
6.
▲
by
jplatte
9y ago
I see them in Firefox, with uBlock installed and active. This problem is easily solved by clicking the reader mode button in the url bar though.
7.
▲
by
jplatte
9y ago
I know they use ripgrep¹ for their project-wide search feature. I'd imagine that the other native code would also be separate processes whose output is parsed, or in C / C++ / Rust libraries that live in their own repos and t
8.
▲
by
jplatte
9y ago
zsh can handle floating point arithmetic too, while bash can't.
9.
▲
by
jplatte
9y ago
And he wrote a really nice article about the maze generation algorithm that he uses in Hauberk: http://journal.stuffwithstuff.com/2014/12/21/rooms-and-mazes... It has inspired me to build my own dungeon crawl
10.
▲
by
jplatte
9y ago
While it is not part of the memory safety guarantee of safe Rust, in practice it is much harder to accidentally leak memory in Rust than in C++. There is no counterpart to the C++ new operator in Rust; no commonly-used language feature or s
11.
▲
by
jplatte
9y ago
> Is the !g bang gives you personalized results as good as google results ? Including !g in your search query simply redirects you to a google search with the same query (minus the !g). So you can set your search engine to ddg, then sele
12.
▲
by
jplatte
9y ago
> At least it doesn't force any casing on you, as some languages do. I'm not convinced that is actually a good thing. It really annoys me when two libraries for the same language use different naming conventions, and so far I h
13.
▲
by
jplatte
10y ago
It's not only a MIR issue, it's also an issue of how many optimizations should be allowed when you also need to be able to make some assumptions about your data in unsafe blocks. For example if you simply added the obvious attribu
14.
▲
by
jplatte
10y ago
Hm, it might have to do with the way CSS works.. When I'm developing gtk+ Applications, I always do the UI in glade. It works wonderfully, even if I still have to do some stuff in code (UI elements that are added in response to the use
15.
▲
by
jplatte
10y ago
I'd suggest having a look at the new (unfinished, but that affects mostly the later chapters) rust book. Here's the ownership chapter: http://rust-lang.github.io/book/ch04-00-understanding-owners...