HN user

alrex021

4,383 karma
Posts220
Comments141
View on HN
www.ox.ac.uk 1y ago

Quantum Connectivity Achieved at Oxford University

alrex021
3pts0
arxiv.org 1y ago

Math framework of intelligence and consciousness based on Riemannian Geometry

alrex021
4pts0
arxiv.org 2y ago

The statistical thermodynamics of generative diffusion models

alrex021
3pts0
nakamoto.com 3y ago

The Cypherpunks

alrex021
2pts0
en.wikipedia.org 3y ago

Gravity Train

alrex021
4pts0
www.pencilofrays.com 4y ago

Ultimate Guide to Lens Design Forms (2020)

alrex021
28pts0
sciencex.com 5y ago

Brain like computing architecture where computation happens uniquely in-memory

alrex021
3pts0
betterexplained.com 5y ago

Intuitive Guide to Exponential Functions

alrex021
2pts0
medium.com 5y ago

Grand Simplicity: designing a new social contract

alrex021
2pts0
www.quantamagazine.org 5y ago

The Knotty World of ‘Anyon’ Particles (2017)

alrex021
1pts0
www.readthesequences.com 6y ago

Bayesian Judo

alrex021
2pts0
www.edge.org 7y ago

Understanding is a poor substitute for convexity (2012)

alrex021
130pts64
queue.acm.org 9y ago

Don't Settle for Eventual Consistency (2014)

alrex021
91pts9
medium.com 10y ago

Composability: From Callbacks to Categories in ES6

alrex021
113pts34
www.cbinsights.com 11y ago

Your Startup Has a 1.28% Chance of Becoming a Unicorn

alrex021
1pts0
homes.cs.washington.edu 11y ago

A Few Useful Things to Know about Machine Learning [pdf]

alrex021
213pts18
www.cbinsights.com 11y ago

Is Uber Really Worth $40B?

alrex021
7pts3
blog.sweepsouth.com 11y ago

Don't Judge the Model, Judge the Practice

alrex021
3pts0
medium.com 11y ago

Finding Equilibrium: Searching for the True Value of a Bitcoin

alrex021
1pts0
blogs.hbr.org 12y ago

Entrepreneurs Need a Better Way to Cash Out

alrex021
1pts0
www.askamathematician.com 12y ago

If nothing can escape black hole's gravity, how does gravity itself escape?

alrex021
3pts0
joearms.github.io 13y ago

Joe Armstrong: concurrency and parallelism (explaining it to a five year old)

alrex021
1pts0
hyperpolyglot.org 13y ago

Standard ML, OCaml, Scala, Haskell: a side-by-side reference sheet

alrex021
9pts1
ads.harvard.edu 13y ago

Fundamental Numerical Methods and Data Analysis

alrex021
4pts0
pharmaceuticalintelligence.com 13y ago

DNA - The Next-Generation Storage Media for Digital Information

alrex021
1pts0
www.kickstarter.com 14y ago

Space Command - Fastest Funded Film Project On Kickstarter

alrex021
3pts0
www.newyorker.com 14y ago

The Picture Problem by Malcolm Gladwell

alrex021
9pts0
37signals.com 14y ago

Watching Apple win the world

alrex021
1pts0
idris-lang.org 14y ago

Idris - pure functional programming language with dependent types

alrex021
74pts15
groups.google.com 15y ago

Clooj, a lightweight IDE for clojure

alrex021
1pts1

Hilarious that they still label it as a country variant, as if the variant carries a genetic “country” code that determines the origin. Plain stupidity.

[Edit] To elaborate since there is so much negativity to my original comment. There is no absolute proof that the variant originated in South Africa, so calling it by a country’s name is an insult to human intelligence. We refer to the virus as the Coronavirus and not the Chinese virus. Why should the variant be any different? (This variant being actually called 501.V2)

A 20x jump on the monthly charge, especially in lower margin business, will hurt whichever way you look at it, IMHO.

In our own experience, we pleaded the fact that those dollar figures are just beyond workable if you consider the fact that we come from a developing country and we're faced with ~20x jump. I.e. it heavily messes with the unit economics. The Google representative actually laughed in our face (via Hangout).

Good question. From a game theoretic perspective, agents (players) are assumed to be self-interested in a non-cooperative setting if I recall. Maybe someone can comment on this a bit further.

We've got so many beta requests, we can't process them fast enough. So, just refer as many people as you can, and we'll bump you up somewhere in the "waiting list". Ingenious. ;-)

Interfaces with the addition of default methods, in contrast to abstract classes, provide the inheritance of behaviour (but not state) from multiple sources.

In the current form, yes HaLVM requires Xen, therefore Xen on ARM support would be required too.

Xen on ARM [1] support is ongoing and from what I can tell, the repository [2] is flagged as unstable therefore certainly still requiring work.

[Edit] RaspberryPi has an ARMv6 CPU. The Xen site reads: "The Xen ARM Project, led by Samsung, is responsible for the direct port of the Xen hypervisor to the ARM processor. So far the focus of the project has been to use Xen Paravirtualization (PV) for a range of processors (ARM v5 - v7).".

This means that it should cover ARMv6 of course. As for the status, I have no idea.

[1] http://xen.org/products/xen_arm.html

[2] http://xenbits.xen.org/ext/arm/xen-unstable.hg/

That's a really interesting idea considering the limited resources of the device.

Thank's for the suggestion; I'll check out the HaLVM site once it comes back up.

Alen (author of the post)

Not to sure if anyone has mentioned this yet. If you run light table as client(browser)/server model, then effectively your sever could run in a cloud and your session would be reachable from any browser no matter where and what computer or smart phone/tablet you are on.

With things like ClojureScript and Meteor, this is very achievable today and a definite game changer. Exiting times we live in.

[edit] Oh and good luck Chris and the team.

Animal Liberation by Peter Singer

Peter Singer introduced and popularized the term "speciesism" in the book that is often referred to as the bible of the animal rights movement.

My personal disappointment is the lack of expressiveness.

Here is a C# LINQ example:

  using System.Linq;
  files.AsParallel().ForAll(file => ProcessXML(file));
To achieve something similar in Java 7, one could start on perhaps with improving the java.util.Collection interface, or appropriate abstract children, by introducing the asParallel method that the Collection implementations could implement. One obvious problem I see is the lack of lambda support in Java 7, so one would have to pass an anonymous class into forXXX(..) instead which is a bit more clunky.

Correct me if I'm wrong here but isn't that the purpose of the adapter implementations to also hold the different dialect and/or datastore specific optimizations?

[edit] OT to this thread: didn't clojure-dbm have some similar ideas to Clojurize? I remember forking it from your github repository early last year some time and doing some cool stuff with it.

> While it's nice to say your program to store to any kind of datastore, it's much more practical to have it optimized for the kind that's best for it.

I think this is very arguable. For the cases where you want to do some query optimization, thats what the Clojurize protocol's prompt function is intended for.

  (prompt
    [adapter expression]
    "Execute a native database expression")