manu
Mon Jan 29 2018
Postgres VACUUM [https://www.postgresql.org/docs/9.1/static/sql-vacuum.html] - It reclaims storage occupied by dead tuples.
manu
Thu Jan 25 2018
Rspec's
subject
is a special variable that refers to the object being tested. It's instantiated implicitly but can also be done explicitly. Handy to be used with shoulda matchers. emil
Wed Jan 24 2018
In Tmux, prefix+t shows the current time in big font size
mrinmoy
Wed Jan 24 2018
about StringIO http://ruby-doc.org/stdlib-1.9.3/libdoc/stringio/rdoc/StringIO.html so useful in certain cases
manu
Tue Jan 23 2018
looping through a collection of records in database using methods like
all
is very inefficient (it tries to instantiate all objects at once) and should resort to batch processing methods eg: find_each
. ganesh
Mon Jan 22 2018
ansible lets u use ansible_distribution ( values : Ubuntu, CentOS etc), ansible_distribution_release (values : xenial, precise etc) to write dist specific commands
manu
Tue Jan 16 2018
There is a global location for git ignore *nix -
~/.config/git/ignore
harshwardhan
Sun Jan 14 2018
open chrome devtools, press cmd(ctrl) + shift + p and type show coverage and press enter, once you reload the page you can see the amount of JS fetched and how much is actually getting used on that page
manu
Wed Jan 10 2018
ruby has a permutation method for Array. https://apidock.com/ruby/Array/permutation
harshwardhan
Wed Jan 10 2018
Array.from()
takes a second argument which is a map
. Example: Array.from(Array(10), (element, index) => //some logic to fill the array)
Showing 63 to 65 of 73 results