Hacker Newsnew | past | comments | ask | show | jobs | submit | k8tte's commentslogin

too much stress and/or reefers will reduce your cognition


Cool project!

But i'm confused. On http://openage.sft.mx/ they say this is a reimplementation in C++14, but seems to be actually implemented in Python [1] ?

1: https://github.com/SFTtech/openage/tree/master/openage


You're looking at a wrapper around libopenage, which is written in C++:

https://github.com/SFTtech/openage/tree/master/libopenage


thanks!


It uses both. C++14 for the engine, and Python for the convert script and some other things. Check the README for more information.


The name originates from this bread;

https://de.wikipedia.org/wiki/Zopf_%28Brot%29


That's German, but the swiss variant is a Zöpfli so using the ö would be correct since Zöpfli/Zopfli was created in Zürich


All this "dark matter might be here and there" articles makes me feel they are missing the point.

The article even fails to mention electromagnetism, which together with gravity causes matter to collapse on itself, causing black holes, which is the gravitational core of every galaxy.

Electromaginetic fields has also been dictating the galaxy cluster structures (aka "mega structures" that has emerged since the hypothesed event we commonly refer to as the big bang).

http://www.sciencechannel.com/tv-shows/how-the-universe-work...

http://www.setterfield.org/Astronomy/Galaxy_Cores.html#elect...


Essentially the defining property of dark matter is that it does not interact electromagnetically, so there is no point to consider it.


I think you misunderstood me. I am saying the electromagnetic force can be fit the bill where we currently are trying to squeeze in "dark matter". Please be aware that we have not discovered dark matter, we don't know what its made of, its properties, or really, if it even exists.

But i get it. Thinking outside of the box is frowned upon around here. Lets all be fanboys, and fuck yea downvote me some more.


I never vote someone down, maybe three or so exception - can I look that up somewhere? That aside the page you linked to contains unscientific and plainly wrong nonsense and clearly shows no understanding of physics. I totally understand that you get downvoted for that content because it does almost the equivalent of saying that air doesn't exist because I can't see it.

That being said, it must be stated first, and bluntly, that we don't think black holes exist. If not even light can get out, how is it the cores of galaxies are shooting out massive amounts of x-rays and material?


If I was in the market to downvote someone, that last line would've sold me.

Can we please try to keep our delicate egos out of the discussion? If I wanted to see people gripe bitterly about their comments being downvoted, I'd go to reddit.


You aren't thinking outside the box, you're just spewing pseudo science about things you don't understand because the real science makes you feel uncomfortable.


just a sorry rant about how OP tried and failed TDD, and then he points to some project from 2004 that to me seems to be missing code ownership (ppl afraid of changing code they dont fully understand), but to OP seems to be doing TDD wrong.

it's a waste of time to read, as it don't bring anything new to the table. i wish the OP would at least attempt to reflect on what TDD is, what it's not and why oh why, so many devs seems to like it.


what a load of bullshit.


or just use scp, which is part of openssh


Try that thru a double connection? ie, ssh-ing to a machine from an already open ssh session?

I'm amazed I get -1 for that post; scp is clunky as hell when you already have a shell in 'that' directory; and it'll only work if you have /direct/ access to the machine you are logged in, and that's rarely the case if you first connect to a front end machine.

I'm an embedded dev as well, and I use zmodem everyday. I have boards that have no network, just a serial port, and I can upload an executable, download the log from just the debug console.


It's interesting how tcp/ip is pretty much taken for granted. Of course you could run SLIP over that serial port ;)

Just the other day I was bitching about how it is easier to drive a printer than a relay from a present day computer, the answer I got back was 'can't you use an arduino?'...


Hehe you'd be /amazed/ how much smaller the kernel gets it you don't put in IPv4/6 -- and let me tell you, when you upload via uart, every little helps :-)

My fav method is to build a kernel with just busybox using my minifs [0], making sure I have kexec support in that kernel.

Once booted, I can upload a new kernel via zmodem, and kexec straight into the new kernel. Rince, repeat!

You can also use zmodem to upload new binaries to a system, even if it's an initramfs, without having to do a full rebuild/reboot. Quite handy.

[0]: https://github.com/buserror/minifs


I wonder if I could use zmodem via VirtualBox's serial port... I mean, I have PXE for loading new kernels but this seems cooler.


> I'm amazed I get -1 for that post; scp is clunky as hell when you already have a shell in 'that' directory; and it'll only work if you have /direct/ access to the machine you are logged in, and that's rarely the case if you first connect to a front end machine.

I did not downvote you, but setting up a port forward (-L) or SOCKS proxy (-D) on the first machine is very easy and extremely flexible. I do it all the time.

You can also do some tricks in ssh_config to route through the first machine (this is non-obvious, I'll grant). I do "ssh <secondmachine.whatever.tld>.<hopmachine>", and then I transparently connect from my workstation to the secondmachine, through the hopmachine. This is also more secure as the hop machine is just a dumb transport for data.

> I'm an embedded dev as well, and I use zmodem everyday. I have boards that have no network, just a serial port, and I can upload an executable, download the log from just the debug console.

Absolutely, zmodem is still very useful for serial links, and they are very common in embedded devices.

I really doubt there's any reason to use zmodem over SSH other than convenience if you happen to know it better than the alternatives.


> I really doubt there's any reason to use zmodem over SSH other than convenience if you happen to know it better than the alternatives.

You might not have encountered it.

Here's the use case: the ssh session terminates at a bastion host running a restricted sshd that drops port forwards and punts the connection to an internal landing host which is not permitted to ssh out.

Using an in-band file transfer protocol is incredibly useful.


If you have SSH keys set up then:

    cat file.bin | ssh -A host1 ssh host2 "cat > file.bin"
Then there's other tricks you could do like port forwarding, filesystem mounting over SSH (sshfs) etc. But if zmodem works for you then it's as good a solution as any of the above. I only give SSH examples as demonstration at just how scarily powerful a tool it can be.


That assumes ssh is present to begin with. Really in the embedded world (which was the context if I got it right) you can just about throw all those assumptions out of the window. You're roughly back in 1989 or so when it comes to the features available to you in the environment, unless you're going for the more powerful platforms (with associated physical footprint, power consumption and boot times).


The context if this discussion was tunnelling zmodem over SSH, so I think it's a fair assumption that SSH is installed :)

But you're right regarding embedded *nix in broader contexts.


zmodem is 'in band', scp is out-of-band, you may not even have direct access to the machine you wish to transfer from.


with dnsmasq

  address=/pagefair.com/127.0.0.1
  address=/pagefair.net/127.0.0.1
seriously, this only strengthens my argument for blocking all sorts of 3rd party crap


I suppose you mean the "Chrome Apps". they are just shortcuts to the web version of these tools, not the actual tools.


You're right. They are indeed web shortcuts.

But that doesn't change the fact that they show up as apps in the Launchpad.

Even worse, as I just discovered, they can't be deleted from the Launchpad! Neither do they show up in the Applications directory! WTF!


this is not an emulator, its an interpreter for the zx spectrum basic dialect...


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: