Skip to content

Instantly share code, notes, and snippets.

View ackkerman's full-sized avatar
🏠
Working from home

Ackerman ackkerman

🏠
Working from home
View GitHub Profile
javascript:(function() {
let url = window.location.href;
let match = url.match(/arxiv\.org\/abs\/(\d+\.\d+)/);
if (match && match[1]) {
let paperId = match[1];
let ar5ivUrl = `https://ar5iv.labs.arxiv.org/html/${paperId}`;
window.location.href = ar5ivUrl;
} else {
alert("This doesn't appear to be an arXiv paper page. Please use this bookmarklet on an arXiv paper page (e.g., https://arxiv.org/abs/2402.09171)");
}
@laiso
laiso / Dockerfile
Created April 11, 2025 11:17
SETUP: docker build -t mcp-server-fetch:latest .
FROM denoland/deno:latest
# Create the application directory
WORKDIR /app
# Copy dependency files first for caching
COPY deno.json deno.lock* ./
# Copy the rest of the application code
COPY . .