error: RPC failed; result=22, HTTP code = 411fatal:
The remote end hung up unexpectedly解决方法:git config http.postBuffer 524288000
分类:
其他好文 时间:
2014-05-10 01:06:09
阅读次数:
367
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using
System.Text.RegularExpressions; 6: using Sy...
分类:
其他好文 时间:
2014-05-09 23:52:24
阅读次数:
543
1 public static void main(String[] args) { 2
Integer in1 = 128; 3 Integer in2 = 128; 4 System.out.println(in1 == in2 ); 5...
分类:
其他好文 时间:
2014-05-09 23:50:29
阅读次数:
270
1: 2: using System; 3: using
System.Collections.Generic; 4: using System.Text; 5: using System.IO; 6: using
System.Runtime.Serialization.Formatters.Bi...
分类:
其他好文 时间:
2014-05-09 23:47:37
阅读次数:
333
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6:
namespace AnkeEdu.Tools 7: { 8: 9: /// 10: ///...
分类:
移动开发 时间:
2014-05-09 23:40:45
阅读次数:
551
在UEditor一些版本中,如果粘贴Excell中的内容到编辑器,会粘贴不进去,打开控制台发现JS报错了。
在ueditor.all.js:3048行报如下错误:
Uncaught TypeMismatchError: Failed to execute 'removeAttributeNode' on 'Element': The node provided is invalid....
分类:
其他好文 时间:
2014-05-09 15:16:34
阅读次数:
290
来篇文章:ASP。NET程序中动态修改web.config中的设置项目 (后台CS代码)
朋友们可以自行测试,我这里都没有问题了,鳖了一上午的问题总算解决了
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
usin...
分类:
Web程序 时间:
2014-05-09 15:08:43
阅读次数:
373
ping 192.168.1.150
开启telnet服务:
net start telnet//start telent
telnet 192.168.1.150 1433
解决类似80端口被占用问题:
netstat -ano 显示端口和pid
禁用http.sys:(可以看到pid 4 80端口的被NT kernel & System 占用)
1. net st...
用cocos2d-android开发android游戏时调用box2d中的newWorld(Vector2,boolean)时,出现如下报错:“java.lang.UnsatisfiedLinkError:Nativemethodnotfound:com.badlogic.gdx.physics.box2d.World.newWorld:(FFZ)J”解决方法:在当前类中添加代码:static{
System.loadLibrary("g..
分类:
移动开发 时间:
2014-05-09 14:28:27
阅读次数:
404
数据绑定(Data Binding)
数据绑定是把一个值或一组值映射到用户界面控件的过程,这个数据并不一定是来自关系型数据库,通常是来自于程序之外的系统,访问数据,并把它转换复杂的绑定状态的过程还是相当简单的。这就是为什么我们在这一章,而不是在第八章讨论这个主题的原因。下面的例子演示把数据库中的表绑定到组合框:
open System
open System.Collection...
分类:
其他好文 时间:
2014-05-09 13:56:25
阅读次数:
320