在Emacs中按照黄金分割比例调整屏幕
after install golden ratio package,let’s add it:
(use-package golden-ratio
:ensure t
:diminish golden-ratio-mode
:init
(golden-ratio-mode 1))
…
Bosun go编写的跨平台监控系统
http://localhost:8070/
http://bosun.org/quickstart#scollector
http://zhengheng.me/2015/12/09/bosun-install/
http://localhost:8070/hello world!
…递归查询某个目录下的某种文件并输出为全路径文件名
用管理员权限启动PowerShell,然后执行以下脚本:
Get-ChildItem -Recurse *.dll -path c:\test|%{$_.FullName}
…
在rsync时避免同步某些文件
-
list.exclude
Config/dll.config Logger.config -
rsync4test.bat
set PATH=%PATH%;C:\Program Files (x86)\cwRsync\bin\ rsync -azcP --compress-level=9 --protocol=29 --delete /cygdrive/c/test/ rsync://localhost:18731/test --exclude-from=list.exclude
更新SQLServer存储过程的脚本模版
`/****** Object: StoredProcedure [dbo].[存储过程名] Script Date: 2018-08-31 11:09 ******/`
if exists (select top(1) id from sysobjects where id = object_id(N'存储过程名') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
DROP PROCEDURE [dbo].[存储过程名]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[存储过程名]
…