Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
Important: You will need about 30GB of free disk space.
Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
Important: You will need about 30GB of free disk space.
--- | |
/** | |
* @param moduleId Path to component | |
*/ | |
function function2AstroComponent<Args extends any>( | |
callback: (...arg: Args[]) => any | |
): (...arg: Args[]) => any & { | |
isAstroComponentFactory: true; | |
propagation: "none"; | |
name: string; |
console.log(5) // prints: 5 | |
Number.prototype._ = function() { | |
alert("Boo!"); | |
return this; | |
} | |
Number.prototype.__ = function() { | |
alert("Boo!"); | |
return this * 2; |
import htm from "https://esm.sh/htm"; | |
import vhtml from "https://esm.sh/vhtml"; | |
const html = htm.bind(vhtml); | |
function string2Nodes(string) { | |
const container = document.createElement("div"); | |
container.innerHTML = string; | |
return container.childNodes; |
// Coordinates to check system against | |
const coordinates = [ | |
[-3, 0], | |
[5, 1], | |
[-4, 3], | |
[2, -6], | |
]; | |
// System without solving for Y | |
function system1(x, y) { |
const USERS_SHEET_NAME = "users", | |
TASKS_SHEET_NAME = "tasks", | |
SPREADSHEET_URL = "https://docs.google.com/spreadsheets/d/abc123456/edit", /* TODO(Developer): Replace the spreadsheet ID */ | |
/* Use `SpreadsheetApp.getActiveSpreadsheet()` if the Apps Script was created from a Google Sheet. */ | |
spreadsheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL); | |
const getEmailByNickname = (() => { | |
const usersSheet = spreadsheet.getSheetByName(USERS_SHEET_NAME); | |
let userEmailTable = {}; |