码迷,mamicode.com
首页 > 2015年02月10日 > 全部分享
c#项目转Java项目4
今天遇到了日期问题,看了下jdk8新特性http://www.ibm.com/developerworks/cn/java/j-lo-jdk8newfeature/index.htmlJava 的日期与时间 API 问题由来已久,Java 8 之前的版本中关于时间、日期及其他时间日期格式化类由于线程...
分类:编程语言   时间:2015-02-10 14:47:41    阅读次数:267
nodejs安装及环境配置(windows系统)
作为服务端运行javascript的平台的NodeJs,把前台javascript移到了服务器端,Google V8引擎使其运行效率非常高,它可以异步,无任何阻塞运行程序。nodejs包含http服务器,可以为我们实现 web系统设计,客户端javascript编译器,等一系列的功能。1.工具:wi...
分类:Windows程序   时间:2015-02-10 14:48:48    阅读次数:201
文本框输入内容智能提示效果
jquery+ajax实现类似百度输入框提示功能。
分类:其他好文   时间:2015-02-10 14:46:58    阅读次数:209
多层架构(参数化SQL、存储过程)
Java培训、Android培训、iOS培训、.Net培训、期待与您交流!设置参数化SQL的方式: ------语法一 //设置SQL语句中的参数 //定义 SqlParameter parUid = new SqlParameter("@userId", SqlDbType.NVarChar, 5...
分类:数据库   时间:2015-02-10 14:48:37    阅读次数:220
latex big file
当处理很大的文档时,经常将文件分成若干个部分分别进行编译,这时我们可以使用LATEX所提供的命令中国电子顶级开发网(EETOP)-电子设计论坛、博客、超人气的电子工程师资料分享平台hp^Ia:i\input\include\includeonly\input{texfile})M~y$_...
分类:其他好文   时间:2015-02-10 14:49:16    阅读次数:166
leetcode[18]4Sum
Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum of ...
分类:其他好文   时间:2015-02-10 14:47:48    阅读次数:172
leetcode[22]Generate Parentheses
Givennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:"((()))...
分类:其他好文   时间:2015-02-10 14:48:16    阅读次数:164
linux 防火墙配置
vi /etc/sysconfig/iptables # Generated by iptables-save v1.4.7 on Mon Feb 9 13:59:07 2015*nat:PREROUTING ACCEPT [0:0]:POSTROUTING ACCEPT [0:0]:OUTPUT....
分类:系统相关   时间:2015-02-10 14:46:27    阅读次数:233
(adhoc) process launch failed: timed out waiting for app to launch
I had a similar issue when trying to debug an App with Ad-Hoc provisioning... Check which provisioning you're using, it seems ad-hoc provisioning cann...
分类:移动开发   时间:2015-02-10 14:49:02    阅读次数:279
leetcode[15]3Sum
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:其他好文   时间:2015-02-10 14:48:12    阅读次数:203
脚本造成ie运行速度减慢的解决
最近在项目中,某些页面需要一直向服务器发送请求,获取最新的数据展示在页面,实现方式是通过setInterval实现的,但是在使用了一段时间之后,浏览器偶然就会报出“运行的脚本造成ie运行速度减慢,是否要停止运行此脚本”之类的提示。网上查了下,当浏览器认为当前运行的脚本处于失控状态的时候,就会给出类....
分类:其他好文   时间:2015-02-10 14:46:34    阅读次数:152
leetcode[4]Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ...
分类:其他好文   时间:2015-02-10 14:48:19    阅读次数:126
Entity Framework6 with Oracle
Entity Framework6 with Oracle(可实现code first)Oracle 与2个月前刚提供对EF6的支持。以前只支持到EF5。EF6有很多有用的功能 值得升级。这里介绍下如何支持Oracle 一.Oracle 对.net支持的一些基础知识了解介绍。1.早年的时候,微软自己...
分类:数据库   时间:2015-02-10 14:48:13    阅读次数:587
批驳小赵之IL无用论
道理越辨越明。我不是来吵架的,而是来澄清一些概念。赵劼的看法实在有些偏激,但凡与之意见向左的,一概穷追猛打至死。赵同学在社区的影响力在我之上,但这也正是其可怕之处——一旦有所偏差,必然会误导更多的朋友。有感于他的毁人不倦大多穿凿附会之说,于是,暂时搁下手上的工作,发此文以正视听。 综观赵劼《老赵谈I...
分类:其他好文   时间:2015-02-10 14:44:51    阅读次数:172
leetcode[29]Divide Two Integers
Divide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.class Solution {public: int divide(in...
分类:其他好文   时间:2015-02-10 14:46:30    阅读次数:174
javascript运算符instanceof
概述instanceof运算符可以用来判断某个构造函数的prototype属性是否存在另外一个要检测对象的原型链上。语法object instanceof constructor参数object要检测的对象.constructor某个构造函数描述instanceof运算符用来检测constructo...
分类:编程语言   时间:2015-02-10 14:44:54    阅读次数:221
leetcode[32]Longest Valid Parentheses
Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest...
分类:其他好文   时间:2015-02-10 14:45:36    阅读次数:169
1734条   上一页 1 ... 52 53 54 55 56 57 58 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!