feadog's comments

feadog | 8 years ago | on: ‘I Fundamentally Believe That My Time at Reddit Made the World a Worse Place’

sidenote, sometimes this does happen, and it almost always is full of the most comically hateful people: see voat

I'd feel much better if reddit and twitter were even handed with their condemnation of comically hateful people. As someone on the Left, what I've seen is that Left-leaning media bias tends to give indirect license to the most extreme authoritarian and even toxic fringes of the Left. It also fuels a reaction from the far Right.

For as long as Fox News exists and promotes itself as an actual news agency (HAH!)

The mechanism I cite above has been in operation at Fox, just in the other direction.

feadog | 9 years ago | on: Base-122 – A space efficient alternative to base-64

I wrote a base 92 encoder for the Javascript game I'm working on:

http://www.emergencevector.com/

It's pretty easy to write the decode for the 0-91 integer in Javascript.

    if (ch == "!") {
        return 57;
    } else {
        return ch.charCodeAt(0) - 35;
    }
It doesn't give you that much usable compactness over base 64, though you can easily encode a 360 degree angle with two bits of precision lost. Also, 5 base 92 characters can fully encode 32 bits of binary data. (Of course, since base 85 can do it in 5 characters.)

I'm probably going to go to typed arrays of 32 bit values. Currently, I can encode an entire ship's data in 18 bytes, of which 4 characters is a hash id.

feadog | 9 years ago | on: Tesla Shock Means Global Gasoline Demand Has All but Peaked

Hydrogen powered cargo ships have already been made as well. However, I'm not sure if hydrogen generation on board ships has been explored yet. Who knows... it may be possible for ships to run without ever needing to refuel if generation is done on board.

Sorry. Go back and study thermodynamics again. If you have the energy to generate hydrogen, you might as well use that energy to move the ship. You're always going to spend more energy generating the hydrogen than you will get back burning it or combining it in a fuel cell. The one exception is if you start from just the right feedstock to generate the hydrogen from, like some hydrocarbon. The leading candidate now is natural gas. However, in that case, the byproduct is CO2 -- so what's the point?

Or, maybe you were thinking of hydrogen as energy storage? Batteries are far better than hydrogen as far as that goes.

feadog | 9 years ago | on: Tesla Shock Means Global Gasoline Demand Has All but Peaked

You can already buy a portable box that lets you combine the power from two different circuits that are out of phase with each other, to get twice the power. I saw a post by a Tesla owner who uses it to get effective Level-2 charging from friend's country homes.

feadog | 11 years ago | on: Microsoft gears up to mass produce large-screen touch displays

Something that's a standing desk/tilted drafting desk form factor combined with good palm/elbow/forearm recognition would immediately address the "gorilla arm" problem with such interfaces. Combine that with Reactable-style tool objects, and input from cameras and/or a Kinect, primarily in order to make the system "smarter" about how to interpret touch, and I could see some really revolutionary interfaces for applications that are amenable to a data-flow style model.

(Applications where you have boxes connected by pipes/arrows to other boxes.)

feadog | 11 years ago | on: Native GUI library for Go

Some folks at Microsoft were trying to circumvent this with Singularity OS being based on something like CLR. Then everything could dynamically interoperate with everything on a programming language level.

http://xkcd.com/927/

feadog | 11 years ago | on: Go/JavaScript MMO with Conway's Life as an Area Attack

I've been looking for something like the game that is described in the post for awhile. The kind of complexity that comes out of having N different damage types and M arbitrary, incompatible equipment slots is fun, but it's not nearly as intellectually rewarding as the complexity that comes out of simple rulesets like Newtonian Physics, programming, or genetic algorithms. Some use of GAs was attempted by Lord British with Ultima MMO games.

Generally, it runs into problems like these:

http://lesswrong.com/lw/l8/conjuring_an_evolution_to_serve_y...

page 1