A cool tool with an unfortunate name. I'm not going to send a link to datafart.com/mygraph to someone with whom I only have a professional relationship.
I dunno -- most who know me would say I have a sense of humor, but that doesn't mean I think the word "fart" is funny in and of itself, or expect anyone around me to either, beyond my 3-year-old.
I'm also occasionally aware of how others build their concept of me. If someone had known me for years and I recommended this service, I can't imagine it would make any difference.
If we'd had only incidental interactions, this could easily remain the first thing that pops into their head when they think of me in the future. I worked once in the same company as a talented designer who told a hilarious but quite scatalogical story at lunch one day. That's still the main thing that pops into my head when I think of him. I don't know that it'd stop me from recommending or hiring him, but it remains a significant part of how he's defined in my head.
I'm not sure if this makes me seem like a wet blanket, or overparanoid -- my real point is that I have quite a few different filters, and for most parts of my professional life "fart" doesn't make it past at all.
I suppose if the target audience of this application is "st0p", then you'd be correct. The rest of us don't necessarily get the luxury of choosing what sort of sense of humor our employers have.
Hmmmm. Dunno. If you have baisc experience and a proper grasp of programming and live in the westeren world, you might not know beforehand if an employer had humor, but you can still choose your employer.
If by "basic experience of programming", you mean 10+ years of experience or a Stanford/MIT/Berkeley degree, and by "western world" you mean Silicon Valley (and a few other very select areas, all of them within the US), yeah, I agree.
Outside that, the number of decent opportunities you'll get as a developer will be too low for you to be picky.
"Why not?" Because, for example, if you decide you really want to work with frickin' lasers, that may be more important to you than working at a place where clowns are appreciated in all their glory.
That's like suggesting someone is illiterate because they no longer care to read books written for small children. Of course, if that's all you're capable of reading, those people must seem pretty stupid.
Dont' confuse sense of humor with being keen on laughing at brown jokes. Humor for a grown-up person, in an abstract situation (like with professional colleagues) is very difficult to attain.
You can perfectly be unpolite trying to be humorous with this kind of joke.
The easy joke is not necessarily polite and is usually unintelligent: so it is a way of telling the other part "look, laugh at this silly thing" when actually one ought to be able to say "look, laugh at this intelligent joke".
I don't really understand this criticism. It's perfectly reasonable to want to install, for example, gnuplot to be able to do plots without depending on a networked service. But this is neat, and could be convenient if you're on a machine without plotting software installed. He didn't take away your gnuplot by creating this, so really, what's the problem? (On another note, for these types of graphs the gnuplot command is "plot", so I don't see why the author has trouble remembering that.)
The web dependency is awesome. It makes it that much easier to share the chart with others. Since you're probably on the internet at all times, what exactly is the detractor here?
I'm now storing my data on someone else's servers, and they promised to remove it after 10 minutes. Not good for sharing. And if the site is down...I'm out of luck.
Edit: And there's not even a straightforward way of saving the graph...it's not a real image. Do I save it as a webpage? That's inconvenient for embedding it elsewhere. Do I screenshot it? That's cumbersome...
No man, you're not unreasonable at all. I think the winner over the next 30 years will be a happy consolidation of web and local storage, let's hope HTML5 get's it right.
import pandas
from pylab import *
d = pandas.read_csv(sys.argv[1])
plot(d[d.columns[0]], d[d.columns[1]])
xlabel(d.columns[0])
xlabel(d.columns[1])
show()
That'll just pop up a window displaying the graph. With 2-3 extra lines of code and more than 30 seconds of effort, I'm sure it would be easy to upload to imgur.
You could also do this without a server at all. You could just have a script put your data into the html/js template and open up the page with something like bcat.
Isn't the point not having to worry about presentation and messing the templates? Perhaps I just don't have your command line fu but I don't see how I could do what you are talking about in a single line/simply.
That's pretty awesome. I hadn't seen it before. DataFart has the one advantage that you don't need to pipe the data in locally. If the source data is on your local machine, this is a much better solution.
This would be even better if it supported dates. In my day job I'm struggling to find tools for plotting time-based data nicely and efficiently. Splunk works, but only if you have that.
Seconded. I'm able to plot thousands of date-tagged points with good responsiveness to zooms, and per-point popups-on-mouseover showing more information about each point.
Dunno, maybe you could make the transition from static file to interactive interface more easily? Or maybe I just find those graphs much better looking.
The alias employs curl to send data to the server hosted at datafart.com. The parameter @- supplied to curl means, send the data on stdin as the body of the request. So the user, via the alias, sending data to the server where it is processed, and the curl response is a URL to the temporary location of a viewable plot.