Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
frosas
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
frosas
6y ago
This worked for me on Chrome: https://news.ycombinator.com/item?id=25305835
2.
▲
by
frosas
6y ago
As with any new technology, I'd start using it in new non-critical projects as risk is low and it makes it easy to convince the stakeholders. To clarify, Pulumi can coexist with Terraform and other tools in the same stack, see https:&
3.
▲
by
frosas
6y ago
Watch out, the email address seems to have a typo.
4.
▲
by
frosas
7y ago
I do something similar but, because I'm faster at multiplying, I do "its double plus its half". E.g. 7 inches = 14 + 3.5 = 17.5 cm
5.
▲
by
frosas
9y ago
From my experience, there's no such a heavy price as long as you don't rebase what you already shared with others.
6.
▲
by
frosas
11y ago
Or why bother with those webpack features if the tools you use already do the job?
7.
▲
by
frosas
13y ago
How this applies if I want to share my branch to accept changes from other developers (think pair programming, handovers of half-done features, ...)?
8.
▲
by
frosas
14y ago
I've being using this trick for years instead of the ugly isset($array['key']) ? $array['key'] : null; thinking I was simply ignoring those stupid "Undefined index" notices. Now I figure out I was also hiding "Undefined variable" n
9.
▲
by
frosas
14y ago
I agree keyword arguments are a better solution (but probably harder to implement). Right now this is how I do this: function salute($user, array $options = null) { $options = (array) $options + array('shout' => false);
10.
▲
by
frosas
15y ago
It's just the opposite but you may find it interesting: http://plusfeed.frosas.net/
11.
▲
by
frosas
15y ago
How does one calculate password entropy? I deduced this one: entropy = log2(symbols^chars) But using 63 symbols ([a-zA-Z0-9&]) I get 65 bits for Tr0ub4d0r&3, not 28.
12.
▲
by
frosas
16y ago
A simple one for OSX: while true; do screencapture `date '+%Y-%m-%d-%H-%M-%I'`.png; sleep 30; done