Live data from Hacker News

Curl.io – Share files from your terminal or ssh

curl.io

11–20 of 68 posts

Re: Curl.io – Share files from your terminal or ssh

#12
post #2

Just awesome. I tried custom shell scripts to upload to dropbox and other cloud storages but it never felt right. The other magic is, on Mac you can see the upload status in the browser window if you keep curl.io open.

Agreed. The web UI reacted almost instantly when I hit enter in the terminal. I'd want an interface to destroy the file immediately then fallback to the 4 hour auto-delete. Also some serious details about the author and security before I'd actually consider sending anything mission critical.

Certainly, there is no need to put tags inside tags, that is invalid HTML5 or at least according to W3C validator.No offense meant to the author. Peace!

Re: Curl.io – Share files from your terminal or ssh

#13
Couldn't find any feedback form on the site, so I guess I'll post it here. Seems there's a small bug in the way the time, dispayed in the console, is calculated.

FilerCtrl uses:

  var c = new Date;
  a.date = c.toDateString() + " " + ("0" + c.getUTCHours()).slice(-2) + ":" + ("0" + c.getUTCMinutes()).slice(-2) + ":" + ("0" + c.getUTCSeconds()).slice(-2);
Which does not respect the current timezone.

I suppose it could be fixed by replacing

  c.getUTCHours()).slice(-2)
with

  (c.getUTCHours()).slice(-2) + (c.getTimezoneOffset() / 60))
Although you'd probably be better of using a library like http://momentjs.com/.

Re: Curl.io – Share files from your terminal or ssh

#18

Earlier quoted context omitted.

Agreed. The web UI reacted almost instantly when I hit enter in the terminal. I'd want an interface to destroy the file immediately then fallback to the 4 hour auto-delete. Also some serious details about the author and security before I'd actually consider sending anything mission critical.

Certainly, there is no need to put tags inside tags, that is invalid HTML5 or at least according to W3C validator.No offense meant to the author. Peace!

I don't think there is anything wrong with span inside div. The other way is a problem though.

But http://validator.w3.org doesn't give me errors about spans or divs. It just gives errors with attributes.

Post reply on HN