火狐网页访问https提示安全连接失败
作者:freethy 发布于:2015-9-21 17:53 Monday
使用https访问网站提示错误:‘’在服务器密钥交换握手信息中 SSL 收到了一个弱临时 Diffie-Hellman 密钥。 (错误码: ssl_error_weak_server_ephemeral_dh_key)“解决方法:
安装插件:https://addons.mozilla.org/en-us/firefox/addon/disable-dhe/ (英文)
c# 获取程序相关目录
作者:freethy 发布于:2015-9-18 12:22 Friday
// 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory
// 获取模块的完整路径,包含文件名
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
// 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。
System.Environment.CurrentDirectory
// 获取应用程序的当前工作目录,注意工作目录是可以改变的,而不限定在程序所在目录。
System.IO.Directory.GetCurrentDirectory()
// 获取和设置包括该应用程序的目录的名称。
System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase
// 获取启动了应用程序的可执行文件的路径。
System.Windows.Forms.Application.StartupPath
// 获取启动了应用程序的可执行文件的路径及文件名
System.Windows.Forms.Application.ExecutablePath
MYSQL 备份数据库
作者:freethy 发布于:2015-9-1 15:19 Tuesday
mysqldump -u用户名 -p密码 数据库名 --skip-lock-tables | gzip > c:\aa.sql.zip