Ruby bundler
Bundler is for dependency management in ruby projects.
Ruby gems
A ruby gem
is a software package that contains a reusable ruby application or library.
Ruby rbenv
rbenv is for managing multiple Ruby versions and here are some of its commonly used commands summarized for quick reference.
Nodenv quick commands cheatsheet
nodenv is a great tool to manage multiple NodeJS versions and here are some of its commonly used commands summarized for quick reference.
React-csv issue in async data and rendering
In frontend development sometimes you need to export the data (usually in JSON format) as downloadable csv format, and for those working on ReactJS related web applications, there is a package named react-csv that can save you from breaking the DRY… However, you may also encounter issues when applying this package in some specific scenarios, such as the one I’m writing down soon which involves in data being loaded asyncronously but needed for initial UI rendering.
Python topics of interest
List of python topics of interest.
Install docker on ubuntu
Command list to install docker ce on ubuntu (17.10).
MySQL delete table rows and reset index
How to delete all rows of a table and also reset the index.
Insert images into excel with POI
How to insert images when outputting excel using POI packages in Java.
Java group list objects by attribute
How to group a list of objects by one of the object’s attribute, which is similar to SQL group by statement and having the same results.