-
Navigate to chrome://net-internals/#hsts
-
Go to
Query HSTS/PKP domainand ensure that the domain exists (exgithub.comorgoogle.com). -
Scroll down to
Delete domain security policiesand enter that domain
Finished!
| interface Array<T> { | |
| map<U>( | |
| callbackfn: (value: T, index: number, array: T[]) => U, | |
| thisArg?: unknown | |
| ): { [K in keyof this]: U }; | |
| filter<S extends T>( | |
| callbackfn: (value: T, index: number, array: T[]) => value is S, | |
| thisArg?: unknown | |
| ): { [K in keyof this]-?: this[K] extends S ? S : never } | |
| } |
| format = """ | |
| [┌](bold green)$status$cmd_duration$fill | |
| [│ ](bold green)$hostname$localip$time$nix_shell | |
| [│ ](bold green)$java$kotlin$rust$golang$python | |
| [│ ](bold green)$sudo$username$directory$package$git_branch$git_commit$git_state | |
| [└─>](bold green) """ | |
| [fill] | |
| symbol = "─" |
| JSON=$(cat <<EOF | |
| { | |
| "private": true, | |
| "scripts": { | |
| "start": "parcel index.html", | |
| "build": "parcel build index.html --public-url ./", | |
| "format": "prettier --write ." | |
| }, | |
| "dependencies": { | |
Navigate to chrome://net-internals/#hsts
Go to Query HSTS/PKP domain and ensure that the domain exists (ex github.com or google.com).
Scroll down to Delete domain security policies and enter that domain
Finished!
| import { join } from "https://deno.land/std/path/mod.ts"; | |
| export async function* recursiveReaddir( | |
| path: string | |
| ): AsyncGenerator<string, void> { | |
| for await (const dirEntry of Deno.readDir(path)) { | |
| if (dirEntry.isDirectory) { | |
| yield* recursiveReaddir(join(path, dirEntry.name)); | |
| } else if (dirEntry.isFile) { | |
| yield join(path, dirEntry.name); |
| extends Camera | |
| export var target: Transform | |
| # If the transition is active | |
| export var active := true | |
| # Strength of the transition | |
| export var strength: float = 1 | |
| # The "from" transition to transition from | |
| onready var starting_transform := self.transform | |
| var time: float = 0.0 | |
| func _physics_process(delta: float) -> void: |
| [package] | |
| name = "rs-example" | |
| version = "0.1.0" | |
| edition = "2021" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| webrtc = "0.4.0" | |
| tokio = { version = "1.15.0", features = ["full"] } |
Simply do npm i -g request node-pre-gyp and it'l be fixed!
Find a SATA Operations option in your BIOS, and change it from RAID to SATA (NOT None).
| type DisplayType = "fullscreen" | "standalone" | "minimal-ui" | "browser" | |
| interface WebManifest { | |
| background_color?: string; | |
| categories?: string[]; | |
| description?: string; | |
| dir?: "ltr" | "rtl" | "auto" | |
| display?: DisplayType; | |
| display_override?: [DisplayType]; | |
| iarc_rating_id?: string; |