Skip to content

Instantly share code, notes, and snippets.

View gildas-lormeau's full-sized avatar
⁉️
NaN

Gildas gildas-lormeau

⁉️
NaN
View GitHub Profile
@gildas-lormeau
gildas-lormeau / README.MD
Last active September 3, 2023 12:43
CLI to transform a SingleFileZ page into a SingleFile page
@gildas-lormeau
gildas-lormeau / unzip
Created September 12, 2021 20:24
Basic unzip implementation based on zip.js and Deno
#!/bin/sh
~/.deno/bin/deno run --allow-net --allow-write --allow-read --unstable unzip.js "$@"
((zipV2) => {
window.zip = {
set useWebWorkers(value) {
zipV2.configure({ useWebWorkers: value });
},
createWriter(writer, callback, onWriterError) {
const zipWriter = new zipV2.ZipWriter(writer);
callback({
add(name, reader, onend, onerror) {
@gildas-lormeau
gildas-lormeau / userscript.js
Created November 17, 2019 00:37
Save page in reader mode with SingleFile
// ==UserScript==
// @name Save page in reader mode
// @namespace https://github.com/gildas-lormeau/SingleFile/
// @version 1.0
// @description Save page in reader mode with SingleFile
// @author Gildas Lormeau
// @match *://*/*
// @grant none
// ==/UserScript==
@gildas-lormeau
gildas-lormeau / index.js
Last active September 17, 2017 20:03
Update Facebook cache with a sitemap file
//
// Update Facebook cache with a sitemap file
// Syntax:
//
// node index <sitemap URL> [delay between facebook API calls in ms]
//
// example:
// > node index https://example.com/sitemap_index.xml
//
/*
The MIT License (MIT)
Copyright (c) 2016 Gildas Lormeau (Capsule Code)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT O