Skip to content

Instantly share code, notes, and snippets.

View czechue's full-sized avatar
💀
Working from home

czechue czechue

💀
Working from home
  • Fourthwall
  • Poznań
View GitHub Profile
@czechue
czechue / SPOTKANIE-AGENDA-PUBLICZNA.md
Created March 16, 2026 12:06
HOMA Investment — Co proponuję (agenda spotkania)

HOMA Investment — Co proponuję


6 rzeczy w 3-4 miesiące

Trzy pierwsze to fundament — dane, portal, leady. Trzy kolejne to usprawnienia — automatyzacja, komunikacja, analityka.


@czechue
czechue / Optimizing Your CLAUDE.md File for Better Claude Code Performance.md
Created February 15, 2026 17:53
Optimizing Your CLAUDE.md File for Better Claude Code Performance
@czechue
czechue / Claude Code MCP Lazy Loading Update.md
Last active January 18, 2026 09:56
Claude Code MCP Lazy Loading Update - Context Window Optimization

2026-01-16 19:27

Status: ✅ Complete

Tags: [[claude-code]] [[mcp]] [[ai-tools]] [[performance]]

Claude Code MCP Lazy Loading Update - Context Window Optimization

Source: https://www.youtube.com/watch?v=l7qVtHpctic

@czechue
czechue / PRIVACY_POLICY.md
Created January 2, 2026 16:04
Privacy Policy - PAI (Personal AI Infrastructure) - Garmin Connect Integration

Privacy Policy - PAI (Personal AI Infrastructure)

Last Updated: January 2, 2026

Overview

PAI (Personal AI Infrastructure) is a personal productivity system that integrates Garmin Connect health and fitness data with personal productivity tracking and development frameworks.

Important: This is a single-user, personal-use application. It is not distributed, shared, or made available to other users.

@czechue
czechue / Executive Summary - AI-Assisted Development Investment.md
Created December 23, 2025 17:12
Executive Summary: AI-Assisted Development Investment (5-7x ROI)

2025-12-23 18:10

Status: ✅ Ready for Executive Review

Tags: [[ai-engineering]] [[business-case]] [[validation]] [[executive-summary]]

Executive Summary - AI-Assisted Development Investment

@czechue
czechue / AI-Assisted Development Environment - Implementation Plan.md
Created December 23, 2025 17:01
AI-Assisted Development Environment - Implementation Plan

2025-12-23 16:30

Status: 🟡 Research & Planning

Tags: [[ai-engineering]] [[implementation]] [[validation]]

AI-Assisted Development Environment - Implementation Plan

Goal: Prepare company repositories for effective AI-assisted development

@czechue
czechue / Factory AI - Making Codebases Agent Ready.md
Created December 23, 2025 16:56
Factory AI - Making Codebases Agent Ready (AI-Assisted Engineering)

2025-12-23 16:30

Status:

Tags: [[ai-engineering]] [[validation]]

Factory AI - Making Codebases Agent Ready

Speaker: Eno Reyes (Factory AI)

// index.js
import form from './form.js';
const formNode = document.querySelector('form');
const form = new Form(formNode)
form.init();
// form.js
export class Form() {
@czechue
czechue / reducer.js
Created September 15, 2018 18:22
Removing Item from Store [REDUX]
case fromPizzas.REMOVE_PIZZA_SUCCESS: {
const pizza = action.payload;
const { [pizza.id]: removed, ...entities } = state.entities;
return {
...state,
entities
}
}
@czechue
czechue / carusel.js
Created February 1, 2018 09:53
simple carusel and dropdown menu in vanilla js
/* Blog slider */
const prevPost = document.querySelector('#prevPost');
const nextPost = document.querySelector('#nextPost');
const itemBlog = document.querySelectorAll('.fromBlog__item');
const blogWrapper = document.querySelector('.fromBlog__blog');
function getBlogWrapperWidth () {
let allItemsWidth = getBlogItemWidth() * itemBlog.length;