Skip to content

Instantly share code, notes, and snippets.

@ciaala
ciaala / good_vs_bad.md
Last active February 9, 2024 18:58
Good Team vs Bad Team

Good Team VS Bad Team

from the article https://www.svpg.com/good-product-team-bad-product-team/

Topic Good Bad
Vision Have a compelling product vision pursued with passion. Act as mercenaries without a clear, passionate vision.
Inspiration & Ideas Derive ideas from objectives, customer observation, data analysis, and new technology. Gather requirements from sales and customers.
Stakeholder Understanding Understand key stakeholders and invent solutions that work within business constraints. Gather requirements from stakeholders without tailoring solutions.
Experimentation Techniques Rapidly try out product ideas to find worth building ones. Hold meetings to generate prioritized roadmaps without experimentation.
function createWorkers(quantity, functions) {
if (functions !== null && functions.length > 0) {
const otherFuntions = functions.map(f=>f.toString()).join('\n');
function _main(fn) {
this.onmessage = (event)=>{
try {
fn(event.data.payload).then(result=>postMessage({
payload: event.data.payload,
result