推荐
最新
OpenAI 人事动荡最新进展
graph TB
A[/超级人工智能诞生前/] ==> B[Ilya 向董事会通报]
B --> C[董事会成员有的感到震惊\n有的对于被排除在外感到不悦]
C --> D[决定解雇一直在积极推动扩张的 Sam]
D --> E[董事会意识到了自己的错误]
E --> F[Sam 希望掌握控制权,但董事会并不想放手]
F --> G([微软出现,扮演了救世主角色])
G --> H[Sam 接受了微软的提议]
H --> |微软市值飙升+员工集体辞职| I(Ilya 意识到了自己的错误)
I --> J((End ?))
style A fill:#00758f,stroke:#333,stroke-width:2px
style G color:#fff,stroke-dasharray: 5 5
最新采访
不同的声音1
500多名OpenAI员工签署联名信. 据悉, 目前联名信以上升到721人
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
Bruce Print
腾讯安全玄武实验室和浙江大学的安全研究人员日前在Arxiv发布论文介绍一种名为BrutePrint的攻击方案。
这种攻击方案利用漏洞在目标设备上无限次匹配指纹图像 , 进而在 3~14 小时间破解验证系统接管目标设备。




















