码迷,mamicode.com
首页 > 2014年09月16日 > 全部分享
学习simple.data之基础篇
simple.data是一个轻量级的、动态的数据访问组件,支持.net4.0。1、必须条件和依赖性:v4.0 or greater of the .NET framework, orv2.10 or greater of the Mono framework项目中引用Simple.Data.Core...
分类:其他好文   时间:2014-09-16 01:33:29    阅读次数:257
ubuntu网络设置
1.桥接1. 以DHCP方式配置网卡sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行:auto eth0iface eth0 inet dhcp2. 为网卡配置静态IP地址sudo vi /etc/network/interfacesauto eth...
分类:其他好文   时间:2014-09-16 01:33:19    阅读次数:202
满屏品字布局css
test 效果图:
分类:Web程序   时间:2014-09-16 01:32:59    阅读次数:5560
Hdu5017模拟退火
=。= 之前做过有关果蝇算法的东西,然后发现这俩个其实就是一个东西。。。当时都没想啊,其实想到都不一定能撸对。#include #include #include #include #include #include #include #include #include #include #incl...
分类:其他好文   时间:2014-09-16 01:32:49    阅读次数:172
HTML5 修改浏览器url而不刷新页面
嘛,起因是黑子大叔在微博上的一条@信息,找起了这个的实现,看了一圈google的中文信息内似乎还没有怎么提到这个的内容,就发表上来。详细效果就是类似于用Firefox4+/Chrome 5+/Safari 5+/Opera 11.5+登录新浪微博后看到的个人时间轴,在翻页时可以观察到这个效果,地址栏...
分类:Web程序   时间:2014-09-16 01:32:39    阅读次数:4522
TreeSet的特性
TreeSet在Set的元素不重复的基础之上引入排序的概念,其中对自身拥有Comparable的元素,可以直接进行排序,比如字符串,按照字母的自然顺序排序,此处说下对于自定义对象排序的方式。1、存储元素的类实现Comparable接口实现Comparable接口,其中只有一个方法compareTo(...
分类:其他好文   时间:2014-09-16 01:32:29    阅读次数:243
【图片二进制接受】php
$filename = intval ( $_GET ['id'] ) . '.jpg'; $xmlstr = $GLOBALS ['HTTP_RAW_POST_DATA']; if (empty ( $xmlstr )) { $xmlstr = file_get_contents ...
分类:Web程序   时间:2014-09-16 01:32:09    阅读次数:166
Super Jumping! Jumping! Jumping! hdu
1 #include 2 #include 3 #include 4 using namespace std; 5 int n; 6 int dp[1005],val[1005]; 7 8 int main() 9 {10 while( scanf("%d",&n) && n ){...
分类:其他好文   时间:2014-09-16 01:31:49    阅读次数:221
补上15的
今晚断网了 所以只能现在这里先记着了,为期13天的第一阶段(杨洪波老师) 基础加强 ,和ADO.net结束了,在这里谢谢小杨老师,虽然不能说小杨老师课讲的透彻,但是,这也是我目前为止觉得还行的老师,其实,每个人都是老师领进门,修行靠个人了 现在我才发现平时少敲代码是最大的短板 还有基础很不扎实 这都...
分类:其他好文   时间:2014-09-16 01:31:39    阅读次数:196
Fedora Wget unable to resolve hostname 问题
今天用Fedora wget下载个Ubuntu镜像文件,结果一直显示Resolving xxxxxxxxxxxx(域名)... failed: No address associated with hostname.wget: unable to resolve host address “xxxx...
分类:其他好文   时间:2014-09-16 01:31:29    阅读次数:176
解析Service之你需要了解的一些东东
Service
分类:其他好文   时间:2014-09-16 01:31:19    阅读次数:207
mybatis generator自动生成 实体类, sqlmap配置文件 详细介绍
我使用的是Eclipse Luna 装了自己常用的插件, generator也是其中一个推荐下载 MyBatis_Generator_1.3.1.zip离线安装包 ...
分类:数据库   时间:2014-09-16 01:31:09    阅读次数:330
十五、EnterpriseFrameWork框架核心类库之系统启动入口与初始化
本章内容是讲三种开发模式,web模式、Winform模式和Wcf模式的系统启动入口有什么区别,以及启动后系统初始化的内容;为什么要把这些单独提出来讲一章,因为我觉得本章非常重要,我们都知道程序中的main()函数,称之为主函数,是所有程序运行的入口;当你拿着一个程序肯定是从这个函数开始阅读,慢...
分类:其他好文   时间:2014-09-16 01:30:59    阅读次数:377
ExecutorService生命周期
ExecutorService接口继承了Executor接口,定义了一些生命周期的方法Java代码publicinterfaceExecutorServiceextendsExecutor{voidshutdown();ListshutdownNow();booleanisShutdown();bo...
分类:其他好文   时间:2014-09-16 01:30:49    阅读次数:279
samba常用命令
1、# smbstatusSamba version 3.6.23PID Username Group Machine --------------------------------------------------...
分类:其他好文   时间:2014-09-16 01:30:39    阅读次数:153
线程初级基础(一)
一,单线程例子#include #include #include #include using namespace std;void *thread_func(void *arg){ for(int i=0; i<3; i++) { sleep(1); co...
分类:编程语言   时间:2014-09-16 01:30:19    阅读次数:243
dojo框架之创建自定义的类
我们在dojo同级目录中创建一个文件夹itfanr,itfanr中新建一个文件person.js : define([?"dojo/_base/declare"],?function?(declare)?{ ????return?declare("itfanr.person",?null,?{ ???????...
分类:其他好文   时间:2014-09-16 00:28:59    阅读次数:168
1751条   上一页 1 ... 93 94 95 96 97 98 99 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!