编程小技巧

去掉小数点后的0

把每个数*100/100

多种语言的注释方法

python:##

matlab:#

JavaScript://

html:

在html中打开ie

通常情况下,我们使用google进行前端开发,但是有时候某些系统需要打开ie,那么这个时候就需要自动打开ie

写一个注册表

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\openIE]
@="URL:OpenIE Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\openIE\DefaultIcon]
@="iexplore.exe,1"

[HKEY_CLASSES_ROOT\openIE\shell]

[HKEY_CLASSES_ROOT\openIE\shell\open]

[HKEY_CLASSES_ROOT\openIE\shell\open\command]
@="cmd /c set m=\"%l%\" & call set m=%%m:openIE:=%% & call \"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %%m%% & exit"

点击注册表进行注册

在html编写

1
window.open(openie:"https://www.baidu.com")

vscode配置

主题

比较好的主题有one dark pro,brackets-light-pro

字体

现在mac安装字体包

1
brew tap homebrew/cask-fonts

对应的repo是https://github.com/Homebrew/homebrew-cask-fonts

然后安装字体

fira-code是比较受欢迎的字体,在github上有60kstar

github repo:https://github.com/tonsky/FiraCode

1
brew install --cask font-fira-code

也可以安装别的字体

1
brew install font-inconsolata

在settings.json中添加字体

1
2
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,

联机登录

有趣/有用的api

github

pokemon

restful pokemon api

https://pokeapi.co/

评论

You forgot to set the app_id or app_key for Valine. Please set it in _config.yml.

 

本文章阅读量:

  0

IT学徒、技术民工、斜杠青年

机器人爱好者、摄影爱好者

PS、PR、LR、达芬奇潜在学习者

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×