Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A Ruby wrapper for the Yahoo! Weather XML RSS feed.
[sudo] gem install weather-api
Weather-API provides an object-oriented interface to the Yahoo! Weather XML RSS feed service.
Details on the service can be found here.
A simple example:
require 'rubygems'
require 'weather-api'
# look up WOEID via http://weather.yahoo.com; enter location by city
# name or zip and WOEID is at end of resulting page url.
response = Weather.lookup(9830, Weather::Units::CELSIUS)
print <<EOT
#{response.title}
#{response.condition.temp} degrees
#{response.condition.text}
EOT
This produces:
Conditions for Ladysmith, CA at 5:00 pm PDT
13 degrees
Cloudy
Lookup via location name
response = Weather.lookup_by_location('San Francisco, CA', Weather::Units::FAHRENHEIT)
Copyright (c) 2012 Andrew Stewart. See LICENSE
file for more details.
FAQs
Unknown package
We found that weather-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.