Running a Rails Consultancy- looking back at 2022
We went through many ups and downs and looking forward to a brighter year aheadOn how to better understand context and communicate questions
On how to better understand context and communicate questions. Personal musings on running a companyEmployees maketh Businesses
How Saeloun runs with the help of its Employees and tries giving backIns and Outs of Profit Sharing
We are delighted to announce our Profit Sharing process for 2022 for our Rails Consultancy. Here are some highlights from the processBack to Office- The Remote Work edition
As the pandemic enters into a stage where some companies are retracting Work from Home, lets look at some alternatives.ES 12/2021 introduces new logical assignment operators
ES 12/2021 introduces new logical assignment operators for nullish(??=), AND(&&=) and OR(||=).Running a Rails Consultancy- experiments on profit sharing
We announced our first yearly profit share this year for our Rails Consultancy. Here are some highlights from the processRunning a Rails Consultancy- a year in
Highlights from running our small Rails Consultancy for the first yearHow to start with Software Consulting or Freelancing
How to get started with Software Consulting or Software Freelancing. First steps, ongoing work and more.Ruby 2.7 adds Enumerable#filter_map
Ruby 2.7 has added Enumerable#filter_map as a shorthand for filter + map in a single callRails 6 adds Relation#reselect
Rails 6 add a reselect method to Relation. This is a short-hand for "unscope(:select).select(fields)".Rails 6 adds Array#including, Array#excluding, Enumerable#including, Enumerable#excluding
Rails 6 adds Array#including, Array#excluding, Enumerable#including, Enumerable#excludingRuby 2.7 adds Enumerable#tally
Ruby 2.7 has added Enumerable#tally. It helps to tally occurrences of elements in an Enumerable.Rails 6 adds support for timezones to Active Job
Rails 6 now supports preserving timezones to Active Job. It record what was the current timezone in effect when the job was enqueued and then restore when the job is executed in same way that the current locale is recorded and restored.Rails 6 adds negative scopes for all enum values
Rails 6 adds negative scopes for all enum valuesRuby 2.7 adds shorthand operator for Object#method
Ruby 2.7 adds experimental shorthand operator for Object#method. Allows method object access using :, example File.:basenameRails 6 adds Enumerable#index_with
Rails 6 adds Enumerable#index_with to allows creating a hash from an enumerable with the value from a passed block or a default argument.Using Rails config_for as a replacement for secrets alongside credentials
Rails secrets is deprecated in Rails 6, config_for is a replacement of using ENV specific configuration along with credentials.Rails 6 adds Relation#create_or_find_by
Rails 6 adds Relation#create_or_find_by to avoid race conditions of Relation#find_or_create_byRails 6 adds String#truncate_bytes
Rails 6 adds String#truncate_bytes to limit to N characters without breaking multibytes chars