Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
cypressious
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
cypressious
10mo ago
It seems Rust's unwrap is the exact opposite of ?? "". It throws an error instead of using a fallback value, which is exactly what the author suggests instead of using ?? "".
2.
▲
Kotlin: Emerging Patterns with Context Parameters
(rakhman.info)
1 points
by
cypressious
1y ago
|
0 comments
3.
▲
by
cypressious
1y ago
Agreed. I use https://addons.mozilla.org/de/firefox/addon/youtube-anti-tra... to work around it.
4.
▲
by
cypressious
1y ago
Web notifications are opt-in.
5.
▲
by
cypressious
2y ago
If you use the the Gradle wrapper, it will use the correct version and download it if necessary. If I'm not mistaken, that's the recommended approach.
6.
▲
by
cypressious
2y ago
It's explicitly allowed to be used for content creation.
7.
▲
by
cypressious
2y ago
I really enjoy projects where the project and the scripts around it use the same language.
8.
▲
by
cypressious
2y ago
Impressive. Funny that one thing they got wrong is cars becoming smaller instead of bigger.
9.
▲
by
cypressious
2y ago
Many years ago, I changed my YouTube bookmark to go directly to the subs page. Can recommend.
10.
▲
by
cypressious
2y ago
You could serialize the JS representation to Base64 or Base10 if you want it to be numeric.
11.
▲
by
cypressious
3y ago
It shows, though it's a bit obscure. Long press the notification, then press notification settings. It will scroll you down and highlight the notification channels item. Press on it. After a second, it will highlight the channel the or
12.
▲
by
cypressious
3y ago
Android forces app developers to categorize notifications (the API is called notification channels). Each channel can be muted individually in the system settings. Though it's up to the app makers to correctly categorize their notifica
13.
▲
by
cypressious
3y ago
It has become better in the last year or so. I used to have the same setup but currently Meet on FF works without issues for me.
14.
▲
by
cypressious
3y ago
The default size of an ArrayList has been 0 for a while. On the first insertion, it is initialized to 10.
15.
▲
by
cypressious
3y ago
Last time I had to deal with emails, I've used https://mjml.io/ and was very happy with it. You can version the templates, compile them as part of your build pipeline and it seems to do produce very _adequate_ HTML ful
16.
▲
by
cypressious
4y ago
Does you library use any of the JDK's blocking APIs like Thread.sleep, Socket or FileInputStream directly or transitively? If so, it is already compatible. The only thing you should check is if you're using monitors for synchroniz
17.
▲
by
cypressious
4y ago
That's exactly what Vue does (unlike say React). Only those parts of the VDOM are updated whose dependencies changed. v-memo is mostly for lists and cases where updates should be delayed for reasons like flickering.
18.
▲
by
cypressious
5y ago
Have you tried `const enum`? See https://www.typescriptlang.org/docs/handbook/enums.html#cons... > Const enums can only use constant enum expressions and unlike regular enums they are completely removed during
19.
▲
by
cypressious
5y ago
I think vite is using esbuild only for TS transpiling in development and esbuild & rollup for production.
20.
▲
by
cypressious
5y ago
This is exactly what the author is saying in the final paragraph.
21.
▲
by
cypressious
5y ago
You can always add Cloudflare to the mix to cache static assets. This change is additive meaning you can start with a single Heroku deployment and if static asset traffic becomes an issue, you can create a Cloudflare account, configure DNS
22.
▲
by
cypressious
6y ago
You're probably thinking about some app not being able to start when some other specific app is running because both were using a GUID copied from SO for implementing single-instance apps. Possibly the SO question in question: https:&
23.
▲
by
cypressious
6y ago
You're certainly right but it also didn't help that Firefox for Andorid was _really_ bad for a long time. Fenix is a glimpse of hope but it came to late.
24.
▲
by
cypressious
6y ago
OP here: Just to clarify, I wasn't aiming for performance/complexity, only for making the algorithm easier to visualize. However, I'm intrigued. Are you saying that the strongly connected components are the tuples and if they
25.
▲
Solving Sudoku with Graph Theory
(rakhman.info)
52 points
by
cypressious
6y ago
|
3 comments
26.
▲
by
cypressious
6y ago
Exactly. The funny thing is that Flash animations where the more straight-forward way. You create vector animations and export them as such. Obviously, this is more universal. You can take any input as opposed to something that was vectoriz
27.
▲
Respecting Browser Navigation in Single Page Applications
(rakhman.info)
1 points
by
cypressious
6y ago
|
0 comments
28.
▲
by
cypressious
6y ago
No, that's against the guidelines.
29.
▲
by
cypressious
6y ago
Looks nice. I checked the network tab to see how light the page newcss.net really is. ~600kb looks good but interestingly enough, the favicon is the biggest asset.
30.
▲
by
cypressious
7y ago
> The other major issue is that there's no way to have links outside those domains open outside the container, so whenever I click a link on Gmail that goes to Github, Github opens in the Google container and I always have to copy&#
More ›