Ruby General
Parse any date time string into a date object
08/13/20 Public, Ruby General
Use Ruby's Date
#strptime method to take any date or date time object that has been created with the [#strftime](https://ruby-doc.org/stdlib-2.5.0/libdoc/date/rdoc...
1 vote - harrylevine
Benchmarking in the Rails Console
06/16/20 Public, Rails Errors, Ruby General
timing = Benchmark.measure { Post.all }
The various attributes of the object returned (Benchmark::Tms
) are provided here.
Here is a sample applicati...
1 vote - harrylevine
03/04/20 Public, Ruby General
for each in `ps -eo pid,command | grep ruby | grep -v grep | awk '{print $1}' `; do kill -9 $each;done
killall −9 ruby
pkill -9 ruby
pidof ruby | xargs kill -9
ps aux | grep sidekiq | awk '{print $2}' | xargs kill
...
1 vote - harrylevine
01/31/20 Public, Rails Errors, Ruby General
re: @redis
In general for getters and setters in our classes. Can we:
@redis
), i.e. where we are assigning things, and1 vote - harrylevine
Find and extract a recurring pattern from a string
01/09/20 Public, Ruby General
For example, let's say that you have a string containing any number of Slack user ids (i.e. <@W012A3CDE>
), and you need to extract out just the user ids.
Here is the string you are startin...
1 vote - harrylevine