Description of OBIS code for IEC 62056 standard protocol and the corresponding device value. These codes are useful to know how to read…
Tag: en
Extensive list of horror movies on topics of interest and categories. Enjoy! Series Wrong Turn https://www.imdb.com/title/tt0295700/ Series Vacancy https://www.imdb.com/title/tt0452702/ Series Hostel…
I declare myself a big “amateur” of good and very good movies, but above all I consider myself (along with Mihaela)…
Years: 1944-2000 – Captain America 1944 – Action, Adventure, Sci-Fi – Spider-Man 1967-1970 – Animation, Adventure, Family – The Low Price…
The correspondence between these functions and zlib_decode is as follows: gzcompress ~ zlib_encode($str, ZLIB_ENCODING_DEFLATE) gzencode ~ zlib_encode($str, ZLIB_ENCODING_GZIP) gzdeflate ~ zlib_encode($str,…
How to compress and decompress text an encode/decode using base64 functions: 1. Compress and Encode to Base64 function Compress2Base64($str, $gztype=’deflate’) {…
The solution is relatively simple, all you have to do is know the ID of the selection element! 1. If you want…
1st. solution var svg = document.getElementById(“svg1″); var box = svg.getAttribute(‘viewBox’); box.split(/\s+|,/); Result: (4) [“0”, “0”, “900”, “50”] 0: “0” 1: “0”…
A useful javascript function for rounding numbers to a certain precision: function f_Round(x, n=0) { let tempx = x*10; tempx =…