Hi ;)
We start at 15:00
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # Rails Console Bridge | |
| # Loads the Rails environment and provides a REPL-like protocol over stdin/stdout. | |
| # Used by the pi rails-console extension to give the AI persistent access to a | |
| # Rails console without writing one-off scripts. | |
| require 'stringio' | |
| require 'json' |
| # ToCode MCP Webinar Agenda | |
| 1. What is MCP | |
| https://modelcontextprotocol.io/docs/concepts/architecture | |
| LLM | |
| ^ | |
| | | |
| | | |
| Copilot [Agent] <--> MCP |
| services: | |
| server: | |
| build: | |
| context: . | |
| volumes: | |
| - db_data_sqlite:/var/lib/kutt | |
| - custom:/kutt/custom | |
| env_file: | |
| - .env | |
| environment: |
| import random | |
| import sys | |
| from typing import NewType | |
| BPResult = tuple[int, int] | |
| BPNumber = NewType('BPNumber', int) | |
| ALL_OPTIONS = [n for n in range(1000, 99999) if len(str(n)) == len(set(str(n)))] | |
| def guesses(): |