Most weather data sources give you an array of hashes (representing hours or days) with data points like so:
[
{
temperature: 73,
windSpeed: 10,
},
{
temperature: 70,
Most weather data sources give you an array of hashes (representing hours or days) with data points like so:
[
{
temperature: 73,
windSpeed: 10,
},
{
temperature: 70,
class Game | |
attr_gtk | |
def tick | |
defaults | |
input | |
calc | |
render | |
end |
# gem install bundler | |
# ruby hello_world.rb | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'rails', '~> 5.0' | |
end |
I hereby claim:
To claim this, I am signing this object:
desc "Insert an additional, separate set of fixtures from db/seeds" | |
task :seed_fixtures => :environment do | |
require 'active_record/fixtures' | |
files = "#{Rails.root}/db/seeds/*.yml" | |
connection = ActiveRecord::Base.connection | |
fixtures = Dir[files].collect do |file| | |
extname = File.extname(file) | |
name = File.basename(file).chomp(extname) |
# gem install httparty | |
# ruby gists.rb | |
require 'httparty' | |
class Gists | |
include HTTParty | |
@username = 'x' | |
@password = 'x' |
require 'faraday' | |
require 'faraday_middleware' | |
url_project = 'https://ciblonet.basecamphq.com' | |
project_id = 3684800 | |
user_name = 'shingara' | |
password = 'xxxx' | |
class Attachment |
# concerns#current | |
module Current | |
extend ActiveSupport::Concern | |
... | |
def current_kase | |
@current_kase ||= Kase.find_by_id(params[:kase_id]) | |
end | |
# To include methods in views |
2139 ℹ INFORMATION SOURCE | |
23EB ⏫ BLACK UP-POINTING DOUBLE TRIANGLE | |
23EC ⏬ BLACK DOWN-POINTING DOUBLE TRIANGLE | |
23F0 ⏰ ALARM CLOCK | |
23F3 ⏳ HOURGLASS WITH FLOWING SAND | |
26C5 ⛅ SUN BEHIND CLOUD | |
26D4 ⛔ NO ENTRY | |
2705 ✅ WHITE HEAVY CHECK MARK | |
2753 ❓ BLACK QUESTION MARK ORNAMENT | |
2757 ❗ HEAVY EXCLAMATION MARK SYMBOL |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>title</title> | |
</head> | |
<body> | |
<p>body</p> | |
</body> | |
</html> |