Control + mouse scroll wheel works for me
HN user
aspirin
Looks great, but you should add an explanation about how it works. I’m hesitant to just run some command.
Yes, PostGIS supports projection agnostic ”geography” types: https://postgis.net/workshops/postgis-intro/geography.html
In professional contexts as a software developer you will manage just fine with just English. Free time context and true integration to society will require learning Finnish. But you can take your time with that.
I’m a Finn.
Curious what ”The cycle removal algorithm only uses the reference counts and the object content” means in practice. Is it based on some well known algorithm?
It's a form of protest. If both flatMap and smooshMap are seen as equally "breaking the web", maybe TC39 will coose the less insane name for the method.
Currently there is nothing to stop mappers using tags in wrong ways. It should just be flat out impossible. If a field/tag isn't defined in the schema, it could not be used. The range of values should be limited in the same way, too.
Im my opinion the biggest problem is the data model (or lack of). Tags i.e. key-value pairs are used to add properties to geometry. Mappers use different combinations of keys/values to describe the same thing. The post touches on this, but does not offer solutions other than adding "layers".
There should be a strict schema that would be community managed through some process.
I hope this isn't the "Mac Pro successor" Apple was alluding to earlier this year...
You can do it still. No need to be "first", IMO.
It makes me sad to see the AST go. I was thinking of writing my own WASM compiler just for fun, purely as an AST transformer.
Its funny how most of the WASM tools still use s-experssions as the text format. How does that even work, now that the AST is history?
The high level goals of WASM do include access to browser APIs, but the MVP version that is being implemented now, does not yet allow it: https://github.com/WebAssembly/design/blob/master/JS.md
WASM code can call external functions defined per module, and the external code can be JS code that interacts with browser APIs. So indirect use of browser APIs is possible.
WASM isn't related to JavaScript in any way. Maybe you were thinking of asm.js?
You cannot access the browser APIs from WASM so there is no tight coupling with the browser environment. I think non-browser use could make definately sense.
Couldn't you do it with transaction isolation levels? for example in Postgres "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ;"
Inside the transaction you will see only changes made within the transaction.
All of the major browsers will support WebAssembly soon: http://v8project.blogspot.fi/2016/03/experimental-support-fo...
This playground uses Binaryen(https://github.com/WebAssembly/binaryen) to interpret the WebAssembly code on the fly, so it works in current browsers that do not yet have native support.
Elementary OS gets pretty close: https://elementary.io/
This is so horrible that I'm left speechless. Maybe others feel the same and skip to the next headline.
Great to see progress, but 1668 dropped frames in the test is a bit underwhelming.
Yes, indeed. The eposure of the photo must have been set to make earth look as bright as we expect, and leaving the moon darker.
Is this the real reflectance of the moon? Seems so dark.
Usually we see the moon at night surrounded by night sky, which probably skews our perception of the real color of the surface material.
Surprisingly D3.js actually can do your AJAX calls with d3.xhr()!
I believe he means that in digital games the model stays hidden most of the time. You only see the inputs and outputs.
In physical games the players have to enact the model themselves by following the rules at every step. Without exact knowledge of the model, the gameplay cannot even start.
Organization is the hardest part for me personally in getting better as a developer. How to build a structure that is easy to change and extend. Any tips where to find good books or online sources?
Is it a joke? I sure hope so.
In some cases this rule could be bad for customers, too. In Finland uncapped 4G data with monthly price is the norm, and if the carrier cannot charge extra for data roaming in other EU countries, it can only lead to higher prices or discontinuation of uncapped data. Carriers still have to pay each other roaming fees after this rule is in place, right?
There is something wery odd about Newcomb’s Problem. If the Predictor can predict my choice with 100% accuracy, it's not really a choice, is it? Free will does not exist in this scenario, and therefore I cannot meaningfully choose between one or both boxes. The question is nonsensical.
I usually read the linked article first, but I too value the discussion most. Many times an uninteresting (for me) link will produce a very fascinating dialogue.
I's always surprising to me when doctors treating "bad guys" are asked about how they feel about it. Some kind of revenge mentality I guess is to blame.
Could Prolog be used in geometric constraint solving? Any examples?