Viewing profile — johnt15
johnt15
HN member- Joined
- Sun, Apr 03, 2016, 11:52 PM UTC
- HN karma
- 36
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About johnt15
No profile information was provided.
Recent public activity
-
comment
Comment #19101861
It's interesting that the roadmap of volt has been saying v1.0 is just around the corner for the past half year. The other roadmap items also don't change much. https://web.archive…
-
comment
Comment #19069144
Looks like EdgeRouter X fits my requirements and is pretty cheap (50Eur). Thank you!
-
comment
Comment #19064546
Are there any routers supported by OpenWrt that can handle 1Gbps WAN to LAN? My current router only pulls 150Mbps and I want to keep OpenWrt due to the amount of custom network con…
-
comment
Comment #17764568
It works fine on OSX 10.12.6. You need the following customizations (not sure what's in OSX-KVM already): - tell explicitly it's a "Penryl" CPU ( Penryl ) - force AES instructions …
-
comment
Comment #17360477
I can second that!
-
comment
Comment #17205304
> or LGPL (also requires project to be LGPL) This is not correct. LGPL only requires that Qt is linked as shared libraries and sources of any changes to the Qt itself is provided.
-
comment
Comment #15375178
Some anecdotal data: Due to some reasons I couldn't use contact lenses in one eye for a couple of months. I switched to using contacts in single eye for that period, as I can't sta…
-
comment
Comment #15044429
Any large project needs a build system with complex data structures to express all the dependencies just due to sheer amount of them. Add various types of source generation, toolin…
-
comment
Comment #13210834
It's possible to work around the restriction easily. This tool ( https://github.com/p12tic/eagle-brd-merge ) can move a single Eagle board around, so whenever you want to move a co…
-
comment
Comment #11693930
It's possible to do automatically this by using a SIMD library such as libsimdpp ( https://github.com/p12tic/libsimdpp ). Everything is mostly abstracted away and you just write th…
-
comment
Comment #11421766
By saying single code path, I don't mean single instruction stream. libsimdpp, for example, supports building same code for different instruction sets, linking into the same execut…
-
comment
Comment #11420085
There is entire high-lever scientific computing framework built using a SIMD wrapper: https://github.com/jfalcou/nt2 . Though I must note in this case the SIMD wrapper has signific…
-
comment
Comment #11420012
The property of AVX and AVX2 you mentioned actually helps having single code path. If the SIMD wrapper allows parameterization on vector width (most do that), you can simply increa…
-
comment
Comment #11418471
It's much better to use any of the numerous SIMD wrappers such as libsimdpp or Vc and get various benefits for free. It's possible to target everything from SSE and NEON to AVX512 …