Download CMake from: https://cmake.org/download/
wget https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz
tar zxvf cmake-3.*
| Doxbee sequential | |
| benchmarking ./doxbee-sequential/async-bluebird.js | |
| {"time":428,"mem":60.38671875,"errors":0,"lastErr":null} | |
| benchmarking ./doxbee-sequential/async-es2017-native.js | |
| {"time":591,"mem":98.82421875,"errors":0,"lastErr":null} | |
| benchmarking ./doxbee-sequential/async-es2017-util.promisify.js | |
| {"time":479,"mem":69.7734375,"errors":0,"lastErr":null} | |
| benchmarking ./doxbee-sequential/callbacks-baseline.js | |
| {"time":149,"mem":29.99609375,"errors":0,"lastErr":null} |
wget https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz
tar zxvf cmake-3.*
| extern crate actix_web; | |
| use actix_web::{fs, server, App}; | |
| fn main() { | |
| server::new(|| { | |
| App::new() | |
| .handler( | |
| "/", | |
| fs::StaticFiles::new("./public") | |
| .unwrap() |
| <?php | |
| /** | |
| * PHP var_dump() without newline after => . | |
| * | |
| * NOTE: The only issue is when a string value has exactly `]=>\n\s+`, it will get converted to `] => ` | |
| * @link https://www.php.net/manual/en/function.var-dump.php | |
| */ | |
| function vardump(mixed $value, bool $print = TRUE) { | |
| ob_start('mb_output_handler'); | |
| var_dump($value); |
This is a sample script for converting a range in Google Spreadsheet as an image data using Google Apps Script. Unfortunately, there are no methods for directly converting the range in Google Spreadsheet as an image data in the built-in functions. So in this case, as a workaround, Charts Service is used.
const range = "B5:D10";
const [header, ...values] = SpreadsheetApp.getActiveSheet()
.getRange(range)