首页 > 2015年09月30日 > 全部分享
编译gcc
下载源码自GNU FTP站下载GCC。自Infrastructure页面下载四个库的源代码,即GMP、MPFR、MPC以及ISL(ISL非必需)。也可以不手工下载,执行源码中的./contrib/download_prerequisites 可将GRAPHITE_LOOP_OPT改为no,不下载IS...
分类:其他   时间:2015-09-30 11:00:24    收藏:0  评论:0  赞:0  阅读:207
javascript 数组合并与去重
在网上看到一些面试题,是关于数组的合并与去重的,就在此记录一下。
分类:编程语言   时间:2015-09-30 11:00:14    收藏:0  评论:0  赞:0  阅读:159
Matlab删除NaN数据
删除包含NaN的行:a(any(isnan(a), 2),:) = [];删除全部为NaN的行:a(all(isnan(a), 2),:) = [];
分类:其他   时间:2015-09-30 10:59:54    收藏:0  评论:0  赞:0  阅读:219
MySQL中的备份和恢复
MySQL备份 MySQL中的逻辑备份是将数据库中的数据备份为一个文本文件,备份的文件可以被查看和编辑。在MySQL中,使用mysaldump工具来完成备份。有以下3种来调用mysqldump:备份指定的数据库,或者此数据库中某些表。shell>mysqldump [option] db_name....
分类:数据库技术   时间:2015-09-30 10:59:45    收藏:0  评论:0  赞:0  阅读:342
Dictionary在多线程情况下
Add时出错错误信息:Index was outside the bounds of the array.详细信息:at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)at ***...
分类:编程语言   时间:2015-09-30 10:59:34    收藏:0  评论:0  赞:0  阅读:274
理解SVG的图形填充规则
SVG的图形填充规则通过fill-rule属性来指定。有效值:nonzero | evenodd |inherit默认值:nonzero fill-rule属性用于指定使用哪一种算法去判断画布上的某区域是否属于该图形“内部”(内部区域将被填充)。对一个简单的无交叉的路径,哪块区域是“内部”是很直观....
分类:其他   时间:2015-09-30 10:59:24    收藏:0  评论:0  赞:0  阅读:178
Sep 30th-JavaScript的数组方法总结
---恢复内容开始---Js的Array包含多种数据类型,并且有指定的某个位置(索引)来访问每个元素。1.length属性var arr=[1,2,3.14,null,'hello',true];arr.length; //6ps:直接给Array的length值赋予一个新的值会导致Array的大小...
分类:编程语言   时间:2015-09-30 10:59:14    收藏:0  评论:0  赞:0  阅读:165
如何给telerik的控件应用样式Theming
官方参考文档:http://docs.telerik.com/devtools/silverlight/styling-and-appearance/styling-apperance-themes-runtime
分类:其他   时间:2015-09-30 10:59:04    收藏:0  评论:0  赞:0  阅读:191
web worker
inline workerfunction worker() { setInterval(function() { postMessage({foo: "bar"}); }, 1000);}var code = worker.toString();code = code.substring...
分类:Web开发   时间:2015-09-30 10:58:54    收藏:0  评论:0  赞:0  阅读:187
探讨android更新UI的几种方法(转)
作为IT新手,总以为只要有时间,有精力,什么东西都能做出来。这种念头我也有过,但很快就熄灭了,因为现实是残酷的,就算一开始的时间和精力非常充足,也会随着项目的推进而逐步消磨殆尽。我们会发现,自己越来越消极怠工,只是在无意义的敲代码,敲的还是网上抄来的代码,如果不行,继续找。 这就是项目进度没有规划好...
分类:移动平台   时间:2015-09-30 10:58:34    收藏:0  评论:0  赞:0  阅读:201
第四次作业
答:序列输出rraratratatatatat_ratatatatat_a_ratatatatat_a_rratatatatat_a_rat_atratatatatat_a_rat_at_a_rat
分类:其他   时间:2015-09-30 10:58:24    收藏:0  评论:0  赞:0  阅读:210
Android Studio导入第三方类库的方法
导入*.jar包新建好了Android项目,添加一个第三方已经打包好的jar文件进你项目,下面就已添加一个odata4j的一个包在项目中添加一个libs文件直接通过COPY/PAST 把你下载的jar文件添加到libs文件夹下然后在libs文件夹和添加的*.jar文件下鼠标单击菜单 add as l...
分类:移动平台   时间:2015-09-30 10:58:14    收藏:0  评论:0  赞:0  阅读:219
j2ee常用包的作用
1.antlr-2.7.7.jar 呵呵 一句话,没有此包,hibernate不会执行hql语句2.aopalliance-1.0.jar这个包是AOP联盟的API包,里面包含了针对面向切面的接口。通常Spring等其它具备动态织入功能的框架依赖此包。3.asm-3.3.jar我只知道:ASM是小巧...
分类:其他   时间:2015-09-30 10:58:04    收藏:0  评论:0  赞:0  阅读:225
jaxb异常 Class has two properties of the same name username
importjavax.xml.bind.annotation.XmlAccessType;importjavax.xml.bind.annotation.XmlAccessorType;importjavax.xml.bind.annotation.XmlAttribute;importjavax...
分类:其他   时间:2015-09-30 10:57:54    收藏:0  评论:0  赞:0  阅读:1921
c#变量在for循环内声明与外的区别
1.这样写是错误的 #region 有这样的一个字符串类型的数组{"老杨","老苏","老马","老牛"};要求 变换成这样一个字符串:老杨|老苏|老马|老牛 string[] str = { "老杨", "老苏", "老马", "老牛" }; for (...
分类:Windows开发   时间:2015-09-30 10:57:44    收藏:0  评论:0  赞:0  阅读:320
jquery validate详解
function validateField() { $('#registerForm').validate({ rules: { firstName: { required: true }, ...
分类:Web开发   时间:2015-09-30 10:57:34    收藏:0  评论:0  赞:0  阅读:249
mac使用技巧,长久更新
1.使用ctrl+触摸板轻点来代替右键2.如何在mac上卸载nodejs 2.1 首先新建一个.sh文件(uninstall_node.sh)#!/bin/bashlsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom \| while read...
分类:系统服务   时间:2015-09-30 10:57:14    收藏:0  评论:0  赞:0  阅读:229
经典算法合集
本文所有算法采用vs2010环境c++语言编写,使用公共头如下。在线提交时 #include "stdafx.h" 需要去掉。 1 #include "stdafx.h" 2 #include"iostream" 3 #include"vector" 4 #include"iterator" 5 #...
分类:编程语言   时间:2015-09-30 10:57:04    收藏:0  评论:0  赞:0  阅读:291
Switching from Redhat Linux to Oracle Linux in about 5,000 easy steps
Wayback WhenI remember being at Oracle Open World when Larry Ellison unveiled Oracle Enterprise Linux (OEL, which is now just Oracle Linux, or OL). I....
分类:数据库技术   时间:2015-09-30 10:56:54    收藏:0  评论:0  赞:0  阅读:537
Cloning EBS from Linux 5 to Linux 6 Fails: "Error While Loading Shared Libraries: libclntsh.so.10.1
SYMPTOMSDuring clone Oracle Applications R12 from Linux 5 to Linux 6 the following error occurs in theapps tier:perl adcfgclone.pl appsTier73% complet...
分类:系统服务   时间:2015-09-30 10:56:34    收藏:0  评论:0  赞:0  阅读:418
1399条   上一页 1 ... 53 54 55 56 57 ... 70 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!