搜索到与相关的文章
SqlServer

Window Firewall cause "MS SQL Server New SQL

ThreecomputershaveMSSQLServer2000installed.OneisWindows2000Server,theothertwoareWindowsXPProfessional.TheWindowsXPProfessionalcanregistertheMSSQLServerinstanceonWindows2000ServerviaEnterpriseManagerButtheWindows2000Servercan'taddW

系统 2019-08-12 01:55:43 3472

数据库相关

export.py

#!/usr/bin/envpython#encoding=utf-8importredis,codecs,sys,time,datetime,doctest,rereload(sys)sys.setdefaultencoding('utf8')classUnbuffered:def__init__(self,stream):self.stream=streamdefwrite(self,data):self.stream.write(data)self.

系统 2019-08-12 01:53:20 3472

CSS

css样式教程 4、CSS的Text 文本

有一系列属性可以改变网页文字的大小和形状,概要如下:font-family文字使用的字体,比如宋体,TimesNewRoman,Arial等等这个属性必须详细制定,不能使用偏僻的字体,要使用安全字体(比如arial,verdana和timesnewroman和宋体),可以同时指定许多字体,只要使用逗号分开即可。这样的用意是,如果用户电脑里没有第一个字体浏览器可以使用后面指定的字体。这非常有用,因为不同的电脑拥有不同的字体。例子font-size:arial

系统 2019-08-29 23:39:45 3471

Ubuntu

Ubuntu下修改tomcat6默认的8080端口

$sudovi/etc/tomcat6/server.xml将修改为之后运行如下命令重启tomcat6服务即可:$sudoservicetomcat6restart如果新的端口号小于1024,如修改

系统 2019-08-12 09:27:04 3471

Python

递推最小二乘法——python程序

算法引用的数据为python自带的波士顿房价数据。代码如下:#data第一列为标记值#data后几列为特征向量#initialTheta为需要求得的thetaimportnumpyasnpimportsklearn.datasetsfromsklearn.model_selectionimporttrain_test_splitfromsklearn.metricsimportmean_squared_errorimportmatplotlibasmpli

系统 2019-09-27 17:56:20 3470

Android

Android+struts2+JSON方式的手机开发

在手机的后台服务无论是调用WebService还是Http请求,多数都是采用Android的HttpClient实现相关的调用实现。本文实现Android+Struts2+JSON方式实现为手机前台提供服务。涉及的知识点:1.Struts2框架的搭建(包括Struts2的jSON插件)2.Android前台访问Web采用HttpClient方式。3.Android采用JSON的解析。功能:模拟远程登录流程:手机后台服务:由于采用Struts2的JSON响应

系统 2019-08-12 09:30:11 3470

Jquery

jquery中限制部分字段不能输入

在一个比如表单验证的过程中,有时候,假如要用户一定要输入某个字段,否则不给输入其他字段,即屏蔽其他字段的输入,这个时候依然可以用jquery可以做到,例子如下:1假如页面有三个字段,用户名和密码和密码确认三个字段:
UserNameUsernamec

系统 2019-08-12 09:29:42 3470

C++

Visual Leak Detector for Visual C++ 2008/201

VisualLeakDetectorforVisualC++2008/2010/2012VisualLeakDetectorforVisualC++2008/2010/2012ProjectDescriptionVisualLeakDetectorisafree,robust,open-sourcememoryleakdetectionsystemforVisualC++.It'sprettyeasytouse.Afterinstallingit,youj

系统 2019-08-12 01:32:41 3469

redis

redis源码笔记-ae.c

ae.c是redis事件框架的具体实现,这篇blog对这份源码进行简单说明。其中谈到了作者已经标记的一些未来可能做的改进。ae.c1#include2#include3#include4#include5#include67#include"ae.h"8#include"zmalloc.h"9#include"config.h"1011/*Inclu

系统 2019-08-12 01:32:38 3469