Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jchb
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Nordea weekly: Papers please, and how to trade them
(web.archive.org)
1 points
by
jchb
5y ago
|
0 comments
2.
▲
by
jchb
5y ago
Not on Apple platforms. The article links a "gtk and qt trend at Stackoverflow". Adding swiftui and uikit to that trend: http://sotagtrends.com/?tags=gtk+qt+swiftui+uikit&relative=t...
3.
▲
by
jchb
5y ago
By learning only the most important rules, and then enable the compilers undefined behaviour sanitizer(1) during development, making mistakes, and fixing them. (1) https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.h
4.
▲
by
jchb
5y ago
You can remote debug webviews (from Safari on a Mac), but only web views in apps signed with a development provisioning profile (1). So to debug web content in iOS Chrome you would have to build and install Chromium for iOS yourself, rather
5.
▲
by
jchb
5y ago
> And these days all the documentation that Apple produces is in form of brief mentions in WWDC videos. Aaaarrggh! There's actually a very detailed guide that explains both how to do it from the Xcode UI, and from the command line:
6.
▲
by
jchb
6y ago
> You're just sending messages, so you can send a message over the wire and it would be as simple to the developer as sending it locally If you are expecting a reply, or some side-effect in another system, as a result of the message
7.
▲
by
jchb
6y ago
“might cause”, yes. But at least with Postgres that only happens if you add a default value to the new column. You can add the default value in your application instead, just like you would with your average NoSQL DB. Then, when you have l
8.
▲
by
jchb
6y ago
Second that, what's wrong with NTT? 250mbit fiber for a fraction of what it would cost in the US. IPv6 ready. Basically no down time in 5 years. Very polite service staff. Sure, if you look at how they design their websites, signup pro
9.
▲
by
jchb
6y ago
What about building a service, perhaps a web browser plugin, that overlays a trust-worthiness score + contextual information, over text (bonus for images) on the web? If a user posts "I recommend product X", the overlay would say
10.
▲
by
jchb
6y ago
Even if that would be true (that US supported that coup), would the democratically elected Mohamed Morsi have promoted science education in Egypt? The Muslim Brotherhood's history of science education doesn't seem so rosy. I am cu
11.
▲
by
jchb
6y ago
It seems so, a key part of that quote is "working in". https://books.google.co.jp/books?id=d2tF-L00-X8C&pg=PA216&lp... "My late friend, the distinguished Pakistani physicist Abdus Salam, tried to conv
12.
▲
by
jchb
6y ago
Abdus Salam belonged to a school/sect of Islam that encourages open debate and promotes a scientific interpretation of the Quran. "Salam was an Ahmadi Muslim, who saw his religion as a fundamental part of his scientific work. ...
13.
▲
by
jchb
6y ago
Well, macOS 10.15 has a user-space network stack. 11.0 can run on ARM as well on x86. So there are a bunch of things going on under the hood
14.
▲
by
jchb
6y ago
Previously on HN: Why Uber Engineering Switched from Postgres to MySQL (2016): https://news.ycombinator.com/item?id=17280239 A PostgreSQL response to Uber [pdf]: https://news.ycombinator.com/item?id=14222721
15.
▲
by
jchb
6y ago
I think this is less about wanting to protect criminals, and more about US sovereignty at all costs. And clearly upholding this sovereignty was one of Trumps election promises. Under this philosophy (or doctrine, if you will) of sovereignty
16.
▲
by
jchb
6y ago
To me, a non-US citizen, it seems that the International Criminal Court (ICC) is being quite reasonable here. ICC wants to investigate US military personnel that, allegedly, committed war crimes on Afghanistan soil after 2003. They can do t
17.
▲
by
jchb
6y ago
UDP on AT&T and other carriers is just fine, but you need to do NAT hole punching or proxy the UDP packets. See my comment to the grandparent.
18.
▲
by
jchb
6y ago
UDP is fine. We have apps on the App Store that use UDP. This is likely a NAT related issue. That is not going to be an issue just for App Store review, but also for tons of other networks out there. As of lately, carrier-grade NAT deployme
19.
▲
by
jchb
6y ago
Yes, but they only store data in China for Chinese customers (as per the registered region of the Apple ID). [1] [1] https://support.apple.com/en-us/HT208351
20.
▲
by
jchb
6y ago
There is Speech Synthesis Markup Language (SSML). Amazon Polly and Google text-to-speech supports it, although the best neural-model based voices only support a small subset.
21.
▲
by
jchb
7y ago
> why is it up to me to do weird math to figure out if I actually have enough $$$ to pay for what I'd like to have. Well, one reason is: to make you aware of the tax burden (and judge if that % is kept at a reasonable level), rather
22.
▲
by
jchb
7y ago
Scott Meyers has retired from C++ (his own blog post: http://scottmeyers.blogspot.com/2015/12/good-to-go.html?m=1 ) so the next C++ bible has to come from somewhere else. Maybe he saw it coming :)
23.
▲
by
jchb
7y ago
Second this, you get two free Technical Support Incident requests per year as a registered developer, and you can purchase additional ones. We regularly file such requests and have always got timely and helpful responses.
24.
▲
by
jchb
7y ago
Under the GDPR, that Microsoft Data Protection Officer will have 30 days to respond to you. If they don't respond, you can complain to the supervisory authority (in the case of UK that is https://ico.org.uk/make-a-comp
25.
▲
by
jchb
7y ago
> Does anyone honestly think this: [ 'H:|[view1(==view2)]-10-[view2]|' 'V:|[view1,view2]|' ] is readable? This is not Auto layout, it is just an alternative string-based API to express constraints in Auto layout. In p
26.
▲
by
jchb
7y ago
> so it can't gracefully scale layouts down from desktop to mobile sizes (when you have a 3-column layout you have lots of control over column widths, but no way of turning them into 3 rows instead). On Apple platforms (UIKit on iOS
27.
▲
by
jchb
7y ago
> ABI-resilience by default at dylib boundaries Actually ABI-resilience is not the default, it is enabled by a compiler flag. In addition to that, there are some current compiler limitations when it comes to cross-module usage of generic
28.
▲
by
jchb
7y ago
Technically it is a form of garbage collection. However, garbage collection is a very broad term that arguably encompasses even C++ smart pointers. Typically one refers to a garbage collector in the meaning of a separate process that runs
29.
▲
by
jchb
7y ago
The bigger question to me, is why doesn't the US do combined gas/electricy/... trenches accessible by manholes, like you can see in most northern European cities? Is it just economic shortsightedness or does it have to do wit
30.
▲
by
jchb
7y ago
Tip: long press the image you want to save, tap Save.
More ›