Skip to content

Instantly share code, notes, and snippets.

View thegruffaloop's full-sized avatar

Elvir Bekirov thegruffaloop

View GitHub Profile

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

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

Правила игры

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

  • Игровое поле (6 секций карты)
  • Фигурки машинок (Hot Wheels или аналогичные)
  • Кубик с 6 гранями

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
@gghughunishvili
gghughunishvili / example.md
Last active October 16, 2025 21:52 — forked from sdnts/example.md
Postman pm.sendRequest example

To send a request via the sandbox, you can use pm.sendRequest.

pm.test("Status code is 200", function () {
    pm.sendRequest('https://postman-echo.com/get', function (err, res) {
        pm.expect(err).to.not.be.ok;
        pm.expect(res).to.have.property('code', 200);
        pm.expect(res).to.have.property('status', 'OK');
    });
});