Ynon Perek
- Async Ecosystem
- Cursor tabs
- Claude Code (multiple working trees)
- Jules (free)
- Copilot (10$ => 39$)
- Product Manager -> Issue -> Copilot -> PR
# 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); |
(ns reagent-useeffect-demo.core | |
(:require | |
[reagent.core :as r] | |
[react :as react] | |
[cljs.core.async :refer [go]] | |
[cljs.core.async.interop :refer-macros [<p!]] | |
[reagent.dom :as rdom])) | |
(defn use-pokemon [id] | |
(let [[data set-data] (react/useState {}) |
[ ] Create a first Vue app in Vite. Change the text to show your name.
[ ] Change the background color to a color you like
[ ] Add a new component that prints Hello <your name>
.
Add it to the page multiple times to see the message repeated.
[ ] Add a new component that shows an image.