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
diff --git a/node_modules/@netlify/plugin-nextjs/lib/helpers/edge.js b/node_modules/@netlify/plugin-nextjs/lib/helpers/edge.js | |
index b6e7a10..60705dc 100644 | |
--- a/node_modules/@netlify/plugin-nextjs/lib/helpers/edge.js | |
+++ b/node_modules/@netlify/plugin-nextjs/lib/helpers/edge.js | |
@@ -100,17 +100,6 @@ const writeEdgeFunctions = async (netlifyConfig) => { | |
}; | |
const edgeFunctionRoot = (0, path_1.resolve)('.netlify', 'edge-functions'); | |
await (0, fs_extra_1.emptyDir)(edgeFunctionRoot); | |
- if (!process.env.NEXT_DISABLE_EDGE_IMAGES) { | |
- console.log('Using Netlify Edge Functions for image format detection. Set env var "NEXT_DISABLE_EDGE_IMAGES=true" to disable.'); |
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
{ | |
"schemes": [], | |
"swagger": "2.0", | |
"info": { | |
"description": "This is the sconwar API documentation.", | |
"title": "Sconwar API", | |
"contact": {}, | |
"license": {"name":"Apache 2.0", | |
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"}, | |
"version": "1.0" |
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
#!/usr/bin/env python | |
# coding=utf-8 | |
import argparse | |
import datetime | |
import sys | |
import time | |
import threading | |
import traceback | |
import socketserver |
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
go build -buildmode=c-shared -o fail_assert.so main.go | |
Then just LD_PRELOAD the generated .so |
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
from base64 import b64decode, b64encode | |
import hashlib, argparse | |
def rc4mi(data, key): | |
S, j, out = list(range(256)), 0, [] | |
for i in range(256): | |
j = (j + ord(key[i % len(key)]) + S[i]) % 256 | |
S[i], S[j] = S[j], S[i] |
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
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |