Photoshop

主页

作者微博

Photoshop

https://www.weibo.com/vposy

百度网盘
https://pan.baidu.com/s/1cYdFbP2g5RSH6mC260U9-Q

OneDrive
http://t.cn/AiBsGngl

解压密码:@vposy

赢政天下 Adobe 2020 大师版

2019.11.9 v10.2#5

更新日志

更新 Adobe 2020 全系列
更新 Adobe Acrobat DC 2019.012.20049
更新 官方清理工具版本
更新 主页屏幕修复
修正2020 全系列离线闪退问题
大量其他的修正和调整

注意: 新版Photoshop 2020,当前尚未修复未登录状态使用主页屏幕,将会在未来版本修正。

版本语言

多国语言

集成的版本

Adobe Acrobat DC 2019 2019.012.20049
Adobe After Effects 2020 17.0.0.557
Adobe Animate 2020 20.0.0.17400
Adobe Audition 2020 13.0.0.519
Adobe Bridge 2020 10.0.0.124
Adobe Character Animator 2020 3.0.0.276
Adobe Dimension 3.0.0.1082
Adobe Dreamweaver 2020 20.0.0.15196
Adobe Illustrator 2020 24.0.0.330
Adobe InCopy 2020 15.0.0.155
Adobe InDesign 2020 15.0.0.155
Adobe Lightroom Classic 9.0.0.201910151439
Adobe Media Encoder 2020 14.0.0.556
Adobe Photoshop 2020 21.0.0.37
Adobe Prelude 2020 9.0.0.415
Adobe Premiere Pro 2020 14.0.0.572
Adobe XD 24.1.22

Adobe Creative Cloud Core 5.0.0.354
Adobe CoreSync 4.3.14.8
Adobe CCX Process 3.3.0.39
Adobe CC Library 3.6.1.5
Adobe Camera Raw 12.0.0.68

前言

之前因为VPS没续费,域名备案也被注销了,紧跟着七牛云的CDN也被注销了,简直是让人忧伤!
在网上找了好多图床,想代替掉七牛云。

最终选中了路过图床(imgchr),上传图片不压缩,图片大小支持也很大,操作也方便,比较满意。

不过用了几天,发现绝大部分(目前还没发现有支持的)图床,似乎都不支持ico文件。
后面看到了JsDelivr,于是想着不如直接弄个所有文件仓库的CDN了。

教程

新建GitHub仓库

登录/注册GitHub,新建一个仓库。

生成Token

点击头像→Settings→Developer settings→Personal access tokens→Generate new token

填写“Note”,勾选“repo”,点击“Generate token”,生成Token。

注意:
Token只会显示一次,一定要记录下来,后面会用到。

配置GipGo

下载PicGo,安装完成后开始配置图床。

仓库名:用户名/仓库名
分支名:master
Token:之前生成的Token
存储路径:如“img/”,则会在仓库中创建名为img的文件夹,图片会储存在此文件夹中
自定义域名:

在图片上传后,PicGo会按照“自定义域名+上传的图片名”的方式生成访问链接,放到粘贴板上。
为了通过JsDelivr给GitHub仓库中的资源做CDN,所以自定义域名可以设置为:“https://cdn.jsdelivr.net/gh/用户名/仓库名”

至此,配置完成!

NotePad++

官方主页

https://notepad-plus-plus.org

下载地址
https://notepad-plus-plus.org/downloads

GitHub
https://github.com/notepad-plus-plus/notepad-plus-plus

What is Notepad++

Notepad++ is a free (as in “free speech” and also as in “free beer”) source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.

Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.

notepad4ever

I hope you enjoy Notepad++ as much as I enjoy coding it.

1. 回滚到某一提交,并删除后续的提交记录

git reset  --hard cfec6ff
git push origin HEAD --force

2. 回退到上一次commit的状态

git reset --hard HEAD^

3. 回退到任意版本

git reset --hard <commitid>

4. 放弃提交,不推送

git reset --soft HEAD^

仅仅是撤回commit操作,写的代码仍然保留

HEAD^的意思是上一个版本,也可以写成HEAD~1
撤回2次提交,可以使用HEAD~2

--mixed

不删除工作空间改动代码,撤销commit,并且撤销git add
这个为默认参数,git reset --mixed HEAD^git reset HEAD^ 效果是一样的。

--soft

不删除工作空间改动代码,撤销commit,不撤销git add

--hard

删除工作空间改动代码,撤销commit,撤销git add
完成这个操作后,就恢复到了上一次的commit状态。

5. 将分支A的提交,推送到分支B

checkout B
git cherry-pick commitId

[如果有冲突,解决冲突之后

git add
git cherry-pick --continue

]

git push

6. 合并分支时忽略指定文件

.gitattributes中写入

"filename merge=ours":
config.xml merge=ours

在根目录下运行命令行

git config merge.ours.driver true

更新本地分支与远程分支保持一致

git remote update origin --prune

7. 合并部分文件

合并分支B中srv目录下的所有文件和view目录下的index.html文件到A分支

git checkout A
git checkout B srv/** view/index.html

srv下有多层目录,故不能用srv/*





博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议

总访问量为 次 , Loading day...loading time...