Tools

Intellij

use

https://gitee.com/pengzhile/ide-eval-resetter

配置文件恢复时需要选择性导入,全部导入可能不生效!

更多

Xcode

use

https://developer.apple.com/downloads/index.action
http://alcatraz.io/

Shourtcuts

command + 0/1: toggle some bar
command + b: build, command+shift+k:clean, command + .:build stop
command + r: build + run
command + y: build + debug
command + \: toggle breakpoint
command + []: tab
command + shift + re: stop run or debug
command + shift + n: new project
command + shift + o: ctrlp,定位文件或方法,支持缩写
command + option + s: save all
ctrl + command + J: jump to definition
ctrl + command + -->: forward/backward
ctrl + command + Up: switch between .h or .m/.cpp file
F6: step over
F7: step into
F8: step out

更多

WordPress

wp

WordPress — 世界上最快速的建站平台, 优点:

更多

LaTeX

TeX是由著名的计算机科学家 Donald E. Knuth(高德纳1977年发明的排版系统.
TeX 在希腊语中这个词的意思是“科技”和“艺术”.

更多

Notion

basic

shortcuts

Notion ShortcutsFunction
ctrl + e将选中的文本转换为内联文本
ctrl + d复制选中的块; 或按住alt拖动
ctrl + p打开搜索框或访问一个最近的页面
ctrl + [回前一个页面; ] :后一个
:<word>Emoji符号; :clapping 👏. 或/emoji; OS自带表情: win:(win + .); mac:(cmd + ctrl + space)
[[链接或创建子页面(/page)
>与markdown不同, 创建折叠列表
"与markdown不同, 创建引用
[]创建一个TODO复选框
Notion Quick CommandFunction
/toc创建一个目录块
/math编写数学方程和符号
/color配置块颜色
/image上传图像 /audio /video /file /code https://apption.co/
/bread面包屑菜单
/callout插入注记:突出某个段落
/comment允许你在任何块上创建评论
/template仅供页面内使用的模板
/moveto允许你将该块移动到不同的页面
/delete删除当前块
/duplicate创建当前块的精确副本

更多

Tools

https://www.cursor.so/

全新的开源下载平台: Motrix

更多

AutoHotKey

https://github.com/Lexikos/AutoHotkey_L/

basic symbols

# :windows-key
^ :Ctrl
+ :Shift
! :Alt
* hotstring  
  必须使用Enter、Space、TAB、;等激活(#Hotstring EndChars).::xxx::...

demos

#If !WinActive("ahk_class Vim") && !WinActive("ahk_class MozillaWindowClass")
#if

// 或者使用如下方式:
GroupAdd, GroupName, ahk_class Vim
GroupAdd, GroupName, ahk_class MozillaWindowClass
#IfWinActive ahk_group GroupName
#IfWinActive

my scripts

;-----------------------------------o
; F12 or alt + t : set curwindow topmost
SetWindowTopMost()
{
    WinGetActiveTitle, varWinTitle
    WinSet, AlwaysOnTop, Toggle, %varWinTitle%
}
;!t::SetWindowTopMost()
!F12::SetWindowTopMost()


;-----------------------------------o
; similate vim
;-----------------------------------o
#IfWinNotActive ahk_class Vim

; alt + q : exit app
;!q::send !{F4}

; alt + d = delete
!d::Send, {Delete}

; navigation left
!h::Send, {Left}
!+h::Send, +{Left}

; navigation Right
!l::Send, {Right}
!+l::Send, +{Right}

; navigation Up
!k::Send, {Up}
!+k::Send, +{Up}

; navigation down
!j::Send, {Down}
!+j::Send, +{Down}

; alt + i = home
!,::Send, {Home}
!+,::Send, +{Home}

; alt + o = end
!.::Send, {End}
!+.::Send, +{End}

#IfWinNotActive

更多

Firefox

mkv: 生成配置文件: linux、windows:~/.vimperatorrc %userprofile%\_vimperatorrc

更多

vs精简安装

目的

  • vs安装冗余度过大,深度占用系统磁盘空间
  • 用最小体积安装vs

步骤

  • 修该 Setup\vs_setup.pdi(locdata.ini为说明文件) 中 [Complete Dependency List]/[Microsoft Visual Studio 2010…] 为:
gencomp15
gencomp784
gencomp16
gencomp387,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
gencomp384,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
gencomp43,{5883FD8F-CE63-48BC-8A02-D1633E41F6C3}
gencomp64,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
gencomp48,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
vs_setup.dll
gencomp478,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
gencomp108,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
gencomp49,{12CDA52C-7A8F-4785-8A22-53C87393FEE0}
  • 修改 Setup\baseline.dat,将 [vs_setup.dll] 中 UseMediaFwlinks=1 后全部删除.(Framwork)
  • 不要删除以下配置项:
  1. Microsoft Visual Studio Macro Tools
  2. Microsoft .NET Framework 4 Extended //NET Framework 4扩展. 不能删除.
  3. Microsoft Visual C++ 开发组件包 Microsoft Visual C++ 2008 Redistributable Microsoft Visual C++ 2008 Redistributable Microsoft Visual C++ 2010 x64 Runtime Microsoft Visual C++ 2010 x86 Runtime Microsoft SQL Server Compact 3.5 SP2 CHS //删除会影响IntelliSence, WCU\SSCE\SSCERuntime_x86-enu.msi Microsoft SQL Server 2008 R2 Data-Tier Application Project //WCU\DAC\DACProjectSystemSetup_enu.msi CrystalReports //WCU\Crystal Reports\CrystalReportsTemplates.msi -->右键-卸载.
  4. Microsoft .NET Framework 4 Client Profile //优化.net客户端的运行. "可以删除,但不建议删除". Microsoft .NET Framework 4 Multi-Targeting Pack //NET跨平台准备的东西. "可以删除,不建议删除".

更多