Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A class to handle dateless time values.
There are a number of use cases where we need a simple and dumb time value. Think about the opening times of a theater or the daily airing time of a TV show.
In these situations the time doesn't need to be bound to a date.
It doesn't need to be adjusted to the user's timezone either, and it surely doesn't need to be pushed forward or backwards because of the dailight saving time.
Things become even messier when working with a framework (Rails) that handles these adjustments automatically.
This gem aims to fix this.
Drawing inspirations from the Unix time format, it stores static time values as the number of seconds since midnight.
It generates static and date-independent time values, that don't care about timezones or DST.
As easy as pie.
No external gems.
date
from the stdlib.
Tested with:
>= 1.9.3
>= 2.2
>= 1.7
Creation:
require 'dateless_time'
# you can create a DatelessTime object with a shortcut
time = DatelessTime.now
# or a Time object
time = DatelessTime.new Time.now
# or a DateTime object
time = DatelessTime.new DateTime.now
# or a String (minutes and seconds are optional)
time = DatelessTime.new "13:37:00"
# or the number of seconds since midnight
time = DatelessTime.new 49020
# or a Hash (minutes and seconds are optional)
time = DatelessTime.new hours: 13, minutes: 37, seconds: 0
# or an Array (minutes and seconds are optional)
time = DatelessTime.new [13, 37, 0]
# or another DatelessTime object
time = DatelessTime.new DatelessTime.new('00:42')
Interface:
require 'dateless_time'
time = DatelessTime.new "13:37:42"
time.hours
time.hour
#=> 13
time.minutes
time.min
#=> 37
time.seconds
time.sec
#=> 42
time.seconds_since_midnight
time.to_i
# => 49062
# this uses Time.now to fill the date-related bits
time.to_time
# => 2014-04-01 13:37:42 +0100
# but you can supply a base Time object instead
time.to_time(Time.new(1985, 10, 25, 0, 0, 0, "-08:00"))
# => 1985-10-25 13:37:42 -0800
# or a base Date or DateTime
time.to_time(Date.new(1985, 10, 25))
# => 1985-10-25 13:37:42 +0100
time.to_time.class
# => Time
# this uses DateTime.now to fill the date-related bits
time.to_datetime
# => #<DateTime: 2015-11-11T13:37:42+00:00 ((2457338j,49062s,0n),+0s,2299161j)>
# but here, too, you can supply a base object instead (Date, Time or DateTime)
time.to_datetime(Date.new(1985, 10, 25))
# => #<DateTime: 1985-10-25T13:37:42+00:00 ((2446364j,49062s,0n),+0s,2299161j)>
time.strftime("%-l:%M %P")
# => "1:37 pm"
time.to_s
# => "13:37:42"
time.to_h
# => {:hours=>13, :minutes=>37, :seconds=>42}
time.to_a
# => [13, 37, 42]
Comparisons:
@time_1 = DatelessTime.new "11:22"
@time_2 = DatelessTime.new "11:30"
# all the usual suspects
@time_1 < @time_2
# => true
@time_1 == @time_2
# => false
@time_2.between? @time_1, DatelessTime.new("20:30")
# => true
array = (1..5).map { DatelessTime.new(rand(DatelessTime::SECONDS_IN_24_HOURS)) }
array.map(&:to_s)
# => ["06:51:58", "04:50:32", "14:36:53", "21:36:38", "10:17:12"]
array.sort.map(&:to_s)
# => ["04:50:32", "06:51:58", "10:17:12", "14:36:53", "21:36:38"]
# etc...
Add this line to your application's Gemfile:
gem 'dateless_time'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dateless_time
The main goal is to keep this gem as small and lightweight as possible, thus I'm not planning to add any specific support for rails.
This doesn't mean that it can't be used with Rais, though!
Just choose how to store time values in you DB (time-only SQL values or seconds since midnight, for example), and use them to instantiate DatelessTime
objects rather than Ruby's default Time
.
For example:
# opening_time_seconds is an INT value from the DB
def opening_time
@opening_time ||= DatelessTime.new opening_time_seconds
end
+
and -
artimetic operators, in a way consistent with Ruby's Time
Time
's public interfaceDateTime
objects as base for #to_time
and #to_datetime
does not support fractional utc offsets (e.g. Australia)git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that dateless_time 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.