上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页
摘要: 另有文:终于解决“Git Windows客户端保存用户名与密码”的问题http://www.cnblogs.com/dudu/archive/2011/07/06/git_save_username_password.html在Push代码的时候每次都输入用户名和密码很麻烦,尤其是自己也记不住密码的时候。Google Code有教怎么设置:Add the following to your .netrc. machine code.google.com login XXX@gmail.com password XXX Make sure the clone URL doesn't co 阅读全文
posted @ 2013-03-13 15:48 shiningrise 阅读(3680) 评论(1) 推荐(1) 编辑
摘要: 一不小心把本地的临时分支push到server上去了,想要删除。一开始用git branch -r -d origin/branch-name不成功,发现只是删除的本地对该远程分支的track,正确的方法应该是这样:git push origin :branch-name冒号前面的空格不能少,原理是把一个空分支push到server上,相当于删除该分支。 阅读全文
posted @ 2013-03-12 23:22 shiningrise 阅读(76573) 评论(5) 推荐(16) 编辑
摘要: http://www.sharewareconnection.com/dhcpd-tools.htm 阅读全文
posted @ 2013-03-11 18:37 shiningrise 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 程序下载:http://code.google.com/p/midexam/ 阅读全文
posted @ 2013-03-10 19:11 shiningrise 阅读(322) 评论(0) 推荐(0) 编辑
摘要: vs2010 命令行下用 msbuild 发布web站点先来看一下原来 vs2008 的代码msbuild website\websiteApp.csproj /t:ResolveReferences;Compile /t:_CopyWebApplication /p:Configuration=Release /p:WebProjectOutputDir=r:\website /p:OutputPath=r:\website\bin再看看 vs2010 的代码path C:\Windows\Microsoft.NET\Framework\v4.0.30319msbuild website\w 阅读全文
posted @ 2013-03-09 19:51 shiningrise 阅读(1383) 评论(0) 推荐(1) 编辑
摘要: <PropertyGroup> <PostBuildEvent> if "$(ConfigurationName)" == "Release" goto Release goto End :Release copy *.* ..\..\..\..\Release\ :End </PostBuildEvent> </PropertyGroup> 阅读全文
posted @ 2013-03-09 19:42 shiningrise 阅读(251) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wwlearn/article/details/5457310<authorization><denyusers="?"/><allowusers="*"/></authorization>?:匿名用户,也就是没有登入的用户不能访问。*:所有用户,所有用户都不能访问。<denyusers="?"/>、是拒绝匿名用户访问<allowusers="*"/>允许所有的用户访问包括匿名用户<authent 阅读全文
posted @ 2013-03-09 18:10 shiningrise 阅读(887) 评论(0) 推荐(0) 编辑
摘要: Using Fluent NHibernate in Spring.Nethttp://blog.bennymichielsen.be/2009/01/04/using-fluent-nhibernate-in-spring-net/protectedoverridevoidPostProcessConfiguration(Configurationconfig){base.PostProcessConfiguration(config);Fluently.Configure(config).Database(MySQLConfiguration.Standard.ConnectionStri 阅读全文
posted @ 2013-03-06 19:07 shiningrise 阅读(1305) 评论(0) 推荐(0) 编辑
摘要: vs扩展:http://visualstudiogallery.msdn.microsoft.com/63a7e40d-4d71-4fbb-a23b-d262124b8f4chttp://code.google.com/p/gitextensions/https://www.gitshell.com/http://www.gitcafe.com/http://gitcd.com 阅读全文
posted @ 2013-03-05 22:31 shiningrise 阅读(980) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ChrisFulstow/NBloghttp://efmvc.codeplex.com/ 阅读全文
posted @ 2013-02-27 18:41 shiningrise 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-02-21 00:01 shiningrise 阅读(123) 评论(0) 推荐(0) 编辑
摘要: private const string CONNECTION_STRING = "Data Source=:memory:;Version=3;New=True;"; 阅读全文
posted @ 2013-02-15 14:47 shiningrise 阅读(314) 评论(0) 推荐(0) 编辑
摘要: http://www.asp.net/mvc/mvc4 阅读全文
posted @ 2013-02-04 22:19 shiningrise 阅读(245) 评论(0) 推荐(0) 编辑
摘要: http://sc.chinaz.com/tubiao/index_2.html 阅读全文
posted @ 2013-02-04 21:53 shiningrise 阅读(156) 评论(0) 推荐(0) 编辑
摘要: http://www.artisteer.com/?p=download_step2 阅读全文
posted @ 2013-02-04 21:52 shiningrise 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://www.joomlagate.com/download/other-free-softwares/ 阅读全文
posted @ 2013-02-04 21:46 shiningrise 阅读(377) 评论(0) 推荐(0) 编辑
摘要: http://jetstrap.com 阅读全文
posted @ 2013-01-29 23:58 shiningrise 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 列出文件夹下所有文件夹的树形结构--Dos命令 tree的使用例如,要输出D:\Program Files 该目录下的所有文件夹的树形结构,则:树形目录可以在本机进入cmd,到该目录下,输入 tree >list.txt如果要列出该目录下子目录中的文件,则应该是tree /f >list.txt 阅读全文
posted @ 2013-01-25 14:59 shiningrise 阅读(1305) 评论(0) 推荐(0) 编辑
摘要: SharpZip http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspxhttp://dotnetzip.codeplex.com/ 阅读全文
posted @ 2013-01-21 20:01 shiningrise 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1.看通知公告2.签阅文件(学校办公)3.看每周工作计划和行事历(学校办公)4.在线备课:有充足的资源(教师工作室)5.设备报修(学校办公之后勤)6.请假代课查询(学校办公)7.查看班级三项竞赛(学校办公)8.对学生提问的回答(师生交互功能)9.支持教师在线交流(类似短消息功能)10.支持提交教学计划(教师工作室功能)11.对公开课进行评课(教师工作室功能)12.上传课件获取积分(教师工作室功能)13.编辑教师个人档案袋(教师工作室功能)14.编辑个人收藏夹,通过个人收藏夹设置个人博客地址,账户密码,设置论坛账户密码,设置班级网站账户密码,之后可统一用户认证15.添加个人收藏夹,网址,添加个人 阅读全文
posted @ 2013-01-17 22:54 shiningrise 阅读(198) 评论(0) 推荐(0) 编辑
摘要: http://neatupload.codeplex.com/http://neatupload.codeplex.com/SourceControl/network/forks/shiningrise/neatupload 阅读全文
posted @ 2013-01-17 21:29 shiningrise 阅读(184) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_a5193ed401016mvb.html扩展方法是一种特殊的静态方法,但可以像扩展类型上的实例方法一样进行调用。扩展方法被定义为静态方法,但它们是通过实例方法语法进行调用的。它们的第一个参数指定该方法作用于哪个类型,并且该参数以this修饰符为前缀。扩展方法的要求如下:1 第一个参数是要扩展或者要操作的类型,这称为"被扩展的类型"2 为了指定扩展方法,要在被扩展的类型名称前面附加this修饰符3 要将方法作为一个扩展方法来访问,要用using指令导入扩展类型的命名空间,或者使扩展类型和调用代码在同一个命名空间中 阅读全文
posted @ 2013-01-17 15:35 shiningrise 阅读(12473) 评论(2) 推荐(2) 编辑
摘要: http://code.google.com/p/xiaojw-graph-strawberry/ 阅读全文
posted @ 2013-01-16 23:38 shiningrise 阅读(308) 评论(0) 推荐(0) 编辑
摘要: @echo offrmdir /s /Q downloadrmdir /s /Q iconrmdir /s /Q Logsrmdir /s /Q resrmdir /s /Q Stylesrmdir /s /Q Temprmdir /s /Q RemoteLoginrmdir /s /Q Admindel Web.configdel release_history.txtdel release_history_en.txtdel packages.configdel prePublsh.batcmd 阅读全文
posted @ 2013-01-16 23:17 shiningrise 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 正式宣布维护dbentry的nuget包http://www.nuget.org/packages/DbEntryPM> Install-Package DbEntry MSBuild与web.config要自己手工设置,打算下个版本加入web.config节自动设置我会负责nuget包与官方项目版本的同步,有建议QQ我建议安装以下扩展(改MSBuild方便很多)PowerCommands for Visual Studio 2010http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db9 阅读全文
posted @ 2013-01-16 20:37 shiningrise 阅读(212) 评论(0) 推荐(0) 编辑
摘要: zip -r ./demo.zip ./* -x demo.zip 阅读全文
posted @ 2013-01-16 16:47 shiningrise 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 看好了,是IIS的连接数,不是你的电脑的连接数,破解你电脑的连接数的工具粉多,迅雷就带着一个,我们在这里主要讲怎么破解IIS硬性设置的10个连接(此法同样适合Windows 2000 Professional)。 当然了,如果是拿自己的电脑装IIS玩玩,这样比较好,如果做专业的服务器,用XP或2000 Pro版属于没事找抽型,呵呵。。 到微软的老家下载一个冬冬,地址是http://download.microsoft.com/download/iis50/Utility/5.0/NT45/EN-US/MtaEdt22.exe 这个是管理IIS的小工具,叫MetaEdit按照盖茨那老... 阅读全文
posted @ 2013-01-16 14:25 shiningrise 阅读(1588) 评论(0) 推荐(0) 编辑
摘要: 软件简介Eschool校园网平台是专门为中、小学、大中专院校而精心设计的优秀校园网平台软件,完全基于Web开发,采用大型数据库系统Microsoft SQL Server 2000,能够全面满足各类学校的校园网建设需要。功能模块:(以下栏目可自行定义,不需要的可删除,也可添加)1、交流频道:消息、新闻、公告、通知、校历、论坛、文章、邮件、留言薄、聊天室。2、校园频道:学校简介、招生信息、校园风光、办学特色、学校荣誉、名师档案、校史长廊、心理咨询、休闲驿站等。3、同步课堂:疑难解答、作文点评、专题讲座、精选题库等。4、家长频道:家长登记、家长查询等。5、老师频道:优秀教案、论文赏析、精选课件、家 阅读全文
posted @ 2013-01-16 14:03 shiningrise 阅读(639) 评论(0) 推荐(0) 编辑
摘要: http://tonyqus.sinaapp.com/tutorialhttp://npoi.codeplex.com/ 阅读全文
posted @ 2013-01-15 11:58 shiningrise 阅读(222) 评论(0) 推荐(0) 编辑
摘要: www.gitcafe.comwww.gitcd.comwww.teamhost.rog 阅读全文
posted @ 2013-01-14 21:37 shiningrise 阅读(171) 评论(0) 推荐(0) 编辑
摘要: @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 阅读(261) 评论(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 阅读(11767) 评论(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 阅读(231) 评论(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 阅读(184) 评论(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 阅读(377) 评论(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) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css