`curl wttr.in`: Weather in your terminal
11–20 of 147 posts
Re: `curl wttr.in`: Weather in your terminal
#12Re: `curl wttr.in`: Weather in your terminal
#13vim ~/.bashrc
``` alias weather='/usr/bin/curl wttr.in' ``` :wq
and now:
weather
Re: `curl wttr.in`: Weather in your terminal
#14I have to scroll all they way down to the buttom to find the information source -- WorldWeatherOnline. Does people not care about where their whether data is sourced from? Living in Japan, I have always been wary of these type of service, since I find a lot of them really inaccurate. And I just checked, Tokyo show 15C on that website, while high resolution current weather information from Japan Metrological Agency sh…
I'll admit I'm just speculating because I don't know much about weather and weather data collection, but is it not possible there's a 3 degree difference between 2 different places of measurement in Tokyo (i.e. both are correct to some degree?)
I don't know about Tokyo in particular, but generally speaking, for a large coastal city that wouldn't surprise me at all.
Re: `curl wttr.in`: Weather in your terminal
#15Personally I think it's a cute thing and have implemented some similar little easter eggs to this via: curl ip.wtf/moo
[1]: https://blog.mozilla.org/security/2019/10/09/iterm2-critical... [2]: https://packetstormsecurity.com/files/162621/rxvt-2.7.0-rxvt...
Re: `curl wttr.in`: Weather in your terminal
#16I have to scroll all they way down to the buttom to find the information source -- WorldWeatherOnline. Does people not care about where their whether data is sourced from? Living in Japan, I have always been wary of these type of service, since I find a lot of them really inaccurate. And I just checked, Tokyo show 15C on that website, while high resolution current weather information from Japan Metrological Agency sh…
Re: `curl wttr.in`: Weather in your terminal
#17Earlier quoted context omitted.
That would be cool, but how would you condense the information enough that it's both useful and doesn't take up 2/3 of a line?
I might be a heathen, but my PS1 is as long as it wants to be, and ends with \n$
But I don't. I may steal this idea later, than there would be a whole 2 of us!
Re: `curl wttr.in`: Weather in your terminal
#18This is really neat... vim ~/.bashrc ``` alias weather='/usr/bin/curl wttr.in' ``` :wq and now: weather
alias weather="curl wttr.in && curl v2.wttr.in && curl v3.wttr.in"
so that it shows me the temperature chart and map as well. Well, v3's map isn't working so I commented that out for now but they say it should work in the future.Re: `curl wttr.in`: Weather in your terminal
#19There's also `curl v2.wttr.in`, but imho I like the original better.
alias weather="curl wttr.in && curl v2.wttr.in && curl v3.wttr.in"