上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 项目文件中<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 阅读(741) 评论(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 阅读(244) 评论(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 阅读(242) 评论(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 阅读(317) 评论(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 阅读(391) 评论(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 阅读(204) 评论(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 阅读(1082) 评论(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 阅读(5696) 评论(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 阅读(320) 评论(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 阅读(780) 评论(0) 推荐(0) 编辑
摘要: http://www.sjdw008.com/re.asp不知道真假 阅读全文
posted @ 2012-12-25 10:33 shiningrise 阅读(1650) 评论(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 阅读(12121) 评论(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 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 最后发现,原来是虚拟网卡原因,,要选那个最好的网卡,,最不能选“可变“(会只跑100M网速) 阅读全文
posted @ 2012-12-21 00:46 shiningrise 阅读(275) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/lastsweetop/article/details/6400328 阅读全文
posted @ 2012-12-20 21:34 shiningrise 阅读(175) 评论(0) 推荐(0) 编辑
摘要: http://www.linuxidc.com/Linux/2012-10/72077.htm 阅读全文
posted @ 2012-12-20 20:44 shiningrise 阅读(173) 评论(0) 推荐(0) 编辑
摘要: http://www.lesscss.net/thinkcss 阅读全文
posted @ 2012-12-20 14:46 shiningrise 阅读(103) 评论(0) 推荐(0) 编辑
摘要: http://www.dtcms.net 阅读全文
posted @ 2012-12-20 13:58 shiningrise 阅读(179) 评论(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 阅读(3762) 评论(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 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/project/top_cn_2012 阅读全文
posted @ 2012-12-14 00:18 shiningrise 阅读(123) 评论(0) 推荐(0) 编辑
摘要: http://xiha.org/user.htm?name=summer#http://xiha.org/index.htmhttp://gitcd.com/index.htm 阅读全文
posted @ 2012-12-13 23:30 shiningrise 阅读(279) 评论(0) 推荐(0) 编辑
摘要: http://www.onlinedown.net/softdown/235343_2.htm 阅读全文
posted @ 2012-12-13 12:50 shiningrise 阅读(354) 评论(0) 推荐(0) 编辑
摘要: http://www.linuxdot.netmono2.10.8.1才是很好用的。http://levenblog.codeplex.com/把那个sqlite3.dll删除不要启用asp.net4.0添加<globalization uiCulture="en" culture="zh-CN" /> 阅读全文
posted @ 2012-12-12 23:14 shiningrise 阅读(174) 评论(0) 推荐(0) 编辑
摘要: named.conf这一行: allow-query-cache { any; }; 取消注释如果说没有,添加这行,经测试,有效 阅读全文
posted @ 2012-12-11 23:49 shiningrise 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: http://www.gxcms.com 阅读全文
posted @ 2012-12-11 22:59 shiningrise 阅读(372) 评论(0) 推荐(0) 编辑
摘要: http://www.linuxidc.com/Linux/2012-06/64007.htm 阅读全文
posted @ 2012-12-11 12:43 shiningrise 阅读(125) 评论(0) 推荐(0) 编辑
摘要: http://mabofeng.blog.51cto.com/2661587/703023 阅读全文
posted @ 2012-12-10 23:29 shiningrise 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 操作系统:ubuntu1204服务器版 DNS软件:bind9 newoa.qyjob.net指向168.168.168.96的IP 运行以下命令安装 sudo apt-get install bind9 dnsutils bind9-doc 在默认情况下。Bind9是被配置为DNS缓存服务器来使用的。因此只要把DNS服务器地址加入转发列表就行了 sudo vim /etc/bind/naemd.conf.options 红色是要修改的 [plain] view plaincopyoptions{directory"/var/cache/bind";//Ifthereisa 阅读全文
posted @ 2012-12-10 12:51 shiningrise 阅读(7439) 评论(0) 推荐(0) 编辑
摘要: http://oj.jzxx.net/problemset.php 阅读全文
posted @ 2012-12-08 21:59 shiningrise 阅读(263) 评论(0) 推荐(0) 编辑
摘要: cdcorepkill-9judgedsvnup.sudo./make.shsudojudged就ok了 http://code.google.com/p/hustoj/ 阅读全文
posted @ 2012-12-08 12:36 shiningrise 阅读(372) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css