

device = Device.first
if device.present?
	begin_day = Time.new(2015, 1, 1, 23, 50, 0)
	366.times do |i|
		a = (-10..10).to_a.sample
		a = 0 if a < 0
		if a == 0
			b = 0
		else
			b = rand(0..4)
		end
		c = 24 - a

	end
end

User.create(email: 'whyruby@gmail.com', username: 'demo1', password: '11111111', is_enabled: true)
User.create(email: 'admin@admin.com', username: 'admin', password: 'admin888', is_enabled: true)