‎欧冠赛程‎赛‎哪‎里可‎以看直播。

&figure&&img src=&https://pic4.zhimg.com/v2-9e3e5bc9cba938c35b536c1dd5a61eed_b.jpg& data-rawwidth=&640& data-rawheight=&466& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic4.zhimg.com/v2-9e3e5bc9cba938c35b536c1dd5a61eed_r.jpg&&&/figure&&h2&&b&一、前言&/b&&/h2&&p&金九银十的求职季到了,很多小伙伴都想着投几份简历试试水。但是简历明明投放了很多,却没有收到面试通知,怎么回事?&/p&&p&如果你还是只会写word简历,那你就out啦!&/p&&p&好的简历是成功的一半,你应该有一份高逼格的简历,下面就来说说怎么才能写出高逼格的简历。&/p&&h2&&b&二、使用GitHub制作简历&/b&&/h2&&p&我们可以利用 Github 的静态页面托管服务 Github Pages 来帮助我们做页面展示。&/p&&p&&b&2.1什么是 Github Pages?&/b&&/p&&p&Github Pages 是 Github 的静态页面托管服务。它设计的初衷是为了用户能够直接通过 Github 仓库来托管用户个人、组织或是项目的专属页面。参考:&a href=&http://link.zhihu.com/?target=https%3A//help.github.com/articles/what-is-github-pages/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://&/span&&span class=&visible&&help.github.com/article&/span&&span class=&invisible&&s/what-is-github-pages/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&&b&2.2Github Pages 的限制:&/b&&/p&&ul&&li&仓库存储的所有文件不能超过 1 GB &/li&&li&页面的带宽限制是低于每月 100 GB 或是每月 100,000 次请求。&/li&&li&每小时最多只能部署 10 个静态网站。&/li&&/ul&&p&&b&2.3git基础命令&/b&&/p&&div class=&highlight&&&pre&&code class=&language-text&&&span&&/span&查看、添加、提交、删除、找回,重置修改文件
git help &command& # 显示command的help
git show # 显示某次提交的内容 git show $id
git co -- &file& # 抛弃工作区修改
git co . # 抛弃工作区修改
git add &file& # 将工作文件修改提交到本地暂存区
git add . # 将所有修改过的工作文件提交暂存区
git rm &file& # 从版本库中删除文件
git rm &file& --cached # 从版本库中删除文件,但不删除文件
git reset &file& # 从暂存区恢复到工作文件
git reset -- . # 从暂存区恢复到工作文件
git reset --hard # 恢复最近一次提交过的状态,即放弃上次提交后的所有本次修改
git ci &file& git ci . git ci -a # 将git add, git rm和git ci等操作都合并在一起做                                    git ci -am &some comments&
git ci --amend # 修改最后一git diff &branch1&..&branch2& # 在两个分支之间比较
git diff --staged # 比较暂存区和版本库差异
git diff --cached # 比较暂存区和版本库差异
git diff --stat # 仅仅比较统计信息
次提交记录
git revert &$id& # 恢复某次提交的状态,恢复动作本身也创建次提交对象
git revert HEAD # 恢复最后一次提交的状态
查看文件diff
git diff &file& # 比较当前文件和暂存区文件差异 git diff
git diff &id1&&id2& # 比较两次提交之间的差异
查看提交记录
git log git log &file& # 查看该文件每次提交记录
git log -p &file& # 查看每次详细修改内容的diff
git log -p -2 # 查看最近两次详细修改内容的diff
git log --stat #查看提交统计信息
Mac上可以使用tig代替diff和log,brew install tig
Git 本地分支管理
查看、切换、创建和删除分支
git br -r # 查看远程分支
git br &new_branch& # 创建新的分支
git br -v # 查看各个分支最后提交信息
git br --merged # 查看已经被合并到当前分支的分支
git br --no-merged # 查看尚未被合并到当前分支的分支
git co &branch& # 切换到某个分支
git co -b &new_branch& # 创建新的分支,并且切换过去
git co -b &new_branch& &branch& # 基于branch创建新的new_branch
git co $id # 把某次历史提交记录checkout出来,但无分支信息,切换到其他分支会自动删除
git co $id -b &new_branch& # 把某次历史提交记录checkout出来,创建成一个分支
git br -d &branch& # 删除某个分支
git br -D &branch& # 强制删除某个分支 (未被合并的分支被删除的时候需要强制)
分支合并和rebase
git merge &branch& # 将branch分支合并到当前分支
git merge origin/master --no-ff # 不要Fast-Foward合并,这样可以生成merge提交
git rebase master &branch& # 将master rebase到branch,相当于: git co &branch& && git rebase master && git co master && git merge &branch&
Git补丁管理(方便在多台机器上开发同步时用)
git diff & ../sync.patch # 生成补丁
git apply ../sync.patch # 打补丁
git apply --check ../sync.patch #测试补丁能否成功
Git暂存管理
git stash # 暂存
git stash list # 列所有stash
git stash apply # 恢复暂存的内容
git stash drop # 删除暂存区
Git远程分支管理
git pull # 抓取远程仓库所有分支更新并合并到本地
git pull --no-ff # 抓取远程仓库所有分支更新并合并到本地,不要快进合并
git fetch origin # 抓取远程仓库更新
git merge origin/master # 将远程主分支合并到本地当前分支
git co --track origin/branch # 跟踪某个远程分支创建相应的本地分支
git co -b &local_branch& origin/&remote_branch& # 基于远程分支创建本地分支,功能同上
git push # push所有分支
git push origin master # 将本地主分支推到远程主分支
git push -u origin master # 将本地主分支推到远程(如无远程主分支则创建,用于初始化远程仓库)
git push origin &local_branch& # 创建远程分支, origin是远程仓库名
git push origin &local_branch&:&remote_branch& # 创建远程分支
git push origin :&remote_branch& #先删除本地分支(git br -d &branch&),然后再push删除远程分支
Git远程仓库管理
git remote -v # 查看远程服务器地址和仓库名称
git remote show origin # 查看远程服务器仓库状态
git remote add origin git@ github:robbin/robbin_site.git # 添加远程仓库地址
git remote set-url origin git@ github.com:robbin/robbin_site.git # 设置远程仓库地址(用于修改远程仓库地址) git remote rm &repository& # 删除远程仓库
创建远程仓库
git clone --bare robbin_site robbin_site.git # 用带版本的项目创建纯版本仓库
scp -r my_project.git git@ git.csdn.net:~ # 将纯仓库上传到服务器上
mkdir robbin_site.git && cd robbin_site.git && git --bare init # 在服务器创建纯仓库
git remote add origin git@ github.com:robbin/robbin_site.git # 设置远程仓库地址
git push -u origin master # 客户端首次提交
&/code&&/pre&&/div&&p&&b&2.4 初始化git库&/b&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-a4b4c7ea9b7aa7d5f944_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&668& data-rawheight=&207& class=&origin_image zh-lightbox-thumb& width=&668& data-original=&https://pic1.zhimg.com/v2-a4b4c7ea9b7aa7d5f944_r.jpg&&&/figure&&div class=&highlight&&&pre&&code class=&language-text&&&span&&/span&[root@jdu4e00u53f7 ~]# mkdir Code
[root@jdu4e00u53f7 ~]# cd Code/
[root@jdu4e00u53f7 Code]# mkdir CV
[root@jdu4e00u53f7 Code]# cd CV
[root@jdu4e00u53f7 CV]# ls
[root@jdu4e00u53f7 CV]# git init
&/code&&/pre&&/div&&p&&b&2.5 用户配置&/b&&/p&&div class=&highlight&&&pre&&code class=&language-text&&&span&&/span&[root@jdu4e00u53f7 CV]# git config --global user.name &haoziyunwei&
[root@jdu4e00u53f7 CV]# git config --global user.email &&
&/code&&/pre&&/div&&p&&b&2.6下载简历模版(阿里云上有)&/b&&/p&&div class=&highlight&&&pre&&code class=&language-text&&&span&&/span&[root@jdu4e00u53f7 CV]# wget http://labfile.oss.aliyuncs.com/courses/624/cv-template.zip
-- 09:59:13--
http://labfile.oss.aliyuncs.com/courses/624/cv-template.zip
Resolving labfile.oss.aliyuncs.com... 118.178.161.16
Connecting to labfile.oss.aliyuncs.com|118.178.161.16|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3K) [application/zip]
Saving to: “cv-template.zip”
100%[====================================================================&] 156,602
--.-K/s in 0.1s
09:59:13 (1.26 MB/s) - “cv-template.zip” saved [602]
[root@jdu4e00u53f7 CV]# unzip cv-template.zip
cv-template.zip
creating: cv-template/
inflating: cv-template/.DS_Store
creating: __MACOSX/
creating: __MACOSX/cv-template/
inflating: __MACOSX/cv-template/._.DS_Store
inflating: cv-template/index.html
creating: cv-template/static/
inflating: cv-template/static/.DS_Store
creating: __MACOSX/cv-template/static/
inflating: __MACOSX/cv-template/static/._.DS_Store
creating: cv-template/static/css/
inflating: cv-template/static/css/.DS_Store
creating: __MACOSX/cv-template/static/css/
inflating: __MACOSX/cv-template/static/css/._.DS_Store
inflating: cv-template/static/css/style.css
creating: cv-template/static/fonts/
inflating: cv-template/static/fonts/.DS_Store
creating: __MACOSX/cv-template/static/fonts/
inflating: __MACOSX/cv-template/static/fonts/._.DS_Store
inflating: cv-template/static/fonts/demo.css
inflating: cv-template/static/fonts/demo.html
inflating: cv-template/static/fonts/iconfont.css
inflating: cv-template/static/fonts/iconfont.eot
inflating: cv-template/static/fonts/iconfont.svg
inflating: cv-template/static/fonts/iconfont.ttf
inflating: cv-template/static/fonts/iconfont.woff
creating: cv-template/static/image/
inflating: cv-template/static/image/.DS_Store
creating: __MACOSX/cv-template/static/image/
inflating: __MACOSX/cv-template/static/image/._.DS_Store
inflating: cv-template/static/image/bg.jpg
inflating: cv-template/static/image/weixin.png
creating: cv-template/static/js/
inflating: cv-template/static/js/.DS_Store
creating: __MACOSX/cv-template/static/js/
inflating: __MACOSX/cv-template/static/js/._.DS_Store
inflating: cv-template/static/js/modal.js
inflating: cv-template/static/js/script.js
[root@jdu4e00u53f7 CV]# mv cv-template/* .
[root@jdu4e00u53f7 CV]# rm -rf cv-template*
cv-template/
cv-template.zip
[root@jdu4e00u53f7 CV]# rm -rf cv-template* __MACOSX*
[root@jdu4e00u53f7 CV]# firefox index.html
Error: GDK_BACKEND does not match available displays
[root@jdu4e00u53f7 CV]# ls
index.html
[root@jdu4e00u53f7 CV]# yum install Xvfb libXfont xorg-x11-fonts* #下载界面运行
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
epel/metalink | 6.2 kB
* epel: ftp.cuhk.edu.hk
Package xorg-x11-server-Xvfb-1.17.4-16.el6.centos.x86_64 already installed and latest version
Package libXfont-1.5.1-2.el6.x86_64 already installed and latest version
Package xorg-x11-fonts-Type1-7.2-11.el6.noarch already installed and latest version
Resolving Dependencies
--& Running transaction check
---& Package xorg-x11-fonts-100dpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-75dpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-cyrillic.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-ethiopic.noarch 0:7.2-11.el6 will be installed
---& Package xorg-x11-fonts-misc.noarch 0:7.2-11.el6 will be installed
--& Finished Dependency Resolution
Dependencies Resolved
==============================================================================================================
Repository
==============================================================================================================
Installing:
xorg-x11-fonts-100dpi
7.2-11.el6
xorg-x11-fonts-75dpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-ISOdpi
7.2-11.el6
xorg-x11-fonts-cyrillic
7.2-11.el6
xorg-x11-fonts-ethiopic
7.2-11.el6
xorg-x11-fonts-misc
7.2-11.el6
Transaction Summary
==============================================================================================================
15 Package(s)
Total download size: 22 M
Installed size: 23 M
Is this ok [y/N]: y
Downloading Packages:
(1/15): xorg-x11-fonts-100dpi-7.2-11.el6.noarch.rpm
(2/15): xorg-x11-fonts-75dpi-7.2-11.el6.noarch.rpm
(3/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(4/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(5/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(6/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(7/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(8/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(9/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(10/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(11/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(12/15): xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch.rpm
(13/15): xorg-x11-fonts-cyrillic-7.2-11.el6.noarch.rpm
(14/15): xorg-x11-fonts-ethiopic-7.2-11.el6.noarch.rpm
(15/15): xorg-x11-fonts-misc-7.2-11.el6.noarch.rpm
--------------------------------------------------------------------------------------------------------------
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ethiopic-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-cyrillic-7.2-11.el6.noarch
Installing : xorg-x11-fonts-misc-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-75dpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-100dpi-7.2-11.el6.noarch
Installing : xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-100dpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-75dpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-misc-7.2-11.el6.noarch
: xorg-x11-fonts-cyrillic-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ethiopic-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
: xorg-x11-fonts-ISOdpi-7.2-11.el6.noarch
Installed:
xorg-x11-fonts-100dpi.noarch 0:7.2-11.el6
xorg-x11-fonts-75dpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-ISOdpi.noarch 0:7.2-11.el6
xorg-x11-fonts-cyrillic.noarch 0:7.2-11.el6
xorg-x11-fonts-ethiopic.noarch 0:7.2-11.el6
xorg-x11-fonts-misc.noarch 0:7.2-11.el6
&/code&&/pre&&/div&&p&&b&2.7 编辑简历&/b&&/p&&p&在linux终端项目目录输入命令firefox index.html&/p&&p&文字可以任意编辑&/p&&p&点击图片,放入图片地址,替换自己的头像和微信号,复制外部链接html。&/p&&p&编辑完自己简历,保存。&/p&&figure&&img src=&https://pic2.zhimg.com/v2-3c5ed3fe21f092efa2fa35_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&893& data-rawheight=&480& class=&origin_image zh-lightbox-thumb& width=&893& data-original=&https://pic2.zhimg.com/v2-3c5ed3fe21f092efa2fa35_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-0dff6b2bae0d_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&412& data-rawheight=&543& class=&content_image& width=&412&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-bdb1cfa17f05038_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&591& data-rawheight=&617& class=&origin_image zh-lightbox-thumb& width=&591& data-original=&https://pic1.zhimg.com/v2-bdb1cfa17f05038_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-e491abd95c67d08d0f28b2fbd6e97686_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&680& data-rawheight=&424& class=&origin_image zh-lightbox-thumb& width=&680& data-original=&https://pic3.zhimg.com/v2-e491abd95c67d08d0f28b2fbd6e97686_r.jpg&&&/figure&&p&&b&2.8部署简历文件&/b&&/p&&p&首先需要自己的 Github 账号,地址:&a href=&http://link.zhihu.com/?target=https%3A//github.com/join%3Fsource%3Dlogin& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Build software better, together&/a&&/p&&p&进入自己的github里面创建一个仓库&/p&&figure&&img src=&https://pic4.zhimg.com/v2-5cf47277483_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&500& data-rawheight=&233& class=&origin_image zh-lightbox-thumb& width=&500& data-original=&https://pic4.zhimg.com/v2-5cf47277483_r.jpg&&&/figure&&p&&b&2.8.1在本地仓库提交代码&/b&&/p&&div class=&highlight&&&pre&&code class=&language-text&&&span&&/span&[root@jdu4e00u53f7]:Code/ (master*) $ git add .
[14:19:24]
[root@jdu4e00u53f7]:Code/ (master*) $ git commit -m 'commint my cv' [14:19:31]
[master (root-commit) c946e97] commint my cv
19 files changed, 1562 insertions(+)
create mode 100644 index.html
create mode 100644 static/.DS_Store
create mode 100644 static/css/.DS_Store
create mode 100644 static/css/style.css
create mode 100644 static/fonts/.DS_Store
create mode 100644 static/fonts/demo.css
create mode 100644 static/fonts/demo.html
create mode 100644 static/fonts/iconfont.css
create mode 100644 static/fonts/iconfont.eot
create mode 100644 static/fonts/iconfont.svg
create mode 100644 static/fonts/iconfont.ttf
create mode 100644 static/fonts/iconfont.woff
create mode 100644 static/image/.DS_Store
create mode 100644 static/image/bg.jpg
create mode 100755 static/image/bg1.jpg
create mode 100644 static/image/weixin.png
create mode 100644 static/js/.DS_Store
create mode 100644 static/js/modal.js
create mode 100644 static/js/script.js
[root@jdu4e00u53f7]:Code/ (master) $ git config --global user.name &haoziyunwei& [14:30:42]
[root@jdu4e00u53f7]:Code/ (master) $ git config --global user.email && [14:31:47]
git push -f
[14:38:13]
warning: push. its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
In Git 2.0, Git will default to the more conservative 'simple'
behavior, which only pushes the current branch to the corresponding
remote branch that 'git pull' uses to update the current branch.
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
Username for 'https://github.com': haoziyunwei
Password for 'https://':
Counting objects: 26, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (26/26), done.
Writing objects: 100% (26/26), 1013.62 KiB | 0 bytes/s, done.
Total 26 (delta 6), reused 0 (delta 0)
Username for 'https://github.com':
Password for 'https://@github.com':
Counting objects: 41, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (41/41), done.
Writing objects: 100% (41/41), 1.09 MiB | 219.00 KiB/s, done.
Total 41 (delta 9), reused 0 (delta 0)
remote: Resolving deltas: 100% (9/9), done.
To https://github.com/haoziyunwei/cv
* [new branch]
master -& master
Branch master set up to track remote branch master from origin.
&/code&&/pre&&/div&&p&&b&2.8.2使用托管源&/b&&/p&&p&现在你可以访问https://你的用户名.&a href=&http://link.zhihu.com/?target=http%3A//github.io/cv/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&github.io/cv/&/span&&span class=&invisible&&&/span&&/a&这个地址了,恭喜,简历页面已成功部署在了 Github Pages 上。(注意请使用火狐浏览器打开兼容性问题)&/p&&p&&b&2.8.3查看自己的简历&/b&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-0b8c92e214d741e34c039_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1073& data-rawheight=&545& class=&origin_image zh-lightbox-thumb& width=&1073& data-original=&https://pic2.zhimg.com/v2-0b8c92e214d741e34c039_r.jpg&&&/figure&&p&#你get到新姿势了吗!!!&/p&&h2&&b&三、使用Html5制作简历&/b&&/h2&&p&&a href=&http://link.zhihu.com/?target=http%3A//my.dingdone.com/login& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&叮当&/a&&/p&&p&借助于第三方工具&/p&&p&&b&3.1下载模块并使用&/b&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-da156ff6dbd5d476b180dd_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&826& data-rawheight=&701& class=&origin_image zh-lightbox-thumb& width=&826& data-original=&https://pic2.zhimg.com/v2-da156ff6dbd5d476b180dd_r.jpg&&&/figure&&p&&b&3.2修改简历&/b&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-70bd12f09e01ec6f5b874_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&388& data-rawheight=&495& class=&content_image& width=&388&&&/figure&&p&&b&3.2扫描二维码查阅&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-ceb68aa33a6_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&403& data-rawheight=&684& class=&content_image& width=&403&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-08c571ace0daf7fbf4ca06_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&412& data-rawheight=&693& class=&content_image& width=&412&&&/figure&&p&&br&&/p&&p&&b&四、更多高逼格方法&/b&&/p&&p&&b&4.1使用markdown制作简历&/b&&/p&&p&1、使用Markdown来写简历的好处&/p&&p&格式简洁,清爽悦目,非常适合程序员的简历。&/p&&p&内容与形式分离,让你专注于写出好内容,而不是一写简历,就想到用什么模板。&/p&&p&2、不足之处&/p&&p&Markdown的排版不够丰富,如没有右对齐。&/p&&p&好在可以使用一些CSS&/p&&p&&b&4.2在线生成简历工具&/b&&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//deercv.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&DeerCV&/a&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-80b4c5baa5f848e7f035a_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1320& data-rawheight=&583& class=&origin_image zh-lightbox-thumb& width=&1320& data-original=&https://pic3.zhimg.com/v2-80b4c5baa5f848e7f035a_r.jpg&&&/figure&&p&做技术没有一个技术博客(或个人微信公众号)和Github地址,那还是技术吗?&/p&&p&新式简历方法你get到几个了!&/p&&p&最后祝各位早日找到理想的工作,希望这份文章能帮到各位。&/p&&p&本文来源:&a href=&http://link.zhihu.com/?target=http%3A//chenhao6.blog.51cto.com/1038& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&如何写出一份高逼格的简历?新技能 get√ - 浩子&/a&&/p&&p&——————————————————————————&/p&&p&你想更深入了解学习Python知识体系,你可以看一下我们花费了一个多月整理了上百小时的几百个知识点体系内容:&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//www.magedu.com/73198.html%3FPython_wenzhang_zhihu_jinke_sigegaobigejianlizhizuojiqiao_& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&【超全整理】《Python自动化全能开发从入门到精通》笔记全放送&/a&&/p&
一、前言金九银十的求职季到了,很多小伙伴都想着投几份简历试试水。但是简历明明投放了很多,却没有收到面试通知,怎么回事?如果你还是只会写word简历,那你就out啦!好的简历是成功的一半,你应该有一份高逼格的简历,下面就来说说怎么才能写出高逼格的…
&p&其实上市公司的年报都是免费的,也有很多网站进行了整理,尤其是对于报表,可以批量获取。&/p&&p&&b&一、完整版年报获取方式&/b&&/p&&p&通常上市公司会在每年的4月份左右发布上年年报,在该公司的网站上会有下载链接,这是最权威的年报获取手段。&/p&&p&比如安琪酵母:&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-125af16bc5b_b.png& data-rawwidth=&1213& data-rawheight=&691& class=&origin_image zh-lightbox-thumb& width=&1213& data-original=&https://pic1.zhimg.com/v2-125af16bc5b_r.jpg&&&/figure&&p&打开其官方网站,能够看到“投资者关系”一栏,里面就是放的各种公告,包括历年财报。&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-f201de4f9df3db13cd2e0333_b.png& data-rawwidth=&969& data-rawheight=&574& class=&origin_image zh-lightbox-thumb& width=&969& data-original=&https://pic4.zhimg.com/v2-f201de4f9df3db13cd2e0333_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-85f53dcc02b8_b.png& data-rawwidth=&967& data-rawheight=&609& class=&origin_image zh-lightbox-thumb& width=&967& data-original=&https://pic1.zhimg.com/v2-85f53dcc02b8_r.jpg&&&/figure&&p&这里其实是一个PDF的下载链接,使用下载工具下载即可。&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-bf3c86a0dbcf8b3eef985_b.png& data-rawwidth=&814& data-rawheight=&640& class=&origin_image zh-lightbox-thumb& width=&814& data-original=&https://pic2.zhimg.com/v2-bf3c86a0dbcf8b3eef985_r.jpg&&&/figure&&p&如果大量分析年报的话,这样的下载方式略显繁琐。&/p&&p&绝大多数证券网站都做了搜集整理,可以方便的查找下载,比如新浪股票、网易财经、腾讯证券。&/p&&p&我习惯使用腾讯证券,地址在此:&a href=&//link.zhihu.com/?target=http%3A//gu.qq.com/sh600291/gp/jbnb/nos& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&gu.qq.com/sh600291/gp/j&/span&&span class=&invisible&&bnb/nos&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&敲入股票代码或者简写,就可以下载PDF格式的年报。&/p&&p&&b&二、数字版报表下载方式&/b&&/p&&p&通过上文的方式下载的年报,动辄一二百页,对于深度分析某个公司基本面是有帮助的,但很多时候我们只是想了解一下连续几年来的某个项目变动情况,F10里不全,PDF一个个看起来会累瞎眼,那怎么办呢?&/p&&p&有两种方式,一种是高昂的国泰安数据库、Wind客户端等专业软件,内置了年报资料,另一种是一些免费的网站,提供了Excel格式的下载链接。&/p&&p&比如网易财经。&/p&&p&&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zcfzb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/zcfzb_&/span&&span class=&ellipsis&&&/span&&/a&600001.html (股票代码为600001的资产负债表)&/p&&p&&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zcfzb_600001.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&http://quotes.money.163.com/service/lrb_600001.html&/a& (股票代码为600001的利润表)&/p&&p&&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zcfzb_600001.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&http://quotes.money.163.com/service/xjllb_600001.html&/a& (股票代码为600001的现金流量表)&/p&&p&下载的都是格式为csv的Excel表格,为该公司上市以来所有报表。替换掉代码即可下载你想要的公司的报表。&/p&&p&&br&&/p&&p&报表格式如下:&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-703ece5e63c0bdde4cc95d_b.png& data-rawwidth=&1049& data-rawheight=&682& class=&origin_image zh-lightbox-thumb& width=&1049& data-original=&https://pic2.zhimg.com/v2-703ece5e63c0bdde4cc95d_r.jpg&&&/figure&&p&可见利用这些数据进行历年分析是非常简单的。&/p&&p&&b&三、一点点编程代码,批量下载和处理&/b&&/p&&p&对于财经数据分析,Python提供了非常友好的处理模式,不过因为我当时在学Ruby,就写了一段Ruby代码下载。&/p&&p&作为初学者,很多代码优化学得不好,在编程高手们面前,这段代码有点献丑了。不过幸亏我脸皮厚,既然许多朋友咨询,我就恬不知耻的放上来了。&/p&&p&&br&&/p&&blockquote&# -*- coding: UTF-8 -*-&br&require 'rubygems'&br&require 'hpricot'&br&require 'open-uri'&br&################################本程序实现财务指定股票上市以来全部财务报表的下载&br&x = 0&br&&br&#获取股票列表文件stocklist.txt的总行数&br&def wc(filename)&br&$nline = $nword = $nchar = 0 #$符号表示全局变量,普通变量不在def外起作用&br&&a href=&//link.zhihu.com/?target=http%3A//file.open/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&File.open&/a&(filename) do |io|&br&io.each_line do |line|&br&words = line.split(/\s+/).reject{|w| w.empty? }&br&#本例中使用了split方法分割单词,当行首有空白字符时,split方法的执行结果中会产生空白字符串,因此我们&br&#会删除该空白字符串。&br&$nline += 1&br&$nword += words.length&br&$nchar += line.length&br&end&br&end&br&#puts &文件的行数为:#{$nline}\n文件的单词数为:#{$nword}\n文件的字符数为:#{$nchar}&&br&puts &股票池股票数:#{$nword}\n&&br&&br&end&br&wc(&d:/rb/stock/downreports/stocklist.txt&)&br&#puts $nword&br&&br&#循环开始&br&&br&while x &= $nword - 1&br&&br&#puts &轮询中:&&br&&br&stock_lines = File.readlines(&d:/rb/stock/downreports/stocklist.txt&); &br&&br&&br&s_code = stock_lines[x]&br&scode = s_code.chomp # chomp用来删除文本里带过来的换行符&br&&br&&br&puts &=====================&&br&puts &正在下载#{scode}的资产负债表,共计#{$nword}只,当前第#{x}只。&&br&&br&#确定csv文件命名规则&br&file1_path = &d:\\stock\\zcfzb\\&&br&file1_name = scode + &zcfzb.csv&&br&file1_name_path = file1_path + file1_name&br&&br&#将网易财经接口的数据保存为csv文件&br&&a href=&//link.zhihu.com/?target=http%3A//file.open/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&File.open&/a&(file1_name_path, 'wb') {|f| f.write(open('&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zcfzb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/zcfzb_&/span&&span class=&ellipsis&&&/span&&/a&' + &#{scode}&+'.html') {|f1| &a href=&//link.zhihu.com/?target=http%3A//f1.read/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&f1.read&/a&})}&br&&br&#防止接口调用过频被踢,暂停3秒&br&sleep(3)&br&&br&puts &资产负债表下载完毕&&br&&br&puts &=====================&&br&puts &正在下载#{scode}的利润表&&br&&br&#确定csv文件命名规则&br&file2_path = &d:\\stock\\lrb\\&&br&file2_name = scode + &lrb.csv&&br&file2_name_path = file2_path + file2_name&br&&br&#将网易财经接口的数据保存为csv文件&br&&a href=&//link.zhihu.com/?target=http%3A//file.open/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&File.open&/a&(file2_name_path, 'wb') {|f| f.write(open('&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/lrb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/lrb_&/span&&span class=&ellipsis&&&/span&&/a&' + &#{scode}&+'.html') {|f1| &a href=&//link.zhihu.com/?target=http%3A//f1.read/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&f1.read&/a&})}&br&&br&#防止接口调用过频被踢,暂停3秒&br&sleep(3)&br&&br&puts &利润表下载完毕&&br&&br&puts &=====================&&br&puts &正在下载#{scode}的现金流量表&&br&&br&#确定csv文件命名规则&br&file3_path = &d:\\stock\\xjllb\\&&br&file3_name = scode + &xjllb.csv&&br&file3_name_path = file3_path + file3_name&br&&br&#将网易财经接口的数据保存为csv文件&br&&a href=&//link.zhihu.com/?target=http%3A//file.open/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&File.open&/a&(file3_name_path, 'wb') {|f| f.write(open('&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/xjllb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/xjllb_&/span&&span class=&ellipsis&&&/span&&/a&' + &#{scode}&+'.html') {|f1| &a href=&//link.zhihu.com/?target=http%3A//f1.read/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&f1.read&/a&})}&br&&br&#防止接口调用过频被踢,暂停3秒&br&sleep(3)&br&&br&&br&puts &现金流量表下载完毕&&br&&br&puts &=====================&&br&puts &正在下载#{scode}的主要财务指标表&&br&&br&#确定csv文件命名规则&br&file4_path = &d:\\stock\\zycwzb\\&&br&file4_name = scode + &zycwzb.csv&&br&file4_name_path = file4_path + file4_name&br&&br&#将网易财经接口的数据保存为csv文件&br&&a href=&//link.zhihu.com/?target=http%3A//file.open/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&File.open&/a&(file4_name_path, 'wb') {|f| f.write(open('&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zycwzb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/zycwzb_&/span&&span class=&ellipsis&&&/span&&/a&' + &#{scode}&+'.html') {|f1| &a href=&//link.zhihu.com/?target=http%3A//f1.read/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&f1.read&/a&})}&br&&br&#防止接口调用过频被踢,暂停3秒&br&sleep(3)&br&&br&puts &主要财务指标表下载完毕&&br&x = x + 1&br&end&/blockquote&&p&本段代码的核心就是这一行了:&/p&&p&f.write(open('&a href=&//link.zhihu.com/?target=http%3A//quotes.money.163.com/service/zcfzb_& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&quotes.money.163.com/se&/span&&span class=&invisible&&rvice/zcfzb_&/span&&span class=&ellipsis&&&/span&&/a&' + &#{scode}&+'.html') {|f1| &a href=&//link.zhihu.com/?target=http%3A//f1.read/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&f1.read&/a&})}&/p&&p&学过一丁点代码的,应该一看就明白了。此处虽然用的Ruby,你换Python也很容易。&/p&&p&下载完毕后,还是很壮观的:&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-f72a42eae468_b.png& data-rawwidth=&1108& data-rawheight=&618& class=&origin_image zh-lightbox-thumb& width=&1108& data-original=&https://pic1.zhimg.com/v2-f72a42eae468_r.jpg&&&/figure&&p&有了这些基础数据,你就可以随意分析任意上市公司的历年财报了。&/p&&p&和国泰安数据库、Wind数据相比,起码省了几万块,还不赶快去加个鸡腿?&/p&
其实上市公司的年报都是免费的,也有很多网站进行了整理,尤其是对于报表,可以批量获取。一、完整版年报获取方式通常上市公司会在每年的4月份左右发布上年年报,在该公司的网站上会有下载链接,这是最权威的年报获取手段。比如安琪酵母: 打开其官方网站,…
&figure&&img src=&https://pic1.zhimg.com/v2-a7ec4abcd721283c_b.jpg& data-rawwidth=&1406& data-rawheight=&781& class=&origin_image zh-lightbox-thumb& width=&1406& data-original=&https://pic1.zhimg.com/v2-a7ec4abcd721283c_r.jpg&&&/figure&&p&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-2ca988a06c4d78e5fda61c_b.jpg& data-rawwidth=&1406& data-rawheight=&781& class=&origin_image zh-lightbox-thumb& width=&1406& data-original=&https://pic4.zhimg.com/v2-2ca988a06c4d78e5fda61c_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&速读版&/b&&/p&&ol&&li&你的 PPT 可能存在重大安全隐患&/li&&li&数据&图表粘贴是一样的吗?&br&&/li&&li&链接 & 嵌入对象有什么区别&/li&&li&将整个 Excel 链接到 PPT 中&br&&/li&&li&将 Excel 中的部分数据链接到 PPT 中&br&&/li&&li&自动更新和手动更新链接对象&/li&&li&链接 excel 链接丢失怎么补救&/li&&/ol&&p&&br&&/p&&p&&b&你的 PPT 可能存在重大信息安全安全隐患&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-1a805c808cec5ae4cf8e61_b.jpg& data-rawwidth=&1126& data-rawheight=&1125& class=&origin_image zh-lightbox-thumb& width=&1126& data-original=&https://pic3.zhimg.com/v2-1a805c808cec5ae4cf8e61_r.jpg&&&/figure&&p&&br&&/p&&p&听起来可能有点不可思议,PPT 怎么可以出什么信息安全问题?&/p&&p&不要着急,我们先来一个案例。&/p&&p&这是一个世界 500 强企业的真实案例,暴露出来的问题真的让对方感到不寒而栗。&/p&&p&&br&&/p&&p&先来看看这份 PPT ,文件大小 65 MB 除了体积大了一点,没有什么不妥。&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-ce8eabebcc8e3e_b.jpg& data-rawwidth=&1476& data-rawheight=&615& class=&origin_image zh-lightbox-thumb& width=&1476& data-original=&https://pic2.zhimg.com/v2-ce8eabebcc8e3e_r.jpg&&&/figure&&p&&br&&/p&&p&打开 PPT ,&b&只有图表,连一张图片都没有&/b&,怎么可能这么大!&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-775ae0d9bec9b1ed61dff285949ffdda_b.jpg& data-rawwidth=&1773& data-rawheight=&751& class=&origin_image zh-lightbox-thumb& width=&1773& data-original=&https://pic2.zhimg.com/v2-775ae0d9bec9b1ed61dff285949ffdda_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&那么会不会是版式过多导致的呢?毕竟之前可是亲眼见到过 1 个 PPT 里面居然后 &b&16115&/b& 个版式的惊人存在!&/p&&p&&b&还没来的及看的小伙伴可以看这里&/b&:&a href=&https://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzIxMjQxMTUwMQ%3D%3D%26mid%3D%26idx%3D2%26sn%3Dd7af0141e6dcdd3c9a4d8%26chksm%3D0ba6a55cf5e9d7f8a1d67aefaee3c8ead4b1a791cefc%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&天哪,这个PPT里“藏”了16115个版式!!&/a&&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-62db9cfc3ecfae_b.jpg& data-rawwidth=&1800& data-rawheight=&1012& class=&origin_image zh-lightbox-thumb& width=&1800& data-original=&https://pic3.zhimg.com/v2-62db9cfc3ecfae_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&打开母版视图,发现母版一共&b&只有 11 页&/b&,非常正常没有任何异样。&/p&&p&最后的最后,我们将这份 PPT 文档的所有元素提取了出来,结果让所有人都惊呆了!&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-e199c0c881fe6ff74b00daf61b5bc8b7_b.jpg& data-rawwidth=&756& data-rawheight=&470& data-thumbnail=&https://pic1.zhimg.com/v2-e199c0c881fe6ff74b00daf61b5bc8b7_b.jpg& class=&origin_image zh-lightbox-thumb& width=&756& data-original=&https://pic1.zhimg.com/v2-e199c0c881fe6ff74b00daf61b5bc8b7_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&提取方法:&/b&&/p&&p&方法①:使用 7-Zip 解压软件直接「提取到当前位置」(或其他目录)&/p&&p&方法②:压缩成 .Zip 格式,然后解压到指定目录。&/p&&p&&b&想要了解更加详细的可以点击文章&/b&:&a href=&https://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzIxMjQxMTUwMQ%3D%3D%26mid%3D%26idx%3D5%26sn%3Dd7c6b956b06b2b465101cbd8263b62cc%26chksm%3Dbbd2cdbb4ae387cc43b707dd0ddfb6a6efc2bc0c4757%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&PPT如何压缩图片&一键提取所有素材?&/a&&/p&&p&&br&&/p&&p&在解压后的文件中,我们看见有一个 「 &b&embeddings (嵌入)&/b&」文件夹。&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-306fe9d79_b.jpg& data-rawwidth=&1664& data-rawheight=&625& class=&origin_image zh-lightbox-thumb& width=&1664& data-original=&https://pic1.zhimg.com/v2-306fe9d79_r.jpg&&&/figure&&p&&br&&/p&&p&鼠标悬停显示文件大小为 64.5MB !&/p&&p&打开属性查看具体参数,一共有 31 个文件!而且全部都是 Excel 格式的!&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-141779ffd0ec22b4dd01f788d57231d1_b.jpg& data-rawwidth=&1820& data-rawheight=&1120& class=&origin_image zh-lightbox-thumb& width=&1820& data-original=&https://pic1.zhimg.com/v2-141779ffd0ec22b4dd01f788d57231d1_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&随机打开一个 Excel 文件,发现 Excel 文件中不仅仅是插入到 PPT 中的图表,&i&所有没有在 PPT 中显示的隐藏数据全部一览无余!&/i&&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-ca0b379a8a4b6eb7725d_b.jpg& data-rawwidth=&1763& data-rawheight=&1055& class=&origin_image zh-lightbox-thumb& width=&1763& data-original=&https://pic1.zhimg.com/v2-ca0b379a8a4b6eb7725d_r.jpg&&&/figure&&p&&br&&/p&&p&&b&试想,作为一家世界 500 强的公司,如果这份 PPT 对外流出,其中的 Excel 数据资料被有心人完整提取并泄露,带来的损失可能是难以估算!&/b& 还有一些比如像咨询公司,大数据企业等对这一块也是尤为需要重视。&/p&&p&&br&&/p&&p&&br&&/p&&p&&b&数据VS图表粘贴对比&/b&&/p&&p&不知道有多少小伙伴注意到,当我们将 Excel 复制到 PowerPoint 中时,「图表」「数据」之间是有差异的。&/p&&p&先来看看二者的粘贴选项图标对比:&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-7e057f6b06aafa145e9bc55beca469d9_b.jpg& data-rawwidth=&1080& data-rawheight=&608& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/v2-7e057f6b06aafa145e9bc55beca469d9_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&① 复制 Excel 数据&/b&&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-cc6a9bd4ce1ca724eb290a_b.jpg& data-rawwidth=&847& data-rawheight=&544& data-thumbnail=&https://pic4.zhimg.com/v2-cc6a9bd4ce1ca724eb290a_b.jpg& class=&origin_image zh-lightbox-thumb& width=&847& data-original=&https://pic4.zhimg.com/v2-cc6a9bd4ce1ca724eb290a_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&操作:&/b&&/p&&p&在 Excel 中选中数据,「 Ctrl + C 」复制&/p&&p&「 Ctrl + V 」粘贴入 PPT&/p&&p&右下方会出现 5 个粘贴选项,选择需要的粘贴格式。&/p&&p&直接粘贴的话会默认「&b&使用目标样式&/b&」,如 GIF 中演示。&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-d534cabdabaa518c7d8c8259_b.jpg& data-rawwidth=&1654& data-rawheight=&967& class=&origin_image zh-lightbox-thumb& width=&1654& data-original=&https://pic1.zhimg.com/v2-d534cabdabaa518c7d8c8259_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&具体:&/b&&/p&&ul&&li&&b&使用目标样式&/b&(默认)将更新的数据格式,以便匹配目标样式。&/li&&li&&b&保留源格式&/b& 将保持完全按原样设置格式的数据。&/li&&li&&b&嵌入&/b& Excel 中的数据表被一次性拷贝到 PPT 中,可以在 PPT 中对图表数据进行再编辑&/li&&li&&b&图片&/b& 将数据粘贴为图片。不能编辑或更新数据。&/li&&li&&b&只保留文本&/b&将数据粘贴为文本。&/li&&/ul&&p&&br&&/p&&p&&b&② 复制 Excel 图表&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-7cf6dfa3b83ccc657db2a51_b.jpg& data-rawwidth=&847& data-rawheight=&544& data-thumbnail=&https://pic3.zhimg.com/v2-7cf6dfa3b83ccc657db2a51_b.jpg& class=&origin_image zh-lightbox-thumb& width=&847& data-original=&https://pic3.zhimg.com/v2-7cf6dfa3b83ccc657db2a51_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&复制 Excel 图表与复制 Excel 数据的操作一样,在 Excel 中选中数据,「 Ctrl + C 」复制「 Ctrl + V 」粘贴入 PPT 选择需要的粘贴格式。&br&&/p&&p&如果只看粘贴的效果,似乎都一样没什么区别,但我们肯定不能只看表面:&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-bbc226c5cb42aa2e2396_b.jpg& data-rawwidth=&1080& data-rawheight=&608& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/v2-bbc226c5cb42aa2e2396_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&嵌入VS链接对象的区别&/b&&/p&&p&区别:在将数据放入目标文件后,&b&数据存储位置不同,数据更新方式不同&/b&。&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-e58f7fa5c61cfba9fe5045_b.jpg& data-rawwidth=&1800& data-rawheight=&1012& class=&origin_image zh-lightbox-thumb& width=&1800& data-original=&https://pic4.zhimg.com/v2-e58f7fa5c61cfba9fe5045_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&例如&/p&&p&假设年终汇报时要将 Excel 的数据报告插入到 PowerPoint 中,这时通常会选择以下 2 种方法:&/p&&p&&b&① 嵌入&/b&:如果将幻灯片嵌入报告中,报告包含的就是数据的静态副本。一次性将文件拷贝入 PPT ,可以在 PPT 中对数据进行再次编辑。&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-180ba5cd17a296c587c4182_b.jpg& data-rawwidth=&1080& data-rawheight=&608& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/v2-180ba5cd17a296c587c4182_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&② &b&链接&/b&:如果将 excel 链接到幻灯片,每当源文件更新时,报告中的数据就会相应更新。【&i&前提&/i&:文件的「文件名」和文件「保存路径」不变】&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-0efbf00ed72_b.jpg& data-rawwidth=&1080& data-rawheight=&608& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/v2-0efbf00ed72_r.jpg&&&/figure&&p&&br&&/p&&p&由于一旦使用「嵌入」就会将整个文件拷贝入 PPT ,而 PPT 文件本身也是一个压缩文件,要将其中的文件提取出来可以说是轻而易举,所以就出现了上文的 &b&1 个 PPT 中提取出了 31 个完整的 Excel 表&/b&这种情况。&br&&/p&&p&对如何提取 PPT 中素材感兴趣的小伙伴可以看这里:&a href=&https://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzIxMjQxMTUwMQ%3D%3D%26mid%3D%26idx%3D5%26sn%3Dd7c6b956b06b2b465101cbd8263b62cc%26chksm%3Dbbd2cdbb4ae387cc43b707dd0ddfb6a6efc2bc0c4757%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&PPT如何压缩图片&一键提取所有素材?&/a&&/p&&p&&br&&/p&&p&&b&小结&/b&&/p&&ol&&li&链接对象时,如果修改源文件,则会更新信息。链接数据存储在源文件中。Word 文件或目标文件只存储源文件的位置,并显示链接数据。如果担心文件的大小,以及数据的安全性问题,可使用链接对象。&/li&&li&如果要包含单独维护的信息(例如由其他部门收集的数据),并且需要让该信息在 PowerPoint 文档中保持最新,那么也适合使用链接。&/li&&li&嵌入 PowerPoint 对象时,如果修改源 Excel 文件,PowerPoint 文件中的信息不会相应更改。嵌入的对象会成为 PowerPoint 文件的一部分,并且在插入后就不再是源文件的组成部分。&/li&&li&由于信息完全包含在一个 Excel 文档中,如果不希望该信息体现源文件中的更改,或者不希望文档收件人关注更新链接信息,则嵌入功能非常有用。&/li&&/ol&&p&&br&&/p&&p&&b&将整个 Excel 链接到 PPT 中&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-205b6c79cf2ffea2d8bbb49_b.jpg& data-rawwidth=&1155& data-rawheight=&768& data-thumbnail=&https://pic3.zhimg.com/v2-205b6c79cf2ffea2d8bbb49_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1155& data-original=&https://pic3.zhimg.com/v2-205b6c79cf2ffea2d8bbb49_r.jpg&&&/figure&&p&&br&&/p&&p&&b&步骤&/b&&/p&&p&1.点击“&b&插入&/b&”选项卡上“&b&对象&/b&”。&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-13e994b5a35608bdff58b989aca55c03_b.jpg& data-rawwidth=&745& data-rawheight=&200& class=&origin_image zh-lightbox-thumb& width=&745& data-original=&https://pic1.zhimg.com/v2-13e994b5a35608bdff58b989aca55c03_r.jpg&&&/figure&&p&&br&&/p&&p&2.在“&b&插入对象&/b&”对话框中,选择“&b&由文件创建&/b&”。&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-d768dab04f67dc4fc4916d49_b.jpg& data-rawwidth=&1063& data-rawheight=&674& class=&origin_image zh-lightbox-thumb& width=&1063& data-original=&https://pic4.zhimg.com/v2-d768dab04f67dc4fc4916d49_r.jpg&&&/figure&&p&&br&&/p&&p&3.单击或点击“&b&浏览&/b&”,然后在“&b&浏览&/b&”框中找到包含要插入和链接到的数据的 Excel 工作簿。&/p&&p&&br&&/p&&p&4.关闭“&b&插入对象&/b&”框之前,选择“&b&链接&/b&”,然后单击“&b&确定&/b&”。&/p&&p&&br&&/p&&p&&b&重要:&/b& 演示文稿中的链接对象显示来自链接的 Excel 工作簿中活动、顶部电子表格中的所有数据。当保存 Excel 工作簿时,需确保①原 Excel 文件名不能改变;②原 Excel 文件路径不能改变。&/p&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-164ebfb50bacb7eeec84_b.jpg& data-rawwidth=&1080& data-rawheight=&608& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/v2-164ebfb50bacb7eeec84_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&将 Excel 中的部分数据链接到 PPT 中&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-cebefd4df380ca_b.jpg& data-rawwidth=&1523& data-rawheight=&768& data-thumbnail=&https://pic3.zhimg.com/v2-cebefd4df380ca_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1523& data-original=&https://pic3.zhimg.com/v2-cebefd4df380ca_r.jpg&&&/figure&&p&&br&&/p&&p&&b&步骤&/b&&/p&&ol&&li&打开目标 Excel 工作簿,「 Ctrl + C 」复制目标数据。&/li&&li&打开 PPT 页面,在“&b&开始&/b&”选项卡上,单击“&b&粘贴&/b&”下的箭头,然后选择“&b&选择性粘贴&/b&”。&/li&&/ol&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-eaf0d279f8c47_b.jpg& data-rawwidth=&980& data-rawheight=&673& class=&origin_image zh-lightbox-thumb& width=&980& data-original=&https://pic1.zhimg.com/v2-eaf0d279f8c47_r.jpg&&&/figure&&p&3.
在“&b&选择性粘贴&/b&”框中,单击“&b&粘贴链接&/b&”,然后在“&b&方式&/b&”下,选择“&b&Microsoft Excel 工作表对象&/b&”。&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-ba3a02b1bcdc1acd3baa9bb1_b.jpg& data-rawwidth=&1063& data-rawheight=&674& class=&origin_image zh-lightbox-thumb& width=&1063& data-original=&https://pic4.zhimg.com/v2-ba3a02b1bcdc1acd3baa9bb1_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&&b&如何更新链接对象&/b&&/p&&p&&b&自动更新&/b&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-e982b794daf46ebe404c4_b.jpg& data-rawwidth=&1611& data-rawheight=&672& data-thumbnail=&https://pic2.zhimg.com/v2-e982b794daf46ebe404c4_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1611& data-original=&https://pic2.zhimg.com/v2-e982b794daf46ebe404c4_r.jpg&&&/figure&&p&&br&&/p&&p&默认情况下,会自动更新链接的对象。这意味着,每次更新 Excel 源文件,打开 PPT 后 PPT 中的信息也会自动更新。&/p&&p&&br&&/p&&p&&b&手动更新&/b&&/p&&p&手动更新只适用于使用「链接数据」拷贝到 PPT 中的图表,当原Excel文件数据改动后,可以在PPT中使用“刷新数据”功能来保持数据同步。&/p&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-476ae66b54a27355b93cef237a7b23ea_b.jpg& data-rawwidth=&1004& data-rawheight=&425& class=&origin_image zh-lightbox-thumb& width=&1004& data-original=&https://pic3.zhimg.com/v2-476ae66b54a27355b93cef237a7b23ea_r.jpg&&&/figure&&p&&br&&/p&&p&&b&使用前提&/b&:需确保①原 Excel 文件名不能改变;②原 Excel 文件路径不能改变。&/p&&p&&br&&/p&&p&&b&更新或删除指向 Excel 工作簿的断开的链接&/b&&/p&&p&将 Excel 链接到 PPT 中很多优点,但有的时候我们也会遇到一些问题,比如文件名称和保存路径发生了变化。&/p&&p&这个时候打开 PPT 想要编辑其中的数据会弹出错误提示类似「&b&抱歉,无法找到所有链接的文件。您可以通过单击“文件”选项卡,然后单击“信息”选项卡上的“编辑指向文件的链接”来重新建立链接。&/b&」&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-908b3a551521ecd94c55131dbf692a22_b.jpg& data-rawwidth=&780& data-rawheight=&128& class=&origin_image zh-lightbox-thumb& width=&780& data-original=&https://pic2.zhimg.com/v2-908b3a551521ecd94c55131dbf692a22_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&点击图表发现提示「&b&链接的文件无法使用且无法更新&/b&」&/p&&p&&br&&/p&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-a8c69ee5c79d8a309eafe460b5d7e5f3_b.jpg& data-rawwidth=&1430& data-rawheight=&821& class=&origin_image zh-lightbox-thumb& width=&1430& data-original=&https://pic3.zhimg.com/v2-a8c69ee5c79d8a309eafe460b5d7e5f3_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&这个时候我们该怎么办?有没有方法能够忘记这份数据?&/p&&p&不要着急,还是可以救一救的。&/p&&p&&br&&/p&&p&&b&步骤&/b&&/p&&ol&&li&在「文件」选项卡中,点击「信息」,在右下角的「相关文档」中,点击「编辑指向文件的链接」。&/li&&/ol&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-f6f0abb35b5f3ecbe9ce_b.jpg& data-rawwidth=&768& data-rawheight=&461& class=&origin_image zh-lightbox-thumb& width=&768& data-original=&https://pic1.zhimg.com/v2-f6f0abb35b5f3ecbe9ce_r.jpg&&&/figure&&p&&br&&/p&&p&注意:如果看不到相关文档部分,请确保已保存演示文稿。&/p&&p&&br&&/p&&p&&b&情况一 知道 Excel 文件的新位置&/b&&/p&&ol&&li&点击“更改源文件”,转到 Excel 工作簿的新位置,然后点击“打开”。 在“链接”列表中,点击击指向链接工作表的正确路径,然后“立即更新”。&/li&&/ol&&p&【 PS :文件保存路径在服务器中同样有效。】&/p&&p&&br&&/p&&p&&b&情况二
不确定Excel 文件信息或者已经丢失&/b&&/p&&p&2. 点击“断开链接”。 此时图表仍然会显示在幻灯片中,但其中的数据不会再随着原始工作表的变化而更新。&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-4b6f183c8e65b45a117ee90b0ea4de15_b.jpg& data-rawwidth=&1086& data-rawheight=&615& class=&origin_image zh-lightbox-thumb& width=&1086& data-original=&https://pic2.zhimg.com/v2-4b6f183c8e65b45a117ee90b0ea4de15_r.jpg&&&/figure&&p&&br&&/p&&p&&b&GIF 演示&/b&&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-c1be3afd45f57debafbacc_b.jpg& data-rawwidth=&1102& data-rawheight=&746& data-thumbnail=&https://pic4.zhimg.com/v2-c1be3afd45f57debafbacc_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1102& data-original=&https://pic4.zhimg.com/v2-c1be3afd45f57debafbacc_r.jpg&&&/figure&&p&&br&&/p&&p&看完了也记得提醒朋友们多多注意信息安全哟~&/p&&p&&b&本文作者:哥布林&/b&&/p&&ul&&li&iSlide 项目团队核心成员&/li&&li&iSlide 官方帮助教程主笔&/li&&li&前·锐普PPT企业内训经理&/li&&/ul&&p&原文发表于:&a href=&https://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s/UVBEGuTW_AeAgg_3UAN5vw& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&你的PPT可能存在重大信息安全隐患!&/a&&/p&&p&更多PPT“一键化”设计资讯:&a href=&https://link.zhihu.com/?target=https%3A//www.islide.cc/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&www.islide.cc&/a&&/p&&p&iSlide——让PPT设计简单起来!&/p&&p&欢迎关注 iSlide 官方微信号:iSlidePPT&/p&
速读版你的 PPT 可能存在重大安全隐患数据&图表粘贴是一样的吗? 链接 & 嵌入对象有什么区别将整个 Excel 链接到 PPT 中 将 Excel 中的部分数据链接到 PPT 中 自动更新和手动更新链接对象链接 excel 链接丢失怎么补救 你的 PPT 可能存在重大信息安全安全隐患…
&figure&&img src=&https://pic3.zhimg.com/v2-fa7eebfd46fa217defd5a_b.jpg& data-rawwidth=&900& data-rawheight=&500& class=&origin_image zh-lightbox-thumb& width=&900& data-original=&https://pic3.zhimg.com/v2-fa7eebfd46fa217defd5a_r.jpg&&&/figure&&p&&/p&&b&&figure&&img src=&https://pic2.zhimg.com/v2-e5bed3d95aefb9_b.jpg& data-rawwidth=&640& data-rawheight=&100& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic2.zhimg.com/v2-e5bed3d95aefb9_r.jpg&&&/figure&&/b&&p&看到每一个流失的用户离开的原因,就像失恋后的自我反省&/p&&p&漏斗分析最大的价值是什么呢?在于拆开了转化的黑盒子。&/p&&p&简单的漏斗工具,只能告诉你用户在哪一步流失了。有哪些行为路径,每个路径的用户占比,你不知道;用户流失原因,也不知道;怎么提升,还是不知道。&/p&&p&那么如何才能通过漏斗工具提升转化率呢?&/p&&p&GrowingIO 技能卡片第 3 期,如何利用真正的漏斗工具提升转化率。&/p&&p&1. 梳理业务需求,确定核心转化路径;&/p&&p&2. 多维度深入分析流失原因,优化迭代。&/p&&h2&&b&一、确定转化路径&/b&&/h2&&p&拆开转化黑盒子的第一步,是明确用户在产品内的转化路径。而真实的情况是,用户在产品内的转化路径可能有很多,这时就需要根据业务需求,确定核心转化路径。用户的转化路径,一般有以下两种情况:&/p&&p&&b&1. 清楚且单一的转化路径&/b&&/p&&p&有些转化路径是较为清楚且单一的,比如注册流,电商产品的付款流程等等。对于这种转化路径,你只需要在漏斗工具中选择相应的转化步骤即可。&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-70acc0df11dec4f648ad24_b.jpg& data-rawwidth=&905& data-rawheight=&607& class=&origin_image zh-lightbox-thumb& width=&905& data-original=&https://pic2.zhimg.com/v2-70acc0df11dec4f648ad24_r.jpg&&&/figure&&p&支持 10 步转化步骤&/p&&figure&&img src=&https://pic4.zhimg.com/v2-97dfa91a5ace_b.jpg& data-rawwidth=&800& data-rawheight=&624& class=&origin_image zh-lightbox-thumb& width=&800& data-original=&https://pic4.zhimg.com/v2-97dfa91a5ace_r.jpg&&&/figure&&p&当你的鼠标放在相应事件上,还可以看到该事件的定义和过去7天的数据情况。&/p&&figure&&img src=&https://pic4.zhimg.com/v2-853e995a2a6c7cb5ea5e9_b.jpg& data-rawwidth=&703& data-rawheight=&494& class=&origin_image zh-lightbox-thumb& width=&703& data-original=&https://pic4.zhimg.com/v2-853e995a2a6c7cb5ea5e9_r.jpg&&&/figure&&p&对于不同的用户,转化目标也不一样,漏斗工具默认全部访问用户,但你可以根据自己的需求选择特定的目标用户。&/p&&p&&b&2. 其他路径&/b&&/p&&p&并不是所有的用户转化路径都这样清楚且单一,用户在产品内的行为轨迹常常出乎产品/运营的意料。真实访问过程中用户常常会有很多的回环,以及频繁的交互操作(例如:频繁的点击)。&/p&&p&面对这种情况,你需要强大的「智能路径」功能,过滤掉无效的回环和频繁的点击,只留下关键的节点,你可以直接选择最终转化目标,即可出现所有转化路径和它们相应的占比。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-c862c34e903cd6f6f94ae_b.jpg& data-rawwidth=&1999& data-rawheight=&1247& class=&origin_image zh-lightbox-thumb& width=&1999& data-original=&https://pic1.zhimg.com/v2-c862c34e903cd6f6f94ae_r.jpg&&&/figure&&p&这个功能真实地还原了用户在产品中的关键节点,改变了先预设结果-埋点-采集统计数据-分析数据,由经验和直觉驱动的时代;而进入到根据分析需求查看数据和路径-分析数据-进一步优化产品的数据驱动时代。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-9bfcb8d9ddcc_b.jpg& data-rawwidth=&1999& data-rawheight=&1939& class=&origin_image zh-lightbox-thumb& width=&1999& data-original=&https://pic3.zhimg.com/v2-9bfcb8d9ddcc_r.jpg&&&/figure&&p&你可以选择你想进一步分析,或者占比最高的转化路径,将其保存为漏斗,就可以直接分析啦。&/p&&h2&二、原因分析&/h2&&p&用户在转化的每一个节点都有可能流失,但是流失的原因是什么?我们能否通过一款强大的漏斗工具进行下钻分析,找到问题和优化的方向?&/p&&p&答案是,能&/p&&p&&b&1. 维度对比分析&/b&&/p&&p&影响转化的原因多种多样,有可能是不同浏览器的适配程度问题,有可能是各个地区的运营活动影响,有可能是因为不同渠道进来的用户质量不一。我们需要通过维度的对比分析,找到用户流失原因,才能找到优化的方向。&/p&&p&真正厉害的漏斗是支持多维度的下钻对比的。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-73a1f5882a08acca2ddf940e34dbb486_b.jpg& data-rawwidth=&1299& data-rawheight=&684& data-thumbnail=&https://pic3.zhimg.com/v2-73a1f5882a08acca2ddf940e34dbb486_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1299& data-original=&https://pic3.zhimg.com/v2-73a1f5882a08acca2ddf940e34dbb486_r.jpg&&&/figure&&p&你可以点击不同维度下所有的选择,进行不同的对比&/p&&p&&b&举个真实的例子&/b&&/p&&p&某电商网站使用 GrowingIO漏斗衡量交易转化时发现,APP上的用户量高于网站,但转化率却低于网页端。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-b87aab7fdb90ece_b.jpg& data-rawwidth=&1154& data-rawheight=&650& class=&origin_image zh-lightbox-thumb& width=&1154& data-original=&https://pic3.zhimg.com/v2-b87aab7fdb90ece_r.jpg&&&/figure&&p&具体步骤上可以看出,用户提交订单之后到支付环节的转化率明显低于网页端,值得注意的是,提交了订单的用户购买意愿非常强烈,是很有潜力唤回的一批用户。但是他们却选择了返回到上一步,而不是去支付。 对比网站和 APP 在支付页面的信息结构发现,APP上的支付页面缺少了订单商品的详细描述、收货人地址和联系方式等信息,导致很多用户返回到上一步确认,同时带给了用户犹豫,从而导致转化率下降。 于是,产品经理参考网站的信息结构,补充了详细信息,同时在支付环节进行流失用户召回。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-2ebb0d002ee0ff2ece03_b.jpg& data-rawwidth=&1196& data-rawheight=&678& class=&origin_image zh-lightbox-thumb& width=&1196& data-original=&https://pic3.zhimg.com/v2-2ebb0d002ee0ff2ece03_r.jpg&&&/figure&&p&从漏斗的趋势图中监测支付环节优化后的效果,APP端提交订单到支付环节的转化率明显提升,甚至略高于网站转化率,整体转化率也被拉高。同时,在漏斗中选择进行召回的用户作为目标用户,观测召回后的转化率变化,以此来评估本次唤回活动的效果。 类似转化问题,仅靠直觉是很难发现;它需要产品或者运营人员高度的数据敏锐感、娴熟的业务技能,这也是转化分析高级阶段的表现,发现问题后进行产品优化,然后回到漏斗中监控优化效果,产品在不断的迭代中,稳步增长。&/p&&p&&b&2. 用户分群对比分析&/b&&/p&&p&除了不同维度的细分对比,还可以有更进阶的操作。&/p&&p&对不同群体的用户做对比分析,不仅可以基于维度,还可以基于不同的用户行为。比如,30天内点击过2次A功能的用户,7 天内发过评论的用户等,以此为维度创建对比漏斗,可以下钻到更细致的地方,还可以很好地做优化测试。&/p&&p&举例来说,某电商平台尝试唤醒近期不活跃的用户,并将用户分成 2 组,其中 1 组发了满减优惠券,另外 1 组发了立减优惠券,想要 2 组领取了优惠券之后的转化情况;此时可以创建2个用户分群:『领取了满减券的用户』(2010人)和 『领取了立减券的用户』(1080人),在漏斗用户对比时选择这2个用户分群并调整时间范围到用户领取优惠券之后的一段时间,就可以对比2个不同用户分群的转化情况了。 &/p&&p&注:以上所有产品截图均来源于 &a href=&https://link.zhihu.com/?target=https%3A//accounts.growingio.com/signup%3Futm_source%3Dzhihu%26utm_medium%3Darticle%26utm_campaign%3Dqutm_content%3D170822-skillcard03-funnel%26utm_term%3Ddata-analyse& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&GrowingIO - 硅谷新一代用户行为数据分析工具&/a&。&/p&&p&欢迎各位有用户行为数据分析需求的朋友&a href=&https://link.zhihu.com/?target=https%3A//accounts.growingio.com/signup%3Futm_source%3Dzhihu%26utm_medium%3Darticle%26utm_campaign%3Dqutm_content%3D170822-skillcard03-funnel%26utm_term%3Ddata-analyse& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&免费试用&/a&。 &/p&
看到每一个流失的用户离开的原因,就像失恋后的自我反省漏斗分析最大的价值是什么呢?在于拆开了转化的黑盒子。简单的漏斗工具,只能告诉你用户在哪一步流失了。有哪些行为路径,每个路径的用户占比,你不知道;用户流失原因,也不知道;怎么提升,还是不知…
&figure&&img src=&https://pic1.zhimg.com/v2-7bf38d42a983f37dde8221_b.jpg& data-rawwidth=&1668& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1668& data-original=&https://pic1.zhimg.com/v2-7bf38d42a983f37dde8221_r.jpg&&&/figure&&p&今天和大家分享国外大牛绘制的Power BI 架构图 – 来自 sqldusty的Dustin Ryan大神。&/p&&p&直接上图吧:&/p&&p&&figure&&img src=&https://pic1.zhimg.com/v2-c3aeb3f1c7f87c0fb480_b.png& data-rawwidth=&2828& data-rawheight=&1831& class=&origin_image zh-lightbox-thumb& width=&2828& data-original=&https://pic1.zhimg.com/v2-c3aeb3f1c7f87c0fb480_r.jpg&&&/figure&&/p&&p&快看看你用的是哪种方式在使用Power BI?如果你正在学习Power BI, 或者需要和客户沟通Power BI 是如何工作的,可以非常方便地通过这张图解释。再次感谢Ryan的分享! &/p&&p&实际上,由于Power BI一直在很快的更新,这已经是Ryan的第三版架构图了。这一版最大的变化是增加了&b&Power BI Premium&/b&和&b&Power BI Embedded&/b&。 之前还有两版,我们看一下v2版本:&/p&&p&&figure&&img src=&https://pic4.zhimg.com/v2-0cefdeb4f4edeb_b.png& data-rawwidth=&3251& data-rawheight=&2121& class=&origin_image zh-lightbox-thumb& width=&3251& data-original=&https://pic4.zhimg.com/v2-0cefdeb4f4edeb_r.jpg&&&/figure&&/p&&br&&p&v2和v1版本的主要区别:&/p&&ul&&li&&p&发布PBID 和Excel 工作簿到SQL Server2016 Reporting Service&/p&&/li&&li&&p&发布Excel Workbook到Power BI 在线版&/p&&/li&&li&&p&在Excel中分析&/p&&/li&&li&&p&在Power BI APP中查看Reporting Services Mobile Reports&/p&&/li&&/ul&&p&下面是最原始的V1版本:&/p&&p&&figure&&img src=&https://pic1.zhimg.com/v2-17a77cf5c5cde72ab1f29b09bf0f0710_b.png& data-rawwidth=&3499& data-rawheight=&2266& class=&origin_image zh-lightbox-thumb& width=&3499& data-original=&https://pic1.zhimg.com/v2-17a77cf5c5cde72ab1f29b09bf0f0710_r.jpg&&&/figure&&/p&&p&通过不同版本的演变,我们也能看到Power BI 产品在迅速的更新中,每个月更新一次的速度,在微软的历史上应该是从来没有过的,这也让我们对Power BI 充满了更多期待!&/p&&p&关注公众号(PowerPivot工坊)并发送消息“&b&架构图&/b&”,可获得全部3个版本的架构图原图下载地址。&/p&&p&延伸阅读:&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3D5fdfebdd7ede9%26chksm%3Df3ff02c6cdc23b0adf99ef0d237b739a318abbdca549be26c91ba%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&一张图看懂微软PowerBI系列组件&/a& &/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3D7af5e401db30c64aa4b257c%26chksm%3Df3ff02d1cf062f9c989f7ae557ca344d90e259743cbf01bscene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&亮瞎双眼的PowerBI可视化图表&/a& &/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3Dbe33c8dafc5c9c2cchksm%3Df3ff00e6cc677a1e506d0b5e5b9ed05f8cb7e24b7dfb79efb2e7dc04e561918bff1%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&当Power BI 遇上欧冠决赛&/a& &/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3Dad9fb69cdeb067cea355c267%26chksm%3Df3ffbb29dad4fcf943f975dc2cc25bdd54615f%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&当Power BI遇上条形码&/a& &/p&&p&&a class=& wrap external& href=&http://link.zhihu.com/?target=https%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3D362d30dfcc3eb4b3a587d5%26chksm%3Df3ff01b4ceae19cea37a73ccb8aa24ec56%26mpshare%3D1%26scene%3D21%26srcid%3D0703Yafvn8CjAqu4FrgLMo6q%26pass_ticket%3D4LsctfLRMn9umt6FPyN4GVTaWAsmGfjB3FvkoMDlMhlAQE3x2N5zRfosvXJhHOls%23wechat_redirect& target=&_blank& rel=&nofollow noreferrer&&当Power BI遇上情人节&/a& &/p&&p&&a href=&http://link.zhihu.com/?target=https%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3D1e5777ddc0f0dchksm%3Df3ff01e6cefa29ef59ebaabe3b752c3eea40a913ddf0c7%26mpshare%3D1%26scene%3D21%26srcid%3DFmXUDZOYdSJh2aO%26pass_ticket%3D4LsctfLRMn9umt6FPyN4GVTaWAsmGfjB3FvkoMDlMhlAQE3x2N5zRfosvXJhHOls%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&当Power BI遇上元宵节&/a& &/p&&a href=&http://link.zhihu.com/?target=http%3A//mp.weixin.qq.com/s%3F__biz%3DMzI4NTEzNzQ2NQ%3D%3D%26mid%3D%26idx%3D1%26sn%3Dd6fdecb30df9fc98f8e647%26chksm%3Df3ff03f9c4888aefc792f25bff2f01e9ef341b99fd48d627ce47db1173dacb83094c%26scene%3D21%23wechat_redirect& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&当PowerBI遇上恐怖主义&/a&&p&-----------------------------------------------------------------------------------------------------------------------&br&&/p&&p& 如果您想深入学习微软Power BI,欢迎登录网易云课堂试听学习我们的“&a href=&http://link.zhihu.com/?target=http%3A//study.163.com/series/.htm& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&从Excel到Power BI数据分析可视化&/a&”系列课程。或者关注我们的公众号(PowerPivot工坊)后猛戳”在线学习” &/p&&p&&figure&&img src=&https://pic3.zhimg.com/v2-3a96c95e2d084e2fdc3e_b.jpg& data-rawwidth=&640& data-rawheight=&300& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic3.zhimg.com/v2-3a96c95e2d084e2fdc3e_r.jpg&&&/figure&&/p&
今天和大家分享国外大牛绘制的Power BI 架构图 – 来自 sqldusty的Dustin Ryan大神。直接上图吧:快看看你用的是哪种方式在使用Power BI?如果你正在学习Power BI, 或者需要和客户沟通Power BI 是如何工作的,可以非常方便地通过这张图解释。再次感谢Ryan的…
&p&把自己下沉到业务部门三个月,和业务小伙伴一起做做报表、搞搞活动、打打电话、背背KPI就好了呀。想要贯穿部门,就把所有部门的KPI都算自己头上嘛。&/p&&p&什么?你们每天做报表要两个小时?因为依旧要加工数据?&/p&&p&什么?你们90%的数据工作都是用Excel完成的?&/p&&p&什么?你们每天打客户电话都是盲打?没有筛选优质客户的依据?&/p&&p&什么?你们只能获得天维度的数据,做的运营效果得T+1后才能看到?&/p&&p&什么?你们推广的活动连效果都不监控?&/p&&p&什么?你们选择的那些文案、创意,其实自己也不知道靠谱与否?&/p&&p&什么?产品怎么又改功能了?这个功能根本没什么留存啊。&/p&&p&业务部门和数据部门不在同一个维度的,很多数据部门觉得很正常的东西,业务部门并无感知。&/p&&p&也许业务部门生来就觉得拎出一堆Excel做vlookup然后数据透视很正常,但是在数据部门眼中,这是可以用ETL+DW+BI自动化完成的工作。&/p&&p&也许业务部门觉得客户本来就应该一个个电话销售啊,但是在数据部门眼中,应该根据历

我要回帖

更多关于 欧冠联赛 的文章

 

随机推荐