Update code to 1.x.x
- Switch to VS Code Insiders in settings.
- Start a workspace.
- Test following:
- terminals are preserved and resized properly between window reloads
- WebViews are working
| import fs from "fs"; | |
| // for every file in the directory, make a folder with the same name and move the file into it, renaming it to index.md | |
| const dir = "./src/lib/contents/changelog"; | |
| fs.readdirSync(dir).forEach((file) => { | |
| const fileDir = `${dir}/${file}`; | |
| const newDir = `${dir}/${file.split(".")[0]}`; | |
| fs.mkdirSync(newDir); |
| const fs = require("fs/promises"); | |
| const execSync = require("child_process").execSync; | |
| const toDownload = 100; | |
| const downloadFolder = "downloaded"; | |
| const getExtensions = async () => { | |
| const openVsxResponse = await fetch( | |
| `https://open-vsx.org/api/-/search?size=${toDownload}&sortBy=downloadCount&sortOrder=desc` | |
| ); |
| import { readFile } from "fs/promises"; | |
| import { unified } from "unified/lib/index.js"; | |
| import remarkParse from "remark-parse"; | |
| const file = await readFile("files/file.md", "utf8"); | |
| const data = unified().use(remarkParse).parse(file); | |
| const releaseNotesStart = data.children.find( |
| { | |
| "malicious": [ | |
| "ms-python.python" | |
| ], | |
| "deprecated": {}, | |
| "migrateToPreRelease": {} | |
| } |
| ns = [] | |
| def compt(n): | |
| ns.append(n) | |
| if n == 1: | |
| return | |
| if n % 2 == 0: | |
| n = n/2 | |
| else: | |
| n = (3*n)+1 | |
| compt(n) |
| <?php | |
| /** | |
| * Checks if a given `$url` is hosted on IPFS | |
| * | |
| * @param string $url | |
| * @return bool | |
| */ | |
| function checkIPFS($url) | |
| { |
| { | |
| "workbench.colorCustomizations": { | |
| "titleBar.activeBackground": "#ffffff", | |
| "debugConsole.errorForeground": "#ffffff", | |
| "titleBar.activeForeground": "#ffffff", | |
| "sideBar.background": "#ffffff", | |
| "editor.background": "#ffffff", | |
| "window.zoomLevel": 20, | |
| "editor.foreground": "#ffffff", | |
| "sideBar.foreground": "#ffffff", |
| import requests | |
| import re | |
| import json | |
| import os | |
| req = requests.get("https://papermc.io/api/v2/projects/paper/version_group/1.16/builds").text | |
| releases = json.loads(req) | |
| download = 'https://papermc.io/api/v2/projects/paper/versions/'+releases['builds'][-1]['version'] + '/builds/' + str(releases['builds'][-1]['build']) + '/downloads/'+releases['builds'][-1]['downloads']['application']['name'] |
| const nodes = document.querySelectorAll("html body div#belowtopnav.w3-main.w3-light-grey div.w3-row.w3-white div#main.w3-col.l10.m12 div.w3-responsive table.w3-table-all.charset-tryit tbody tr td:first-child") | |
| const emojis = []; | |
| for (const node of nodes) { | |
| emojis.push(node.innerText) | |
| } | |
| console.log(JSON.stringify(emojis)) |