Skip to content

Instantly share code, notes, and snippets.

@wtw24
wtw24 / docker_rus.md
Last active April 6, 2025 08:10
Шпаргалка с командами Docker

Шпаргалка с командами Docker

1552317264965 1552317537397 1552317711879

1552318467562 1552318531067 1552318577900 1552318614839

@rxaviers
rxaviers / gist:7360908
Last active April 6, 2025 08:06
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:

Writing a Dice Roller MCP Server in Dart

Let's write a MCP server in Dart. I'd like to make a tool that knows how to roll dice. This way, an LLM can get access to a real source of randomnes.

There's no ready-to-use Dart package, but there's a specification that details how to create such a server.

In its easiest form, the server reads JSON RPC requests from stdin and writes responses to stdout. It is allowed to use stderr for logging. All streams are UTF-8 encoded and adhere to the JSONL format, that is, each request must be a single line.

RPC

@ipenywis
ipenywis / cursor-memory-bank-rules.md
Last active April 6, 2025 07:58
Cursor Memory Bank

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD
@levlaz
levlaz / types_and_roles_demo.sql
Created March 28, 2016 19:11
Create Types and Roles If Not Exist in PostgreSQL
BEGIN;
DO $$
BEGIN
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'task_status') THEN
create type task_status AS ENUM ('todo', 'doing', 'blocked', 'done');
END IF;
END
$$;
CREATE TABLE IF NOT EXISTS
@ruvnet
ruvnet / notebook.ipynb
Last active April 6, 2025 07:56
Embedding MindStudio AI Applications with UUID (Auto login)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fjpalacios
fjpalacios / arch-i3gaps-install.md
Last active April 6, 2025 07:55
Arch + i3-gaps Install Guide

Arch + i3-gaps Install Guide

First set up your keyboard layout. For example, in Spanish:

   # loadkeys es

For a list of all acceptable keymaps:

   # localectl list-keymaps
@y0ngb1n
y0ngb1n / maven-mirrors.md
Last active April 6, 2025 07:55
使用公共仓库加速 Maven 构建,提升效率!

国内可用的 Maven 的仓库镜像地址

镜像源 Maven 镜像地址 帮助
阿里云 https://maven.aliyun.com/repository/public 使用文档、提供其他软件源加速
腾讯云 http://mirrors.cloud.tencent.com/nexus/repository/maven-public/ 使用文档、提供其他软件源加速
网易云 http://mirrors.163.com/maven/repository/maven-public/ 使用文档、提供其他软件源加速
华为云 https://repo.huaweicloud.com/repository/maven/ 使用文档、提供其他软件源加速

注:部分镜像源使用多线程下载可能会触发 502 ,重试即可。