-
Critical: when running any command, always wrap it with
~/dev/commands/command.shin the following format:/bin/bash ~/dev/commands/command.sh --timeout 30 <command>
Examples:
/bin/bash ~/dev/commands/command.sh --timeout 30 wrangler dev
-
/bin/bash ~/dev/commands/command.sh --timeout 30 bun dev
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 * as React from 'react' | |
| import { Porto, Mode } from 'porto' | |
| import { WebView } from 'react-native-webview' | |
| const porto = Porto.create({ | |
| mode: Mode.reactNative(), | |
| }) | |
| const injected = /* javascript */ ` | |
| (function () { |
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
| |
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
| type Node<K, V> = { | |
| key: K | |
| value: V | |
| previous: Node<K, V> | null | |
| next: Node<K, V> | null | |
| } | |
| export class InMemoryLru<Key, Value = unknown> { | |
| private readonly capacity: number | |
| private readonly map = new Map<Key, Node<Key, Value>>() |
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
| // ==UserScript== | |
| // @name GitHub Auto-Expand Diffs | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Automatically expands all collapsed code sections in GitHub diffs | |
| // @author You | |
| // @match https://github.com/* | |
| // @grant none | |
| // @run-at document-idle | |
| // ==/UserScript== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- To the right of the address bar, click the Chrome menu icon (⋮) and then select More Tools > Developer Tools. The Chrome Developer Tools window will open.
- Click the Network tab.
- Select the Preserve log checkbox.
- Click the Clear icon (a circle with a line through it) to clear the network log.
- While the Developer Tools window remains open, reproduce the issue you are experiencing.
- After you have reproduced the issue, you can export the log as a HAR file. To do this, right-click anywhere in the list of network requests and select Save all as HAR with content.
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
| FROM node:lts-bookworm-slim AS builder | |
| RUN apt-get --yes update && apt-get --yes install \ | |
| curl \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| RUN git clone https://github.com/ithacaxyz/porto.git . |
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
| // Pure C REST API Server - no external dependencies | |
| // Compile with: gcc -o server server.c | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <unistd.h> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <meta name="color-scheme" content="light dark" /> | |
| <title>FF Android Synced Passkeys</title> | |
| <style> |
NewerOlder