萌新编程笔记之杂录
Bootstrap
https://www.bootply.com/116898
Sublime
在任意一行
cmd+/= comment1
定义注释 <!-- This is a comment -->
输入tag name,点TAB = 自动生成前后tag带括号
输入Lorem后,点TAB = 一堆sample text
cmd+鼠标左键:创建多个光标,同时输入
##Web Docs
加粗的网站均提供双语版。
MDN (Mozilla Developer Network): https://developer.mozilla.org/zh-CN/
w3school: http://www.w3school.com.cn/
Chrome DevTools
官网页面:https://developer.chrome.com/devtools
杂
Mac下打开/usr/local目录: Finder - cmd+shift+G - /usr/local
Mac下安装和卸载Homebrew的代码:
安装代码
1 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
卸载代码
1 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)" |