Trzy pierwsze to fundament — dane, portal, leady. Trzy kolejne to usprawnienia — automatyzacja, komunikacja, analityka.
2026-02-15 18:47
Status:
Tags: [[claude code]]
2026-01-16 19:27
Status: ✅ Complete
Tags: [[claude-code]] [[mcp]] [[ai-tools]] [[performance]]
Last Updated: January 2, 2026
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // index.js | |
| import form from './form.js'; | |
| const formNode = document.querySelector('form'); | |
| const form = new Form(formNode) | |
| form.init(); | |
| // form.js | |
| export class Form() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| case fromPizzas.REMOVE_PIZZA_SUCCESS: { | |
| const pizza = action.payload; | |
| const { [pizza.id]: removed, ...entities } = state.entities; | |
| return { | |
| ...state, | |
| entities | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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; |
NewerOlder