This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>ES modules in the browser - almost - now | Basics: script type module</title> | |
</head> | |
<body> | |
<!-- Use a type set to "module" with a fallback --> | |
<script type="module" src="app.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>ES modules in the browser - almost - now | unpkg getLibs</title> | |
<!-- Include the getlibs endpoint --> | |
<script src="https://unpkg.com/getlibs"></script> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>ES modules in the browser - almost - now | Service worker</title> | |
</head> | |
<body> | |
<script> | |
// Register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>ES modules in the browser - almost - now | Package name maps</title> | |
</head> | |
<body> | |
<!-- Declare the package map --> | |
<script type="packagemap"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import clamp from "lodash/clamp"; | |
const num = Infinity; | |
const answer = clamp(num, 0, 42); | |
console.log(answer); | |
export default answer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Disclaimer: this is not stable nor properly tested | |
// Not sure about the security implications of hijacking the fetch request either | |
// https://gist.github.com/pilwon/ff55634a29bb4456e0dd | |
const ES_MODULE_IMPORT_REGEX = /\bimport\s+(?:.+\s+from\s+)?[\'"]([^"\']+)["\']/g; | |
const packages = new Map().set( | |
"lodash/clamp", | |
"https://cdn.jsdelivr.net/npm/[email protected]/clamp.js" | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Author: Abhishek Dutta, 12 June 2020 | |
// License: CC0 (https://creativecommons.org/choose/zero/) | |
export default function uuid() { | |
var temp_url = URL.createObjectURL(new Blob()); | |
var uuid = temp_url.toString(); | |
URL.revokeObjectURL(temp_url); | |
return uuid.substr(uuid.lastIndexOf('/') + 1); // remove prefix (e.g. blob:null/, blob:www.test.com/, ...) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Google Chrome" | |
set bounds of front window to {0, 0, 1440, 900} | |
end tell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { remote } = require("electron"); | |
remote.getCurrentWindow().setBounds({ | |
x: 0, | |
y: 0, | |
width: 1920, | |
height: 1080, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle dmnsgn is linked to the Tezos account tz2AmQarWLeMoQVt2h9a4QYywTUtg8bH5t5B for tzprofiles | |
sig:spsig1enZE4k2VP8aj8J6kJLQLLXrRVUXmT8R2CTDdKqYqKUdNH4rNxu1DwTcpdvdToMEnYnr5PgZuVohjZFnJiCCcLDz9Jkqnz |