search
HomeBackend DevelopmentPHP TutorialWhat are some good habits for product managers?


Why do some friends find that after 1 or 2 years of becoming product managers (http://www.maiziedu.com/course/pm/), they find that they have not grown much or have entered a bottleneck and are unable to improve their technical capabilities. The problems that arise are specifically reflected in these situations: I know some points in product design, but when it comes to implementation, I can't connect these points well. I have done a lot of competitive product analysis and accumulated some materials, but I always feel that there is a problem in the product design. When I was using it, I couldn't use it. I felt that I knew the business logic very well, but when I actually encountered it, I couldn't accurately describe the problem. All of this confused me. Looking back now, I feel that there are a few habits that need PM: Special attention.

1: Form your own unique product design methodology
Collect and organize several mainstream methods of product design (http://www.maiziedu.com/course/pm/115-1118), find a method system that suits you, use actual projects to verify whether it is really suitable for you, and then continuously optimize and iterate This system breaks down the workflow, identifies key steps, and uses repeated practice to form its own unique methodology to thoroughly master these key points.
For example, when I am working on a gold buyback project, I am also constantly establishing, optimizing and iterating a set of backend system design methodologies, such as

Confirm business flow

Find key nodes

Build a business model (abstract business description)

User stories

Establish a conceptual model (a conceptual structure that reflects information needs, such as user permissions role table, UML diagram)

Logical model (prototype, document, field table)

These processes are the process of forming your own methodology

2: stay hungry stay foolish
I need to constantly maintain a strong thirst for knowledge and always have a humble attitude. Every month I will review my behavior during this period. I often feel that I am ignorant and arrogant. I always think that I have mastered most of the product design theories, and I am constantly Practice, so the mentality has expanded, unable to see one's own shortcomings, and magnifying one's own advantages. This is very fatal, because it will lead to complacency and loss of a calm and objective mentality.
Whenever I feel that I have this tendency, I will find some experts to ask if they have had the same experience and ask for their opinions. In terms of product design, since there are wheels, don’t go through it again yourself. , see how they handle it, and then keep alerting yourself.

3: Don’t do it just because competing products do it
​ ​ Continuing to tell a story, I remember that when I was working on Jinshengbao gold price reminder, I researched many trading apps. Finally, someone asked why it was designed like this. At that time, I answered without thinking: Because competing products are also designed in this way. I observed in the background that this kind of scene also happens in our team. Why is it designed like this? Because XXX, which ranks number one in the industry, is also designed in this way. Looking back now, it's so ridiculous.
This reminds me of my participation in the Chaos Research Society in April. Chen Erdong, the current engineering director of Twitter, said that Facebook conducted an A/B test on the homepage at that time, and then XX directly copied version A. As a result, FB used version B based on the data. The other party was very embarrassed. .
What I want to emphasize is, think more about why others do what they do (what the essence is). When you don’t understand why it is designed like this, stop and think clearly. The superficial appearance of what others do is not the reason why we must do it. , is competitive product research useful? Of course it is useful, because it will allow you to abstract some common rules, find differences, and conduct in-depth analysis based on business advantages, product features, user characteristics, and usage scenarios. When you do in-depth analysis, you will come up with some things that make you feel very Surprising conclusion.
This topic was reviewed and approved by Xiaobei on 2016-5-18 10:39


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software