Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mschoebel
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
mschoebel
10y ago
Tab-delimited CSV with the raw-data: https://geekregator.com/files/HackerNews-RawData2017.zip The timestamps are in UTC+2. I keep the clock in the Geiger counter on daylight savings time. Too lazy to change it. :)
2.
▲
by
mschoebel
10y ago
I have the GammaScout Alert: https://www.gamma-scout.com/EN/Home.php It stores the data in its internal memory which I then transfer via its USB port to my computer once a week.
3.
▲
by
mschoebel
10y ago
I'm in Germany and I have a Geiger counter running 24/7. I just looked at the data for January and February and the only thing that I notice is a VERY slightly higher reading on February 4th with 0.1727 microSievert/hour. Ave
4.
▲
by
mschoebel
10y ago
Have you looked at https://uimovement.com/tag/search/ and https://uimovement.com/tag/filter/
5.
▲
by
mschoebel
10y ago
Still unacceptable as it would still cause my users to expose their IP address to someone else's server.
6.
▲
by
mschoebel
10y ago
Let's see if I got that right: Specification says I must load the AMP script from cdn.ampproject.org? If yes, then there is no effing way that I will ever use this. I will NOT use something that forces me to load scripts from a hos
7.
▲
by
mschoebel
10y ago
Umm... FAQ says: "What licence does Ultibo use? The GNU LGPL version 2.1, the same licence used by many other popular open source products."
8.
▲
by
mschoebel
10y ago
FWIW... I just logged in to my Yahoo Account and removed the security questions. Just to be sure. I had already changed my password a few months ago when first rumors of this came up. I'm pretty sure that the option to remove the secur
9.
▲
by
mschoebel
10y ago
I probably should also add that I'm using FreePascal - not Delphi - and that the servers are a mix of Windows and Linux.
10.
▲
by
mschoebel
10y ago
See: https://deusu.org The backend is written in Pascal. With the exception of the blog. That is written in Node.js. I did that as a way to learn Node.js. But as soon as I find some time I'll rewrite that in Pascal too.
11.
▲
by
mschoebel
10y ago
Pascal
12.
▲
by
mschoebel
11y ago
Thanks for the answer. I suggest not to use AWS if you know that you'll need a server 24/7. Old-school hosters which offer dedicated servers are much cheaper for that use-case. There are several offers here in Europe where you c
13.
▲
by
mschoebel
11y ago
Do you have a rough estimate of how many servers you will need for Elasticsearch for the 1.7bn URLs of the latest CommonCrawl?
14.
▲
by
mschoebel
11y ago
Have you ever in real life hear someone say "If 80kg is less than your weight, then you are overweight." Probably not. We say: "If your weight is more than 80kg then you are overweight." When talking we are used to first
15.
▲
by
mschoebel
11y ago
That webpage has a last-modified date from 2009...
16.
▲
by
mschoebel
11y ago
Never call yourself a hacker. To non-tech people "hacker" has the meaning of "illegally hacks into computers".
17.
▲
It only has to be good enough
(geekregator.com)
5 points
by
mschoebel
11y ago
|
0 comments
18.
▲
We Don't Need More Programmers, We Need Better Tools
(geekregator.com)
7 points
by
mschoebel
11y ago
|
1 comments
19.
▲
by
mschoebel
12y ago
All the functions in that code return numbers.
20.
▲
by
mschoebel
12y ago
> Or use strict mode would not allow that. It was in strict mode. It allows that.
21.
▲
by
mschoebel
12y ago
Great. So I could have just left that 100-line function as it was and been spared that 30-minute bug-hunt for the missing "+". Of course I wouldn't have written that blog-article then, and wouldn't have gotten onto the H
22.
▲
by
mschoebel
12y ago
Thankfully the bug DID make my tests go red.
23.
▲
Why I sometimes hate JavaScript
(geekregator.com)
42 points
by
mschoebel
12y ago
|
62 comments
24.
▲
“Before I will release the code as open-source, I need to clean it up some more”
(geekregator.com)
4 points
by
mschoebel
12y ago
|
1 comments
25.
▲
by
mschoebel
12y ago
Some things just won't work without JavaScript. Or would be way, WAY too hard to implement without JS. But a website should at least appear without JavaScript. I've seen lots of websites that look empty or horribly distorted whe
26.
▲
by
mschoebel
12y ago
I just posted a follow-up blogpost, comparing Node 0.11.15 and io.js 1.0.3 which were both released yesterday. In that post I also benchmarked the various fixes for the typed-array slowdown you mentioned. BTW --nouse-osr makes all three tes
27.
▲
Node.js 0.11.15 and io.js 1.0.3 – Very much the same in performance
(geekregator.com)
9 points
by
mschoebel
12y ago
|
0 comments
28.
▲
by
mschoebel
12y ago
Ok, I hadn't tested with both before. Keeping the array alive and using --nouse-osr makes io.js only 2.3% slower than my original measurement for Node 0.10.35. Median of 5058ms. And Node 0.10.35 shows basically the same results as
29.
▲
by
mschoebel
12y ago
Very interesting. After reading your comment, I tried allocating another Uint8Array and keeping it allocated throughout the entire test as a workaround for the issue you mentioned. Time for Node.js was unchanged, but io.js was down to about
30.
▲
by
mschoebel
12y ago
I thought about that. But it would have diminished the point I was trying to make: Always test with different versions as performance may differ by a LOT.
More ›