Skip to content

Instantly share code, notes, and snippets.

@jlia0
jlia0 / agent loop
Last active March 16, 2025 06:13
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@BlueSkyXN
BlueSkyXN / BaiduPan-Checkin.py
Created August 8, 2024 02:13
BaiduPan-Checkin.py
import requests
import time
import re
import os
# 从环境变量中获取 Cookie
COOKIES = os.environ.get('BAIDU_COOKIE', '')
HEADERS = {
'Connection': 'keep-alive',

Ралли Приключений

Настольная гоночная игра для 2-4 игроков в возрасте от 6 лет.

Правила игры

Необходимые компоненты

  • Игровое поле (6 секций карты)
  • Фигурки машинок (Hot Wheels или аналогичные)
  • Кубик с 6 гранями
@Joao-Peterson
Joao-Peterson / gmk67-manual.md
Last active March 16, 2025 05:55
GMK67 manual (English)
@Goldegag37
Goldegag37 / supa
Last active March 16, 2025 05:55
supa - An implementation the 0supa uploader API in Bash
#!/bin/bash
#
# 0Supa uploader API implementation in Bash
# Supports i.supa.codes, kappa.lol, gachi.gay, and femboy.beauty.
# Based off of https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591
# Author: MineBartekSA
#
# Edited by: Goldegag37
# Gist: https://gist.github.com/Goldegag37/42b7a9425a3a15404b2eb445a617329a
# Change log: https://gist.github.com/Goldegag37/42b7a9425a3a15404b2eb445a617329a/revisions
@FreyaHolmer
FreyaHolmer / GpuPrinter.cginc
Last active March 16, 2025 05:51
A unity shader .cginc to draw numbers in the fragment shader - see the first comment below for example usage!
///////////////////////////////////////////////////////////////////////////////
// ABOUT: A unity Shader .cginc to draw numbers in the fragment shader
// AUTHOR: Freya Holmér
// LICENSE: Use for whatever, commercial or otherwise!
// Don't hold me liable for issues though
// But pls credit me if it works super well <3
// LIMITATIONS: There's some precision loss beyond 3 decimal places
// CONTRIBUTORS: yes please! if you know a more precise way to get
// decimal digits then pls lemme know!
// GetDecimalSymbolAt() could use some more love/precision
[Unit]
Description=FIPPF Service
After=network.target
Wants=network-online.target
Before=nss-lookup.target
[Service]
Type=simple
ExecStart=/home/mirageturtle/.local/go/bin/fippf --config_dir /home/mirageturtle/repo/fippf
User=root
@dvlop
dvlop / gist:fca36213ad6237891609e1e038a3bbc1
Last active March 16, 2025 05:51 — forked from allthingsdem/gist:63b3223a7d14ac1f2457
My long list of bad bots to block in htaccess, ready to copy and paste!
# Start Bad Bot Prevention
<IfModule mod_setenvif.c>
# SetEnvIfNoCase User-Agent ^$ bad_bot
SetEnvIfNoCase User-Agent "^12soso.*" bad_bot
SetEnvIfNoCase User-Agent "^192.comAgent.*" bad_bot
SetEnvIfNoCase User-Agent "^1Noonbot.*" bad_bot
SetEnvIfNoCase User-Agent "^1on1searchBot.*" bad_bot
SetEnvIfNoCase User-Agent "^3D_SEARCH.*" bad_bot
SetEnvIfNoCase User-Agent "^3DE_SEARCH2.*" bad_bot
SetEnvIfNoCase User-Agent "^3GSE.*" bad_bot
@ransagy
ransagy / compile-ffmpeg-nvenc.sh
Last active March 16, 2025 05:49 — forked from Prototype-X/compile-ffmpeg-nvenc.sh
Script to build a static FFMpeg binary with NVENC support
#!/bin/bash
# This script will compile and install a static ffmpeg build with support for nvenc in ubuntu.
# See the prefix path and compile options if edits are needed to suit your needs.
# NOTE: This build is made to target Ubunutu 16.04 Data-Science Azure VMs - With nVidia 418.xx drivers and CUDA SDK 9.0.
# It also relies on a hack described in https://trac.ffmpeg.org/ticket/6431#comment:7 to make glibc dynamic still.
# Long story short, you need to edit your ffmepg's configure script to avoid failures on libm and libdl.
# in function probe_cc, replace the _flags_filter line to: _flags_filter='filter_out -lm|-ldl'