When you get this error message:
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
import * as fs from 'fs'; | |
import * as path from 'path'; | |
// https://gist.github.com/lovasoa/8691344 | |
async function* walk(dir) { | |
for await (const d of await fs.promises.opendir(dir)) { | |
const entry = path.join(dir, d.name); | |
if (d.isDirectory()) { | |
yield* walk(entry); | |
} else if (d.isFile()) { |
function onEdit (evt) { | |
// permet de récuperer la valeur d'une cellule | |
var range = evt.range; | |
validateRow(range.getRow(), true); | |
} | |
function translationAutoFill(csv, tab_sep="\t", line_sep="\n"){ | |
var lines = csv.split(line_sep); | |
var themes_inputs = document.querySelectorAll(".input-theme-text textarea"); |
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Learnybox API", | |
"version": "2.0" | |
}, | |
"servers": [ | |
{ | |
"url": "/", | |
"description": "" |
<?php | |
/** | |
* Usage: | |
* | |
* <?php | |
* include 'OPathResolver.php'; | |
* | |
* $root = '/var/www/html/'; | |
* $path = '../../log/'; | |
* $abs_path = OPathResolver::resolve($root, $path); |