pkcile / sum

0 stars 0 forks source link

link sorts #3

Open pkcile opened 3 years ago

pkcile commented 3 years ago

图像压缩、视频压缩软件

视频压缩
HandBrake:https://handbrake.fr/
图片压缩
Image Tuner:exif信息不损失 https://www.glorylogic.com/ 
Caesium:exif信息会丢失 https://pc.qq.com/search.html#!keyword=Caesium+Caesium

前端工具

浏览器
Chorme:https://pc.qq.com/search.html#!keyword=chorme
Firefox:https://pc.qq.com/search.html#!keyword=firefox
Edge
360极速浏览器:有的网址下载挺快
编辑器
Notepad++
Vscode:https://code.visualstudio.com/
HBuilder
WebStorm:学生可免费申请 https://www.jetbrains.com/zh-cn/community/education/#students
取色、录制视频、截屏、测量等工具合集
FastStone Capture:https://pc.qq.com/search.html#!keyword=FastStone+Capture
文档
Zeal:https://zealdocs.org/
md文件编辑器
Typora:https://www.typora.io/

后端工具(偏重于PHP)

免费服务器PHP套件
upupw: https://www.upupw.net/
php study: https://www.xp.cn/
常用的文本编辑器
phpstorm: 学生可免费申请 https://www.jetbrains.com/zh-cn/community/education/#students

运维工具

内网穿透软件
Natapp: https://natapp.cn/
ftp工具
fileZilla中文网:https://www.filezilla.cn/
linux登录工具
putty: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html

上网下载工具

科学上网
浏览器插件 Firefox、Chorme
风车云马:https://windmillvpn.site/

桌面端:
baccloud: https://www.baacloud11.com/   https://github.com/baacloud/url
landern: https://github.com/getlantern/lantern

手机端:
下载器
pkcile commented 3 years ago

github加速

1.用IP Address网站查询网址对应的IP地址

https://www.ipaddress.com/

2.修改本地hosts文件,添加解析语句(C:\Windows\System32\drivers\etc)

ip github.com
ip github.global.ssl.fastly.net

3.更新DNS

CMD命令行,输入:ipconfig/flushdns
pkcile commented 3 years ago

web后端语言使用情况:

Usage statistics of server-side programming languages for websites:

https://w3techs.com/technologies/overview/programming_language

开发编程语言统计:

https://www.tiobe.com/tiobe-index/
pkcile commented 3 years ago

GIS相关的客户端JavaScript 库:

使用了WebGL对地图、覆盖物等进行渲染,支持3D视角展示地图

1.Mapbox GL JS 基于 WebGL 的矢量地图:

中国官网:http://www.mapbox.cn/
官网:https://www.mapbox.com/ (申请token)
文档demo: https://docs.mapbox.com/mapbox-gl-js/api/    http://www.mapbox.cn/mapbox-gl-js/examples/

2.Maptalk 个人开发的库

官网:https://maptalks.org/
文档demo: https://maptalks.org/examples/cn/map/load/
pkcile commented 3 years ago

电脑重置后软件安装记录

2021-03-31

1.WPS https://platform.wps.cn/
2.QQ https://im.qq.com/
3.baccloud https://www.baacloud11.com/
4.7-zip https://www.7-zip.org/

2021-04-01

4.phpstorm https://www.jetbrains.com/phpstorm/download/download-thanks.html?platform=windows
5.git https://pc.qq.com/search.html#!keyword=git
the use of git, test
6.node https://pc.qq.com/search.html#!keyword=node
7.landern https://gitlab.com/getlantern/lantern-binaries-mirror/-/raw/master/lantern-installer.exe
8.phpstudy https://www.xp.cn/

2021-04-02

9.FileZilla https://filezilla-project.org/
10.英雄联盟 https://lol.qq.com/download.shtml?ADTAG=lolweb.v3

2021-04-04

java 8
tomcat
geoserver

2021-04-05

水经微图
MapTiler

2021-04-06

mapgis

2021-04-08

arcgis
arcgis server
wampserver

2020-04-09

everything
pkcile commented 3 years ago

百度笔试:

汇总:https://ac.nowcoder.com/discuss/238896?type=2&order=3&pos=51&page=0 测试:https://www.nowcoder.com/test/16386137/summary

2021-04-11 百度面试题目

考试时长:120分钟
试卷总分:120
考试题型: 单选 17 道 , 不定项 3 道 , 编程 3 道

单选题 1.内存泄漏的多种情况 3.预处理语言特点

这里是一些最流行的CSS预处理器:Sass、LESS、Stylus、PostCSS
https://developer.mozilla.org/zh-CN/docs/Glossary/CSS_preprocessor
嵌套、mixin/继承、运算、模块化
https://www.jianshu.com/p/3461c1cefe5c
https://www.huaweicloud.com/articles/f50390aba2c887af4b1ea06439b6407d.html

4.选择器

~ :选择之后的所有元素
+ :选择紧接着的单个元素
document.querySelector("#test01~div"):只能选中一个元素
$("#test01~div"):能选中多个元素

5.CSS变量用法和特征

使用CSS自定义属性(变量)https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties
定义: --main-bg-color: brown;
使用:background-color: var(--main-bg-color);

6.哈夫曼编码 7.数组去重 filter、forEeach、reduce 8.export import console 9.linux,从小到大显示磁盘利用率 10.主机、所在子网 11.进程中僵尸进程如何kill 12.进程唤醒 13.动态规划 15.push [] []可以是数组吗 16.CSRF 17.typeof typeof连用

typeof 操作符返回一个字符串,表示未经计算的操作数的类型
let b = typeof(666);
console.log(typeof(b)); // 输出:string

let a;
console.log(typeof(a));         //undefined
console.log(typeof typeof(a));  //string
pkcile commented 3 years ago

字符串拼接?