make -j 9 IGNORE_ERRORS=m
Use Self Sign certificiate
Remove domain security policy: Steps for Chrome -
Go to : chrome://net-internals/#hsts Query HSTS/PKP domain for localhost Use Delete domain security policies option to delete configuration for localhost
The solution presented here by @Coder-M worked for me. It is for people that installed Google Drive.
In sum, go to HKEY_USERS[Your-User-ID]\Software\Classes.png\shellex and delete E357FCCD-A995-4576-B01F-234630154E96.
To find Your-User-ID you can go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\hivelist and look for the entry with a value like \Device\HarddiskVolume2\Users[Your-User-Name]\NTUSER.DAT. It is usually the one ending with 0001.
This file contains hidden or 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 { NextApiRequest, NextApiResponse } from 'next' | |
| import { Readable } from 'node:stream' | |
| export default async function handler(req: NextApiRequest, res: NextApiResponse) { | |
| const { authorization } = req.headers | |
| if (!authorization || authorization !== process.env.AUTHORIZATION_HEADER) { | |
| return res.status(401).json({ error: 'Unauthorized' }) | |
| } | |
| const openAIUrl = process.env.OPENAI_URL as string |
This file contains hidden or 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
| "use strict"; | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.activate = void 0; | |
| const vscode = require("vscode"); | |
| const os = require("os"); | |
| const path = require("path"); | |
| const fs = require("fs"); | |
| const sshConfig = require("ssh-config"); | |
| function findSSHConfigPaths() { | |
| const homeDir = os.homedir(); |
This file contains hidden or 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
| https://uselessfacts.jsph.pl/api/v2/facts/random |
This file contains hidden or 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
| https://raw.githubusercontent.com/bayard/shadowrocket-rules/main/sw-rules-cf-mask.conf |
This file contains hidden or 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
| # UPDATED 17 February 2019 | |
| # Redirect all HTTP traffic to HTTPS | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name www.domain.com domain.com; | |
| return 301 https://$host$request_uri; | |
| } | |
| # SSL configuration |
This file contains hidden or 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
| # Change to name of TARGET-VM. | |
| $vm='CHANGE_ME' | |
| # Change to PCI device location (💡 Location). | |
| $Location = 'CHANGE_ME' | |
| # Enable CPU features. | |
| Set-VM -GuestControlledCacheTypes $true -VMName $vm | |
| # Host-Shutdown rule must be changed for the VM. | |
| Set-VM -Name $vm -AutomaticStopAction TurnOff |
This file contains hidden or 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>simple calculator</title> | |
| <meta charset="UTF-8"> | |
| <style> | |
| /*设置table样式*/ | |
| /*Set the style of the table*/ | |
| table { | |
| border: 2px solid; |
NewerOlder