Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
PyComfy
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
PyComfy
4y ago
From the same website: Iconic yachts: On board Steve Jobs's Feadship superyacht Venus https://www.boatinternational.com/yachts/editorial-features/... Jobs died before it was finished.
2.
▲
by
PyComfy
4y ago
34yo here, got called a cheater constantly, even by "top" players. Despite using a slow sensitivity myself, i would say that slow/fast sensitivity or wrist/arm aiming doesn't matter; I have seen plenty of people bei
3.
▲
by
PyComfy
9y ago
http://www.buildyourownlisp.com/
4.
▲
by
PyComfy
9y ago
Intel shall definitively be worried https://blog.cloudflare.com/arm-takes-wing/
5.
▲
by
PyComfy
9y ago
for linear algebra, may i add http://immersivemath.com/ila/index.html
6.
▲
by
PyComfy
9y ago
http://lodev.org/cgtutor/raycasting.html ~200 LOC
7.
▲
by
PyComfy
9y ago
Is it really? If we go back to the roots, lisp is made of what John McCarthy calls the Primary S-Functions which are atom, cons, car, cdr, and eq (a.k.a =). Of these five, clojure only has two (atom and eq)
8.
▲
by
PyComfy
9y ago
Does Graal support tail call optimization? It has been announced for hotspot +10 years ago but still not implemented as today. edit: https://blogs.oracle.com/jrose/tail-calls-in-the-vm
9.
▲
by
PyComfy
9y ago
ah sorry. i did import dis dis.dis("a = foo.bar(b)") which gave 1 0 LOAD_NAME 0 (foo) 2 LOAD_ATTR 1 (bar) 4 LOAD_NAME 2 (b)
10.
▲
by
PyComfy
9y ago
Naive interpretation of the bytecode (not even pre-decoded, just a switch statement). And almost everything is resolved in the dynamic environment. for example, a = foo.bar(b) is actually ldict = locals() ldict['a
11.
▲
by
PyComfy
9y ago
Interesting experiences beyond the command line are game development tools; Each iteration try to make the barrier between artists/content creators and programmers thinner. https://www.youtube.com/watch?v=hXSKGYQvZsI
12.
▲
by
PyComfy
9y ago
My dad knew someone who had a reinforcing steel bar stuck into the middle of his head; The bar entered is mouth and exited in the middle of the top of his skill. After that, the guy was noticeably smarter but also more irascible. My dad the
13.
▲
by
PyComfy
9y ago
Qualcomm Falkor (ARMv8 AArch64) vs Intel Broadwell and Skylake https://blog.cloudflare.com/arm-takes-wing/ Multicore AVX512 lowers the frequency The Qualcomm CPU only has the 128-bit wide NEON SIMD, while Broadwell ha
14.
▲
by
PyComfy
9y ago
https://thehackernews.com/2017/02/bypass-aslr-browser-javasc... http://www.cs.vu.nl/~herbertb/download/papers/anc_ndss17.pdf XI. CONCLUSIONS In this paper, we described how ASLR is
15.
▲
by
PyComfy
9y ago
I always understood it as this Transpilation: text to text (eg: Scheme to C) Compilation: anything to anything but usually it implies text to binary code transpilation is compilation but compilation is not necessary transpilation (the all
16.
▲
by
PyComfy
9y ago
haven't played it but there is MHRD on steam which is a game about designing a CPU. http://store.steampowered.com/app/576030/MHRD/
17.
▲
by
PyComfy
9y ago
The source code of the kernel of Windows server 2003 and Windows XP Pro x64 was available to universities for education purposes . Someone leaked the code on internet years ago which is now everywhere on github (search WRK-v1.2). The code
18.
▲
by
PyComfy
9y ago
I have ditched google in favor of Searx, a metasearch engine that anyone can host https://asciimoo.github.io/searx/ https://searx.me/ https://github.com/asciimoo/searx/wiki&#x
19.
▲
by
PyComfy
9y ago
i don't like first/rest; car and cdr are about pairs, not about lists which is an implicit type (like strings in C).
20.
▲
by
PyComfy
9y ago
https://mbebenita.github.io/WasmExplorer/ The popcnt example is nice.
21.
▲
by
PyComfy
9y ago
also https://news.ycombinator.com/item?id=15053064
22.
▲
by
PyComfy
9y ago
Maybe the author is referring to the apparition of the homo erectus
23.
▲
by
PyComfy
9y ago
Have a look at the Chromium/Chrome's extension Just Read before / after https://i.imgur.com/Ihy5wQh.png
24.
▲
by
PyComfy
9y ago
How long before Intel sues them?
25.
▲
by
PyComfy
9y ago
He sure seems to be very talented but Ryzen also gained from a few important patents being finally expired (the one about SMT, for example) https://scalibq.wordpress.com/2012/02/14/the-myth-of-cmt-clu... htt
26.
▲
by
PyComfy
9y ago
Programming is one of the most difficult branches of applied mathematics; the poorer mathematicians had better remain pure mathematicians. Edsger W.Dijkstra, EWD498
27.
▲
by
PyComfy
11y ago
A closure is a procedure that captures its free variables where those free variables are resolved in the lexical context. A lambda procedure is just an anonymous procedure. A lambda is not necessary a closure and a closure is not necessary
28.
▲
by
PyComfy
11y ago
You can integrate eclipse into emacs. http://eclim.org/ http://www.skybert.net/emacs/java/
29.
▲
by
PyComfy
11y ago
http://nuitka.net/pages/overview.html