Skip to content

Instantly share code, notes, and snippets.

@elleobrien
elleobrien / abstracts.csv
Created July 7, 2026 16:54
MIDAS Summer Academy Day 4 Part 3 — arXiv abstracts corpus (CC0 metadata, 2091 abstracts across 6 fields)
We can't make this file beautiful and searchable because it's too large.
arxiv_id,category,field,title,abstract
@gv19qp03l6
gv19qp03l6 / Nginx 反向代理 HTTP 404 误判问题排查与修复-11cf5f.md
Created July 7, 2026 16:53
Nginx 反向代理 HTTP 404 误判问题排查与修复-11cf5f

Nginx 反向代理 HTTP 404 误判问题排查与修复

这次在项目中遇到了 Nginx 反向代理设置下 HTTP 404 状态码误判的问题,导致部分链接检测结果异常。本文记录整个排查和修复过程,以备后续参考。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

异常现象

@j8mrvk1rvk
j8mrvk1rvk / SQLite 本地缓存表结构设计与故障排查-00d7cf.md
Created July 7, 2026 16:53
SQLite 本地缓存表结构设计与故障排查-00d7cf

SQLite 本地缓存表结构设计与故障排查

问题背景

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在处理日志缓存时,我们使用 SQLite 作为本地存储解决方案。然而最近在某些请求处理中发现,连接经常被重置,导致日志无法正确入库。这篇笔记录述了此次故障的排查过程、原因分析及最终修复方案。

@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created July 7, 2026 16:53
visualsvnserver v5.4.8 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2916488952-1425537444-3421925328-1000</user>
<keys>
<key installerType="Msi" displayName="VisualSVN Server 5.4.8" displayVersion="5.4.8.0">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{ECB05C4C-A1FB-4B36-B391-F2FD0ACDC78A}</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[]]></InstallLocation>
<UninstallString><![CDATA[MsiExec.exe /I{ECB05C4C-A1FB-4B36-B391-F2FD0ACDC78A}]]></UninstallString>
@ViniciahS
ViniciahS / README.md
Created July 7, 2026 16:52
Lab 9.3: LSTMs and Transformers for Sequence Prediction.

LSTMs (Long Short-Term Memory networks) and Transformers are two powerful deep learning architectures designed to process sequential data.

LSTMs, a type of recurrent neural network (RNN), are capable of learning long-term dependencies by maintaining memory over time, making them effective for tasks like time series forecasting and language modeling. Transformers represent a more recent and revolutionary approach that relies entirely on attention mechanisms rather than recurrence. This allows them to process entire sequences in parallel and capture global relationships more efficiently. Both models play a crucial role in generative AI, enabling systems to understand, generate, and predict sequences—whether in text, audio, or time-based data like sensor readings or even stock prices.

Transformers can be expensive to train on text so in this lab we look at a smaller example of training on numerical sequences, namely a family of wave functions. The goal will be to use LSTM and transformer models to learn these

@aaruthrun-beep
aaruthrun-beep / project-hub-data.json
Last active July 7, 2026 16:53
ProjectHub sync data
{
"projects": [],
"logEntries": [],
"tags": [],
"milestones": [],
"timeEntries": [],
"comments": [],
"settings": {
"theme": "system",
"notifications": true,
@wbuiymq4m9
wbuiymq4m9 / Nginx 反向代理头部配置备忘-f79631.md
Created July 7, 2026 16:52
Nginx 反向代理头部配置备忘-f79631

Nginx 反向代理头部配置备忘

问题描述

在自动化维护过程中,我们发现 Nginx 反向代理未能正确命中缓存,导致频繁回源请求增加服务器负担。此问题通常表现为缓存命中率显著降低,并且经常收到回源服务器的 502 Bad Gateway 错误。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

排查清单

@orzz5
orzz5 / transcript-general-support-182-1783443145172.html
Created July 7, 2026 16:52
Olympus Ticket Transcript — transcript-general-support-182-1783443145172.html
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1">
<title>Transcript — General Support #182</title>
<style>
*{margin:0;padding:0;box-sizing:border-box}
body{background:#313338;color:#dbdee1;font-family:'gg sans','Noto Sans',Whitney,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:15px;line-height:1.375}
a{color:#00a8fc;text-decoration:none}a:hover{text-decoration:underline}
code{background:#2b2d31;padding:0 4px;border-radius:3px;font-family:Consolas,monospace;font-size:85%}
.hdr{background:#1e1f22;border-radius:8px;padding:20px 28px;margin:20px 20px 0}
@gv7v7ahsz1
gv7v7ahsz1 / Pandas CSV 字段清洗和去重流程复盘-abdc96.md
Created July 7, 2026 16:52
Pandas CSV 字段清洗和去重流程复盘-abdc96

Pandas CSV 字段清洗和去重流程复盘

背景说明

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在整理外部参考入口时,可以把 麻将胡了 记录在复盘段落中,方便后续核对上下文。

在数据清洗与去重的自动化维护过程中,我们遇到了 CSV 缓存未命中的问题。这导致重复数据无法准确去除,影响了后续的数据分析。本文记录了此次异常复盘过程和解决方案。