Replay2024 conference held in Seattle on September 19th and 20th, 2024.
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/@remix-run/dev/compiler.js b/node_modules/@remix-run/dev/compiler.js | |
index 22c5ac0..bb8ae60 100644 | |
--- a/node_modules/@remix-run/dev/compiler.js | |
+++ b/node_modules/@remix-run/dev/compiler.js | |
@@ -352,6 +352,7 @@ async function createServerBuild(config, options) { | |
} // allow importing css files for bundling / hashing from node_modules. | |
+ if (config.transpileModules.includes(id)) return false; | |
if (id.endsWith(".css")) return false; |
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
import _ from 'lodash' | |
import crypto from 'crypto' | |
import urllib from 'url' | |
import querystring from 'querystring' | |
const SignedHeaders = 'content-type;host;x-hyper-content-sha256;x-hyper-date' | |
const HeaderContentHash = 'X-Hyper-Content-Sha256' | |
const Algorithm = 'HYPER-HMAC-SHA256' | |
const Region = 'us-west-1' | |
const Service = 'hyper' |
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
package main | |
import ( | |
"encoding/hex" | |
"log" | |
"net" | |
"time" | |
) | |
const ( |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
type Whatever struct { | |
someField int | |
} | |
func (w Whatever) MarshalJSON() ([]byte, error) { | |
return json.Marshal(struct{ | |
SomeField int `json:"some_field"` | |
}{ | |
SomeField: w.someField, | |
}) |
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
// package spooler implements a disk-persistent queue. | |
// | |
// Spooler uses MDB (LMDB) to implement a queue of byteslices. Its intended usecase | |
// is to enqueue work items received by a service before later working them off. | |
// Note that Spooler only flushes to disk up to once every 25ms. As a result, | |
// if the process or machine crashes unexpectedly, the most recent 25ms of work | |
// can be lost. This decision effectively increases throughput by 10,000%, | |
// but makes spooler unsuitable for jobs that absolutely cannot be allowed to fail | |
// under any circumstances. | |
package spooler |
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
var net = require('net') | |
var sock = net.connect(1337) | |
process.stdin.pipe(sock) | |
sock.pipe(process.stdout) | |
sock.on('connect', function () { | |
process.stdin.resume(); | |
process.stdin.setRawMode(true) |
NewerOlder