introduce

handsomeqin5年前技术803

Good afternoon, teachers! I graduated from Beijing university of posts and telecommunications in 2004. I have been working for 16 years. Now I start my own business and I am the CEO of Hangzhou MinLan company. It is my pleasure to attend the MBA interview of Zhejiang university.

Now I want to introduce myself from three aspects:

I. work experience

1First, I'd like to introduce my current work. I founded hangzhou minlan in 2018. The team backbone mainly comes from zhejiang university, main business is the development of information systems and software research and development, customers include China mobile, China telecom, the Chinese insurance, etc.

2Before that, I was invited by Dr. Xu chang of zhejiang university to participate in the business startup of hangzhou maitian, and the entrepreneurship is the intelligent hardware and Internet platform, we have obtained risk investment from zhedawangxin.

3Before that, I have more than 10 years of working experience in China mobile and other telecom operators.

Ii. Main performance

1. Hangzhou minlan started from scratch and now has a technical team of more than 20 people, with an annual profit of over one million.

2. Hangzhou matian successfully developed the matian intelligent lock, bangzuxia, served tens of thousands of customers, and got risk investment from zhedawangxin.

3. Led the development and operation of several telecom value-added products and Internet applications with more than 1 million users, among which "shoujiqiaming", "cheliangweizhangtixing" and other businesses had more than 5 million users and tens of millions of revenue.

Third, the origin with zhejiang university,thanks for zju.

1I started my entrepreneurial journey at a party with Dr. Xu chang zhedayuquan

2We stayed zetonglou in zhedayuquan for the first 2 years. The intelligent hardware matiansuo  and the Internet platform bangzuxia were developed in zetonglou 403.

3Zhejiang university has given me great help, and now Chen gang is our consultant.

The above is my general entrepreneurial experience and personal achievements and contributions. In the process of starting a business, I encountered a variety of management problems, especially in investor management, financial management and sales management. Before, I could only learn by doing while reading books in a fragmented way. I always wanted to learn through the MBA system to strengthen my management ability. So today I am here for an interview, hoping to complete my MBA study.

If I am lucky enough to study in zhejiang university, while receiving education, I also hope to make some contributions to the school and my classmates, such as building mobile Internet platform, software development and entrepreneurial experience.


相关文章

Gerapy Auto Extractor真好用

import jsonimport requestsfrom gerapy_auto_extractor.extractors.list import extract_list# html = ope...

一段买彩票双色球选号代码

random time () input_any = () red_balls = () blue_balls = () red...

微信开发token验证失败的解决办法

第一天做微信开发,需要验证token。1、在公众号里设置好了相关信息。2、在服务器对应的url下放网页。<?php  $timestamp = $_GET['time...

php中正则表达式对斜杠的处理

斜杠需要加两个反斜杠 \\ 进行转义.$key = "https://file.ipadown.com/tophub/assets/images/media/appinn.com.png&q...

JavaScript 逆向爬取实战(下)

JavaScript 逆向爬取实战(下)

这一篇是 JavaScript 逆向爬取的第二篇。那么接下来我为大家缕顺一下学习顺序。系列文章的第一篇启于总结一些网站加密和混淆技术,这篇文章我们介绍了网页防护技术,包括接口加密和 JavaScrip...

在这里插入图片描述
大概在这个位置给www用户权限;添加这句:www ALL=(ALL) ALL;强制保存并退出:wq!
然后切换到www用户的家目录

cd /home/www1

准备工作做完了,现在开始下载nginx源包,使用wget工具下载

wget http://nginx.org/download/nginx-1.6.3.tar.gz1

如果执行这一步的时候出现了,命令不存在之类的错误信息,可能是因为wget工具未安装,需要使用yum工具安装一下wget工具

yum -y install wget1

安装成功后在执行下载命令;
此时www的家目录中会有一个名为nginx-1.6.3.tar.gz的压缩文件
切换到www用户并解压这个文件

su - wwwtar -xvf nginx-1.6.3.tar.gz12

解压之后会有一个名为nginx-1.6.3的目录文件;
我们更改一下nginx-1.6.3及其子文件的属主和属组

chown -R www:www nginx-1.6.31

更改成功之后进入这个文件

cd nginx-1.6.31

执行配置命令

./configure1

接下来编译文件,编译成功后,可以看到一个Makefile文件

make1

一般在这里会出现问题,下面给出问题截图和解决方法
1、
在这里插入图片描述
问题原因:不知道
解决方法:进入到nginx-1.6.3目录下(解压的目录)
找到当前目录下找到objs文件夹,并进入,打开文件Makefile,

vim objs/Makefile1

找到有一下内容的这行:(就在前几行)

CFLAGS =  -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g 1

-Werror: gcc将所有的警告当成错误进行处理把这行内容中的 “-Werror”去掉
2、在这里插入图片描述
错误原因:不知道
解决方法:编辑这个文件

vim /home/www/nginx-1.6.3/src/os/unix/ngx_user.c1

把这一行注释掉(35行左右)
Centos8下安装nginx

Centos8下安装nginx

在最近的实训实验中需要在centos8下安装nginx,在安装过程中遇到了很多问题,在此对我的安装过程做一个分享;准备工作Vmware(安装了centos8),虚拟机可以上网开始安装安装依赖包,使用y...