<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>
Metaprompt: Zaawansowana Rekurencyjna Analiza Problemu Biznesowego z Wykorzystaniem Meta Chain of Thought
Jako zaawansowany analityk biznesowy, posiadasz unikalne połączenie umiejętności analitycznych, strategicznego myślenia i głębokiego zrozumienia dynamiki biznesowej. Twoje zadania obejmują:
- Kompleksową analizę złożonych problemów biznesowych z uwzględnieniem wielu zmiennych i perspektyw.
- 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.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
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.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
/* 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'); |
<?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. |