/ Home

Windows Basic Setup

Install Browser

join slack

Install Git SCM

alt text

Setup SSH key in Github

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

eval $(ssh-agent -s)

ssh-add ~/.ssh/id_rsa

cat ~/.ssh/id_rsa.pub

paste the ssh key in the github

alt text

alt text

Before

alt text

After

alt text

That’s you are done with the SSH key setup now you can start working with the github repo

Note

All the github related work like git pull and git clone works only on the gitbash.(you can not do that in the in the normal terminal so make sure you are doing the things correctly)

Install Sublime

alt text

--------------------------------------------------
Day # 1 - Oct 12, 2025 - Tuesday
------------------------------------------


------------------------
-------------------------------------------------------------------------------------------------------------------
Day # 313 September 9 2025 - Sunday
2025-11-09 10:00:46
---------------------------------------

LangChain vs LangGraph
https://www.youtube.com/watch?v=vmy3HgaKJsY

LangGraph Core Concepts
https://www.youtube.com/watch?v=D5KhiCDM9XQ

https://www.youtube.com/watch?v=CnXdddeZ4tQ
https://www.youtube.com/watch?v=qaWOwbFw3cs


https://jerins-organization.gitbook.io/my-learnings/



Generative AI vs Agentic AI
What is Agentic AI
LangChain vs LangGraph
LangGraph Core Concepts
Sequential Workflows in LangGraph
Parallel Workflows in LangGraph
Conditional Workflows in LangGraph
Iterative Workflows in LangGraph
How to Build a Chatbot using LangGraph
Persistence in LangGraph | Time Travel in LangGraph
Building a Chatbot with UI in LangGraph & Streamlit
Streaming in LangGraph – Implementing real-time streaming workflows
How to Build a Resume Chat Feature like ChatGPT
LangGraph + SQLite – Chatbot with Database Integration
LangSmith Crash Course – LangSmith tutorial and observability in GenAI
Observability in LangGraph – LangSmith integration for monitoring workflows
Tools in LangGraph – Tool use and orchestration in LangGraph


----------------------------------------/
Jerin
November 07
Task 1: basic setup                         - L2 - Success - 10:00 - 12:00
Task 2: Langchain notes          			- L2 - Success - 12:00 - 14:00
Task 3: kactii-hustlecamp-learning          - L2 - Success - 15:00 - 16:30
Task 4: kactii-hustlecamp-learning          - L2 - Failure - 16:30 - 18:30 
Task 5: query performed in vercel deploment - L3 - Success - 18:30 - 21:30

Total Hours: 10 Hours

--------------------------------------------------------------------------

Note

In your daily you have to keep the task details and any meeting notes and resources and any references you are collecting while working but in the logs.txt you have to maintain only the Task Details

Install VSCode

Install miniconda

conda create --name py312 python=3.12

Install kiro

Worksheet

alt text

Pynotes setup

alt text

alt text

alt text

mkdir kact

cd kact

alt text

alt text

alt text

AUTHOR          = 'Your name'  # use your name
SITENAME        = 'My Python Notes' # use title
GITHUB_USERNAME = 'github username' # use your username


# Blogroll
LINKS = (
    # ("Pelican", "https://getpelican.com/"),
)

# Social widget
SOCIAL = (
    ("GitHub", "https://github.com/username/"),
    ("LinkedIn", "<linkedin handle>"),
)

alt text

conda activate py312
pip install -r requirements.txt

alt text

python make.py

pelican content

git add .

git commit -m "my first pyotes commit"

git push

alt text

alt text

alt text

steps to create and commit and commit the file in the github

jupyter lab

alt text

alt text

alt text

alt text

alt text

python make.py

pelican content

git add .

git commit -m "new files added" 

git push
git commit -m "your own message"