码迷,mamicode.com
首页 > 其他好文
OAuth 2.0
OAuth(开放授权)是一个开放标准,允许用户让第三方应用访问该用户在某一网站上存储的私密的资源(如照片,视频,联系人列表),而无需将用户名和密码提供给第三方应用。OAuth 2.0比起1.0关注客户端开发者的简易性,同时为Web应用,桌面应用和手机,和起居室设备提供专门的认证流程。2012年10月...
分类:其他好文   时间:2015-02-04 07:05:15    阅读次数:182
以多个实例方式打开Notepad++
以多个实例方式打开Notepad++
分类:其他好文   时间:2015-02-04 07:05:39    阅读次数:260
[LeetCode] Palindrome Partitioning II 拆分回文串之二
Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ...
分类:其他好文   时间:2015-02-04 07:05:10    阅读次数:215
雷军是如何从程序员蜕变成职业经理人的
浏览次数:231次程序师2015年01月28日字号:大中小分享到:QQ空间新浪微博腾讯微博人人网豆瓣网开心网更多01991年,当雷军从武汉大学计算机系毕业的时候,他在软件圈内已经是一个名声不小的程序员了。在大学时代编撰的《深入DOS编程》和《深入Windows编程》颇受一些程序员的推崇,也成就了雷军...
分类:其他好文   时间:2015-02-04 07:06:30    阅读次数:189
vagrant学习记录
介绍:vagrant是一款用来构建虚拟开发环境的工具,通常用在开发时统一开发环境。相似工具有docker安装: 1.vagrant依赖于虚拟机工具,所以需要安装虚拟机,建议使用VirtualBox。下载地址:https://www.virtualbox.org/wiki/Downloads 2......
分类:其他好文   时间:2015-02-04 07:04:31    阅读次数:214
openSUSE 13.2 NTP设置
用于和NTP服务器同步时间。sudo service ntp stopsudo ntpdate -s time.nist.govsudo service ntp start
分类:其他好文   时间:2015-02-04 07:05:49    阅读次数:178
应用引擎BAE3.0(转)
add by zhj: 其实我主要是想看看基于docker的PaaS的特性。原文:http://developer.baidu.com/wiki/index.php?title=docs/cplat/bae概述百度应用引擎(BAE)提供多语言、弹性的服务端运行环境,能帮助开发者快速开发并部署应用。我...
分类:其他好文   时间:2015-02-04 07:05:20    阅读次数:282
codeblocks无法编译的问题解决方法
前几天把codeblocks的文件夹移动到移动硬盘里面,结果发现从此以后代码不能编译了,当时没有注意,就改用vs写代码,发现真的不是很习惯,正好学妹也碰到这种问题问我怎么解决,然后就百度了一下。我的codeblocks的安装包是codeblocks-10.05mingw-setup.exe,移动到移...
分类:其他好文   时间:2015-02-04 07:04:35    阅读次数:188
[LeetCode#169]Majority Element
The problem:Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may assume ...
分类:其他好文   时间:2015-02-04 07:04:34    阅读次数:205
收藏夹
BookmarksBookmarkshttp://localhost/weixinqun/weixinqun/index.php?m=Handle&a=handle阿里塔|创意生活新媒体 - 我爱搜罗创意设计,分享创意生活开源中国 - 找到您想要的开源项目,分享和交流Free Web Hostin....
分类:其他好文   时间:2015-02-04 07:04:29    阅读次数:204
代理服务器squid
http://www.baidu.com/s?wd=squid%E4%BB%A3%E7%90%86%E6%9C%8D%E5%8A%A1%E5%99%A8&f=12&rsp=0&oq=siquid%E4%BB%A3%E7%90%86%E6%9C%8D%E5%8A%A1%E5%99%A8&tn=baid...
分类:其他好文   时间:2015-02-04 07:02:07    阅读次数:242
二分图(最小路径覆盖)
Description Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an intersection and walking through town's...
分类:其他好文   时间:2015-02-04 02:05:07    阅读次数:296
基于文件的离线数据同步方案
一种基于文件的离线APP数据同步方案...
分类:其他好文   时间:2015-02-04 02:01:58    阅读次数:181
busybox制作文件系统2
二、根文件系统       0. 准备工作   目标目录 #mkdir rootfs1.0   CROSS_COMPILE   在用户根目录建立一个新文件:.pam_environment   内容如下: CROSS_COMPILE DEFAULT=/home/at91/x-tools/arm-softfp-linux-gnueabi/bin/arm-softfp-li...
分类:其他好文   时间:2015-02-04 02:03:01    阅读次数:213
二分图(行列变化)
HDU 4185 : Problem Description Thanks to a certain "green" resources company, there is a new profitable industry of oil skimming. There are large slicks of crude oil floating in the Gulf of Me...
分类:其他好文   时间:2015-02-04 02:03:10    阅读次数:206
How to solve "one or more projects in the solution were not loaded correctly" problem?
How to solve "one or more projects in the solution were not loaded correctly" problem in visual studio?...
分类:其他好文   时间:2015-02-04 02:04:08    阅读次数:306
【HDOJ】3242 List Operations
注意以下数据:[] ++ [][] -- [1,2][1,2] ++ [][] ++ [1][2] ++ [][2,3] -- []结果是[][][1,2][1][2][2,3] 1 /* 3242 */ 2 #include 3 #include 4 #include 5 6 #defin...
分类:其他好文   时间:2015-02-04 01:59:56    阅读次数:148
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!