- Create the GUI
server.registerResource(
'joke-widget',
templateURI,
{},
async () => ({
| # 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(): |
Create a Python program that asks the user to tyep their age in years, and the program will convert and print their age in months.
Create a Python program that asks the user to type their age in months, and the program will convert and print their age in years.
Create a Python program to check the complexity of a password: It should ask the user for a word and verify the word contains a lowercase letter, an uppercase letter and a number.
Write a Python program that takes a number from the user and print the word "Boom" if that number divides by 7 or contains the digit 7
| evenings_ok=( | |
| "Pesach I" | |
| "Pesach VII" | |
| "Shavuot I" | |
| "Tish'a B'Av" | |
| "Rosh Hashana II" | |
| "Yom Kippur" | |
| "Sukkot I" | |
| "Shmini Atzeret" | |
| ) |
| CREATE TABLE test (x integer, y integer); | |
| INSERT INTO test(x, y) VALUES(10, 20); | |
| INSERT INTO test(x, y) VALUES(10, 20); | |
| INSERT INTO test(x, y) VALUES(10, 20); |