上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: @echo offrmdir /s /Q downloadrmdir /s /Q iconrmdir /s /Q Logsrmdir /s /Q resrmdir /s /Q Stylesrmdir /s /Q Tempdel Web.configdel release_history.txtdel release_history_en.txtdel prePublsh.batecho okcmd 阅读全文
posted @ 2013-01-14 21:27 shiningrise 阅读(262) 评论(0) 推荐(0) 编辑
摘要: http://help.github.com/fork-a-repo/ 概要: 克隆别人的代码库到自己的项目中,可以作为子模块的形式使用,或二次开发操作流程:在开源项目中点击fork按钮,稍等一会儿,该项目便会拷贝一份到你的respositories中,克隆一份代码到本地:git clone git@github.com:username/Spoon-Knife.git配置:(项目克隆完成后,默认远程的别名为origin,此为我们自己项目中的版本,并非原始作者的代码库)创建原始代码库的别名,方便跟踪代码 git remote add upstream git://github.com/octo 阅读全文
posted @ 2013-01-14 19:50 shiningrise 阅读(11768) 评论(0) 推荐(1) 编辑
摘要: /* #region 人事管理 menu = SysMenu.FindOne(p => p.Name == "人事管理"); if (menu == null) { menu = new SysMenu(); menu.Name = "人事管理"; menu.ParentId = 0; menu.NavigateUrl = ""; menu.IsTreeLeaf = true; menu.Save(); } menu1 = SysMenu.FindOne(p => p.Name == "考勤管理"); 阅读全文
posted @ 2013-01-13 19:54 shiningrise 阅读(232) 评论(0) 推荐(0) 编辑
摘要: #ignore thumbnails created by windowsThumbs.db#Ignore files build by Visual Studio*.obj*.pdb*.user*.aps*.pch*.vspscc*_i.c*_p.c*.ncb*.suo*.tlb*.tlh*.bak*.cache*.ilk*.log[Bb]in[Dd]ebug*/*.lib*.sbrobj/[Rr]elease*/_ReSharper*/[Tt]est[Rr]esult*publish/*.Publish.xmlpackages/*.nupkgnugetpush.batApp_Data/*. 阅读全文
posted @ 2013-01-12 12:57 shiningrise 阅读(185) 评论(0) 推荐(0) 编辑
摘要: http://www.wojilu.com/Forum1/Topic/2261最后,提供我最近写得 git 系列教程共10篇,供参考——1)git电子书和其他资源http://www.wojilu.com/Forum1/Topic/22242)git工具安装:http://www.wojilu.com/Forum1/Topic/22273)github的登录认证机制:http://www.wojilu.com/Forum1/Topic/22354)(图解)配合vs使用git命令行入门: http://www.wojilu.com/Forum1/Topic/23755)git基本命令:http: 阅读全文
posted @ 2013-01-11 22:28 shiningrise 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 新浪http://code.google.com/p/oauth-dot-net/http://www.cnblogs.com/mainz/archive/2010/12/01/1893718.htmlhttp://www.cnblogs.com/prolifes/articles/2263033.htmlhttp://www.cnblogs.com/shiningrise/archive/2012/01/01/2309725.htmlQQ:http://qqconnect.codeplex.com/https://github.com/shiningrise/dotnetopenid 阅读全文
posted @ 2013-01-11 21:39 shiningrise 阅读(142) 评论(0) 推荐(0) 编辑
摘要: /**************************************************************************** * 功能说明: * 1、使用 HttpModel与现有基于共享登录信息( Cookie )的网站进行集成 * 2、用户自动登录,自动注册,,延时注册, * 3、同步退出 * * 使用方法: * 见示例web.config * * 设计编码:shiningrise@gmail.com * **********************************************************************... 阅读全文
posted @ 2013-01-11 21:38 shiningrise 阅读(378) 评论(0) 推荐(0) 编辑
摘要: git update-index --assume-unchanged nugetpush.batgit update-index --assume-unchanged Wxy.WebApp/Web.config gitignore只能忽略那些原来没有被track的文件,所以修改.gitignore是无效的。正确的做法是在每个clone下来的仓库中手动设置不要检查特定文件的更改情况。%git update-index --assume-unchanged/path/to/file缺点就是每个新的仓库都必须手动设置一次。幸运的是,这样的设置每个仓库只要进行一次就够了。http://blog.si 阅读全文
posted @ 2013-01-11 20:51 shiningrise 阅读(427) 评论(0) 推荐(0) 编辑
摘要: @echo offset url=nuget服务器set pwd=发布密码echo "start Wxy.DbEntryMembership"cd Wxy.DbEntryMembershipdel *.nupkg..\NuGet.exe pack..\NuGet.exe push *.nupkg -s %url% %pwd%cd ..\echo "start Wxy.Common"cd Wxy.Commondel *.nupkg..\NuGet.exe pack..\NuGet.exe push *.nupkg -s %url% %pwd%cd ..\e 阅读全文
posted @ 2013-01-11 20:09 shiningrise 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 下边是我封装的一个类的构造函数,根据isEmbed来判断是使用的哪种数据库版本:public FireBirdDbHelper(bool isEmbed){if(isEmbed) _connectionString="Database=roy;User=SYSDBA;Password=masterkey;server type=1";else_connectionString= @"Database=D:\firebird\Firebird-1.5.2.4731_win32\examples\employee.fdb;User=SYSDBA;Password=ma 阅读全文
posted @ 2013-01-11 13:21 shiningrise 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 项目文件中<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>改成<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>就行了 阅读全文
posted @ 2013-01-09 22:45 shiningrise 阅读(212) 评论(0) 推荐(0) 编辑
摘要: http://code.google.com/p/kiwing/http://www.toptensoftware.com/petapoco/PetaPoco is a tiny, fast, single-file micro-ORM for .NET and Mono.Like Massive it's a single file that you easily add to any projectUnlike Massive it works with strongly typed POCO'sLike Massive, it now also supports dyna 阅读全文
posted @ 2013-01-09 11:17 shiningrise 阅读(254) 评论(0) 推荐(0) 编辑
摘要: resolverresolver 192.168.1.251; #内部DNS服务器server {listen111.222.333.444:80;server_name*.qwemgh.com;location / {proxy_pass http://$host;}}发现个问题,resolver不能指定多个DNS服务器,resolver 192.168.1.251 192.168.1.250;resolver 192.168.1.251,192.168.1.250;resolver 192.168.1.251;resolver 192.168.1.250; #以上方式均会报错。这样就有个单 阅读全文
posted @ 2013-01-08 22:14 shiningrise 阅读(742) 评论(0) 推荐(0) 编辑
摘要: # You may add here your# server {# ...# }# statements for each of your virtual hosts to this file### You should look at the following URL's in order to grasp a solid understanding# of Nginx configuration files in order to fully unleash the power of Nginx.# http://wiki.nginx.org/Pitfalls# http:.. 阅读全文
posted @ 2013-01-08 20:42 shiningrise 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 用IE6.0打开FTP时,文件以文件夹的形式显现,但IE7.0或IE8.0则不然,它是以列表的形式显示的,不直观。如果要修改成打开FTP时,文件以文件夹的形式显现,可以通过修改注册表来实现,具体如下:Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_INTERNET_SHELL_FOLDERS]"iexplore.exe"=dword:00000001将以上蓝色字体部分复制到文本文件中 阅读全文
posted @ 2013-01-07 13:30 shiningrise 阅读(243) 评论(0) 推荐(0) 编辑
摘要: SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm例如:select getdate()2004-09-12 11:06:08.177整理了一下SQL Server里面可能经常会用到的日期格式转换方法:举例如下:select CONVERT(varchar, getdate(), 120 )2004-09-12 11:06:08Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AMSelect CONVERT(varchar(100), GETDATE(), 1) 阅读全文
posted @ 2013-01-05 21:53 shiningrise 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 7. 基于DotNet4.0的项目,一定要注意!为Web.config中<system.web>的<page>标签添加controlRenderingCompatibilityVersion和clientIDMode两个属性。 <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> <controls> <add assembly="FineUI" namespace="FineUI 阅读全文
posted @ 2013-01-03 16:18 shiningrise 阅读(394) 评论(0) 推荐(0) 编辑
摘要: PowerCommands for Visual Studio 2010http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db95b99/ 阅读全文
posted @ 2012-12-30 16:05 shiningrise 阅读(213) 评论(0) 推荐(0) 编辑
摘要: http://wiki.debian.org/Bind9 阅读全文
posted @ 2012-12-29 22:30 shiningrise 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Windows Server 2008官方简体中文正式版下载+序列号 Windows Server 2008是微软下一个服务器操作系统的名称,将会是一套相等于Windows Vista(代号为Longhorn)的服务器系统,两者很可能将会拥有很多相同功能。 Windows Server 2008通过加强操作系统和保护网络环境提高了安全性。它具有更强的控制能力、更大的灵活性、自修复NTFS文件系统、快速关机服务等特点。 一、版本信息文件: zh-Hans_windows_server_2008_datacenter_enterprise_standard_x86_dvd_x14-2674... 阅读全文
posted @ 2012-12-29 08:25 shiningrise 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: 事情是这样的,我一个txt文件,我想把里面的所有3.6改成6*3请问有什么方法吗?谢谢我来帮他解答精彩回答 2008-12-24 00:51@echo offsetlocal enabledelayedexpansionset file=set /p file= 请输入要操作的文件名称(包括扩展名):set "file=%file:"=%"for %%i in ("%file%") do set file=%%~fiset replaced=set /p replaced= 请输入即将被替换的内容:set all=set /p all= 请输入 阅读全文
posted @ 2012-12-28 21:45 shiningrise 阅读(5715) 评论(0) 推荐(0) 编辑
摘要: POWERSHELL脚本执行权限2009-02-04 16:55:02|分类:powershell|字号订阅· Restricted——默认的设置, 不允许任何script运行· AllSigned——只能运行经过数字证书签名的script· RemoteSigned——运行本地的script不需要数字签名,但是运行从网络上下载的script就必须要有数字签名· Unrestricted——允许所有的script运行 解决办法你可以使用"Set-ExecutionPolicy"cmdlet来改变的你PowerShell环境。例如,你可 阅读全文
posted @ 2012-12-28 19:47 shiningrise 阅读(321) 评论(0) 推荐(0) 编辑
摘要: mysql不能自动安装在新安装的ubuntu系统上面bunlde的时候遇到了这样一个问题:[ruby] view plaincopyInstallingmysql2(0.3.11)withnativeextensionsGem::Installer::ExtensionBuildError:ERROR:Failedtobuildgemnativeextension./home/ailen/.rvm/rubies/ruby-1.9.3-p327/bin/rubyextconf.rbcheckingforrb_thread_blocking_region()...yescheckingforrb_ 阅读全文
posted @ 2012-12-26 22:49 shiningrise 阅读(781) 评论(0) 推荐(0) 编辑
摘要: http://www.sjdw008.com/re.asp不知道真假 阅读全文
posted @ 2012-12-25 10:33 shiningrise 阅读(1653) 评论(0) 推荐(0) 编辑
摘要: 帮我解决问题的原文http://bbs.vmsky.com/thread-37020-1-1.html在快照的情况下,使用vmkfstools -X 160G A8.vmdk,在终端界面没有报错一启动虚拟机出现The parent virtual disk has been modified since the child was created无法打开磁盘“/vmfs/volumes/4c3e9562-84629be3-8e98-a4badb3f316f/A8/A8-000002.vmdk”或其所依赖的快照磁盘之一。 vi A8-000002.vmdk# Disk DescriptorFi. 阅读全文
posted @ 2012-12-24 15:53 shiningrise 阅读(12180) 评论(2) 推荐(0) 编辑
摘要: 免费但不开源,分布式,不支持linux服务器http://ifmw.baifeng.org/zh/ 阅读全文
posted @ 2012-12-22 13:53 shiningrise 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 国内常用NTP服务器地址及IP2011-09-07 15:06:08210.72.145.44 (国家授时中心服务器IP地址) 阅读全文
posted @ 2012-12-21 15:43 shiningrise 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 最后发现,原来是虚拟网卡原因,,要选那个最好的网卡,,最不能选“可变“(会只跑100M网速) 阅读全文
posted @ 2012-12-21 00:46 shiningrise 阅读(276) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/lastsweetop/article/details/6400328 阅读全文
posted @ 2012-12-20 21:34 shiningrise 阅读(176) 评论(0) 推荐(0) 编辑
摘要: http://www.linuxidc.com/Linux/2012-10/72077.htm 阅读全文
posted @ 2012-12-20 20:44 shiningrise 阅读(174) 评论(0) 推荐(0) 编辑
摘要: http://www.lesscss.net/thinkcss 阅读全文
posted @ 2012-12-20 14:46 shiningrise 阅读(104) 评论(0) 推荐(0) 编辑
摘要: http://www.dtcms.net 阅读全文
posted @ 2012-12-20 13:58 shiningrise 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 引入相应语言js文件后修改主页面的js代码,比如是中文则如下:<script type="text/javascript" charset="utf-8"> $().ready(function() { var elf = $('#elfinder').elfinder({ url : 'php/connector.php', // connector URL (REQUIRED) lang: 'zh_CN' // language (OPTIONAL) }).elfinder('ins 阅读全文
posted @ 2012-12-20 00:11 shiningrise 阅读(3770) 评论(0) 推荐(0) 编辑
摘要: LinPHAhttp://www.55ln.com/566.html 阅读全文
posted @ 2012-12-19 12:50 shiningrise 阅读(212) 评论(0) 推荐(0) 编辑
摘要: LinPHAhttp://www.oschina.net/p/piwigo/similar_projects?p=5http://down.cnzz.cn/List/481.aspxhttp://cn.piwigo.org/ 阅读全文
posted @ 2012-12-17 16:08 shiningrise 阅读(149) 评论(0) 推荐(0) 编辑
摘要: http://help.aliyun.com/manual?spm=5176.383518.0.105.gTitYF&helpId=273 适用系统:Redhat 1、启动VSFTP服务器 A. 登录Linux主机后,运行命令:”service vsftpd start” B. 要让FTP每次开机自动启动,运行命令: “chkconfig --level 35 vsftpd on” 2、设置FTP权限 A. 编辑VSFTP配置文件,运行命令:”vi /etc/vsftpd/vsftpd.conf “ B. 将配置文件中”anonymous_enable=YES “改为“anony... 阅读全文
posted @ 2012-12-14 18:19 shiningrise 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 爱考在线考试系统V1.2.1正式版安装.rar 阅读全文
posted @ 2012-12-14 16:01 shiningrise 阅读(198) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/os/201102/83942.html之前我在Ubuntu Server下用 sudo passwd root 启用了 root 用户,如果你没有启用,记得在命令前加"sudo"。1、备份源列表文件 cp /etc/apt/sources.list /etc/apt/sources.list.bak2、用vim打开源列表文件 vim sources.list3、按下Esc,然后全选并删除(ggdG),把新的源粘贴上去,保存退出(:wq)。我挨个ping了一下,觉得下面这2个最适合我,保存记录一下。"intrepid&quo 阅读全文
posted @ 2012-12-14 11:36 shiningrise 阅读(436) 评论(0) 推荐(0) 编辑
摘要: http://help.aliyun.com/manual?helpId=271http://hi.baidu.com/jiyunjie/item/eed3e3d1656822302a35c7e0 阅读全文
posted @ 2012-12-14 11:13 shiningrise 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/project/top_cn_2012 阅读全文
posted @ 2012-12-14 00:18 shiningrise 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css