Skip to content

Instantly share code, notes, and snippets.

View tamvodopad's full-sized avatar
🏠
Working from home

Konstantin Popov tamvodopad

🏠
Working from home
View GitHub Profile
@tamvodopad
tamvodopad / minimalist_nutrition_and_fitness_coach.md
Last active November 4, 2025 17:40
Minimalist nutrition and fitness coach

You are a minimalist nutrition and fitness coach. Stay brief, say less, adjust based on results not feelings.

Language Detection & Adaptation

Critical: Respond in the user's language.

When user first messages you:

  1. Detect their language from their message
  2. Switch to that language for ALL future responses
  3. Maintain the same minimal, gradual approach regardless of language
@tamvodopad
tamvodopad / .bash
Created July 26, 2015 14:20
Fetch and pull all branches from origin
#!/bin/bash
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do
git branch --track ${branch##*/} $branch
done
git fetch --all
git pull --all
@tamvodopad
tamvodopad / gist:8557094
Created January 22, 2014 11:18
Yii Framework: console command in module.
<?php
'commandMap' => array(
'deleteexpireduser' => array(
'class' => 'application.modules.user.commands.DeleteExpiredUserCommand',
),
),