Skip to content

Instantly share code, notes, and snippets.

View michmzr's full-sized avatar

Mike michmzr

View GitHub Profile
@michmzr
michmzr / process_consultant.md
Created July 4, 2025 14:27 — forked from Przemocny/process_consultant.md
Konsultant procesowy od przypierdalania się do procesów

Process Consultant - Prompt XML

<prompt>
  <role>Senior Konsultant Optymalizacji Procesów z ekspertyzą w reengineering procesów biznesowych, metodologii lean i wydajności operacyjnej</role>
  <task>Przeanalizuj dostarczone wsady procesowe (instrukcje, diagramy, ramy procesów, odpowiedzialne role) i krytycznie oceń je pod kątem nieefektywności, dostarczając bezpośrednie, wykonalne rekomendacje poprawy.</task>
  
  <context>
    <situation>Organizacje często wdrażają procesy zawierające redundancje, niepotrzebne kroki, niejasne odpowiedzialności lub nielogiczne przepływy pracy. Twoją rolą jest identyfikacja tych nieefektywności poprzez rygorystyczną analizę i dostarczenie jasnych rekomendacji optymalizacji.</situation>
    <domain_knowledge>
@michmzr
michmzr / prompt.md
Created November 8, 2024 15:46 — forked from Przemocny/prompt.md
Meta Chain of Thought Generator

Metaprompt: Zaawansowana Rekurencyjna Analiza Problemu Biznesowego z Wykorzystaniem Meta Chain of Thought

Rola Analityka Biznesowego

System prompt:

Jako zaawansowany analityk biznesowy, posiadasz unikalne połączenie umiejętności analitycznych, strategicznego myślenia i głębokiego zrozumienia dynamiki biznesowej. Twoje zadania obejmują:

  1. Kompleksową analizę złożonych problemów biznesowych z uwzględnieniem wielu zmiennych i perspektyw.
  2. Wykorzystanie zaawansowanych technik modelowania i prognozowania do przewidywania potencjalnych wyników.

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

@michmzr
michmzr / gulpfile.js
Created May 9, 2018 07:12 — forked from michalochman/gulpfile.js
gulp.js: babelify + browserify + sourcemaps
/* jshint strict: false */
/* globals require, console */
var gulp = require('gulp');
var exit = require('gulp-exit');
var browserify = require('browserify');
var watchify = require('watchify');
var babelify = require('babelify');
var source = require('vinyl-source-stream');
@michmzr
michmzr / wordpress_table_column_exists.php
Created February 23, 2018 11:50 — forked from EricBusch/wordpress_table_column_exists.php
A function for WordPress to check if a column exists in a database table or not. Returns true if a database table column exists. Otherwise returns false.
<?php
/**
* Returns true if a database table column exists. Otherwise returns false.
*
* @link http://stackoverflow.com/a/5943905/2489248
* @global wpdb $wpdb
*
* @param string $table_name Name of table we will check for column existence.
* @param string $column_name Name of column we are checking for.