What I can do ?

Hello; good day guys. I am interested in starting to mine ETH, XRP, Monero—whatever my machine can handle in order to generate wealth and save it in Bitcoin. I used NiceHash, but it was in vain due...
0 Read More

Navigating PostgreSQL - Views

Navigating PostgreSQL - Views
Views are virtual tables based on the result set of a SQL statement. Think of them as stored queries that can be treated as if they were tables. When you access a view, PostgreSQL runs the underlying ...
0 Read More

Leetcode - 48. Rotate Image

⛶/** * @param {number[][]} matrix * @return {void} Do not return anything, modify matrix in-place instead. */ var rotate = function (matrix) { let l = 0, r = matrix.length-1; while (l &...
0 Read More

Cropping image on canvas

Cropping image on canvas
Cropping an image nowadays is a widespread requirement for the website. Many libraries in Javascript will help us to do this with many options like Jcrop and cropper are a few renowned libraries. Howe...
0 Read More