Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
widdma
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
widdma
2y ago
> given that Australia does daylight savings time DST varies by state in Australia. Western Australia (UTC+8) does not observe DST.
2.
▲
by
widdma
5y ago
It's worth pointing out AEMO's demand is for the grid, and residential solar typically does not show up on the grid. OpenNEM[1] uses estimates of residential solar to approximate the full load. [1]: https://opennem.org.
3.
▲
by
widdma
6y ago
Nice article, thanks. For anyone interested in the topic, I highly recommend Trefethen's Approximation Theory and Approximation Practice. It's approachable, intuitive, and fun while still covering a lot of technical detail.
4.
▲
by
widdma
8y ago
Yup, and make dirty power more expensive with a carbon tax.
5.
▲
by
widdma
9y ago
This is exactly what is already done! On Earth at least. Radio telescopes around the world observe (mostly) quasars to perform geodesy. This is the main method used to measure the Earth Orientation Parameters which is need for keeping GPS&#
6.
▲
by
widdma
9y ago
PyPy is written in RPython, which can be compiled to C. PyPy itself emits machine instructions like a regular JIT interpreter.
7.
▲
by
widdma
9y ago
You can enter passthrough mode in Vimium with "i"
8.
▲
by
widdma
9y ago
True, perhaps the author meant rationals.
9.
▲
by
widdma
9y ago
I think if he did have mental health problems, like many others in the field, it's now more than ever to raise the point. If he didn't it doesn't hurt to raise the issue, because it is genuine. If you suffer from anxiety and&
10.
▲
by
widdma
9y ago
If you're after something lightweight, similar enough to be vim to be useable, and lua built-in checkout vis: https://github.com/martanne/vis The structural regular expressions are also pretty interesting.
11.
▲
by
widdma
9y ago
Every number has an infinite decimal expansion. 1 = 0.999... 1/2 = 0.49999... etc. In some ways it's a property of the representation, not something intrinsic to the number.
12.
▲
by
widdma
9y ago
Pi isn't an infinite series, it is just a number. Sure, it can be represented as an infinite series, but so can any number! (Eg. 1 = 0.999999...)
13.
▲
by
widdma
9y ago
This release introduces Project Treble with the goal, I believe, of fixing this exactly this problem.
14.
▲
by
widdma
9y ago
For contex, Ross Ihaka is one of the original authors of R. This date back to 2008. Also see Ross Ihaka's 2010 paper: https://www.stat.auckland.ac.nz/~ihaka/downloads/JSM-2010.pd...
15.
▲
by
widdma
9y ago
Since Python is an interpreter, it keeps a dictionary/hash table of the local and global variables. These can be accesses by the functions `locals()` and `globals()`. `a = ... ` can be thought of as `locals()["a"] = ...` (alt
16.
▲
by
widdma
9y ago
> Different regions have dramatically different average commute times which don't directly correlate with population. Thus disproving your point. Average commute time is not the desired metric here, see Duranton and Turner[1]. [1]:
17.
▲
by
widdma
9y ago
The slight curve to usually straight letters like 'v' and 'k' reminds me a bit of of Inconsolata. I really like this touch and makes a monospaced font flow. Is it also using Spiro splines?
18.
▲
by
widdma
9y ago
> Not at all! Happiness _is_ correlated to shorter door-to-door time, but higher speed does not equate to shorter times if the distance grows as well. Exactly! This is also related to the The Fundamental Law of Road Congestion: building
19.
▲
by
widdma
10y ago
A problem I'd like to see a good solution to is selection bias. Unless there is some kind of reward, only people that really care are likely rate something I think Netflix's move might help this. It certainly lowers the cost ratin
20.
▲
by
widdma
10y ago
3D plots can useful when the data is intrinsically 3D. But forcing a 3D plot on 2D data, like a pie chart, makes it hard for a viewer to develop an intuition for the data.
21.
▲
by
widdma
10y ago
I'd second the PGFPlots recommendation. Easy to create plots by hand or you can use matlab2tikz (mentioned but dismissed in the article) if you're coming from matlab. I'd also second the latexmk recommendation!
22.
▲
by
widdma
10y ago
I found matlabl2tikz to be superior to plot2latex. I did my honours thesis with plot2LaTeX+inkscape and my PhD one with a matlab2tikz, so I've had a fair experience with both. I have created some high quality, complex plots out through
23.
▲
by
widdma
10y ago
PulseAudio is pretty good these days and typically works out of the box for most need. Per app volume is an amazing feature and switching sinks is a breeze. I often play music on my stereo (mobo sound card) and game audio on some headphones
24.
▲
by
widdma
10y ago
iTerm2's killer feature that I haven't seen in any Linux terms yet is tmux integration. Being able to treat a remote tmux session like a local terminal session — including tabs, splits and windows — is fantastic.
25.
▲
by
widdma
10y ago
> Google should not be prohibited to discriminate or censor search results[...] You're right, filtering results would be a concerning step. I guess this is why they've added a fact check tag rather than a filter. I think it
26.
▲
by
widdma
10y ago
Video here: http://video.fosdem.org/2017/H.1302/ (go_state.*)
27.
▲
by
widdma
10y ago
The story is that Knuth chose '$' to denote math mode because math typesetting at the time was prohibitively expensive.
28.
▲
by
widdma
10y ago
Yeah, fair enough. On MacTeX or texlive on Arch, it usually takes me a few iterations of `tlmgr install` runs before I have everything I need. "collection-fontsrecommended" is usually the (meta) package I install these days. I wis
29.
▲
by
widdma
10y ago
LaTeX itself isn't over 2GB. The complete texlive distribution is about that large, but that's everything and the kitchen sink. You can install a small base which comes in ~150mb, then add packages as you need.
30.
▲
by
widdma
10y ago
Maybe they meant distributes ? Modulo (sort of) distributes over multiplication: (a * b) % c = ((a % c) * (b % c)) % c
More ›