学习程序员的技术的提升是 自己接外包项目学习锻炼技术,还是去互联网公司学习技术
我现在想提升我的编程程序技术 一个做PHP的程序员 自由的开发者
自己接外包项目(或者去外包公司),还是去互联网的公司学习 不断的提升自己的编程技术
回复内容:
我现在想提升我的编程程序技术 一个做PHP的程序员 自由的开发者
自己接外包项目(或者去外包公司),还是去互联网的公司学习 不断的提升自己的编程技术
在初期两者都可以帮你得到提升,当你的水平达到一个阶段后,外包公司或者自己接外包项目所带来的技术成长就不及互联网公司了(绝大多数情况下)。
因为互联网公司一般都是做自己的产品,对规范、性能、可维护性等都要求更高!也会有专门的架构师进行全局技术把控,这对一个进阶性的程序员非常重要。
而外包项目一般不包含这些特点。
绝对是互联网公司,不要问为什么,看看现在哪个大牛是靠接外包成为大牛的,外包其实是个坑,如果不是特别手头紧,还是去大公司锻炼更规范的编程和广阔的视野
我在外包公司跟互联网公司都做过,分享一下我个人的体验。我最初是校招进入了某知名互联网公司。工作了一段时间,当时的体验就是,在绝大多数情况下,开发速度 》 开发质量 》 产品规划。所以那个时候基本上学到的就只是自己要做的那点儿,大家都很忙基本上没有交流的时间,此时自学能力跟职场情商比技术重要。然后机缘巧合之下我选择了一个外包公司,这个公司的架构跟普通的外包不太一样,3人一组(老姜,中阶,中菜)外加一个公共的PM,每组各自有各自的项目,负责从服务器搭建,架构选择,开发,测试等工作。每一个组就是一个全栈的小集体,集中讨论集体解决。那几年的知识与技术积累基本上是感觉非常明显的。后来为了钱的原因我又进入了某公司,但是由于有机会参与到相对高级点的产品筹划阶段,发现在这个层次以上能学到更多更高级的技术跟商业相关的用户理论基础,同时也遇到了很多真正的牛人,发现其实很多大牛之所以牛逼,技术不是主因,自学能力,知识面,对市场动态的自我解读能力反而成就了他们,技术对他们来说反而是水到渠成的了.以上是纯个人观点,仅供参开只用。
你的问题根源其实在于没有目标和规划,希望被动的得到提升,被动提升实在是太低效了。
我的建议首先要知道自己想达到什么程度,然后提高自己的姿势水平(『自学能力,知识面』),然后按计划执行就水到渠成了。
能去互联网大公司最好,至少薪资不会低。个人感觉会有两面性,在大公司里面可能沦为巨大机器的一小颗螺钉,按规定的制度重复工作;一方面是流程管理更好,有更多的学习晋升空间。
可以翻译外文
可以帮助别人解决问题,比如来segmentfault回答php相关问题

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics





PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.
