码迷,mamicode.com
首页 > 2015年04月11日 > 全部分享
摇一摇
- (void)viewDidLoad{ [super viewDidLoad]; [[UIApplication sharedApplication] setApplicationSupportsShakeToEdit:YES]; [self becomeFirstResponder];}-...
分类:其他好文   时间:2015-04-11 01:10:21    阅读次数:123
五分钟 知晓Eclipse不为人知的秘密(越熟悉 越陌生)
Eclipse使用技巧;Eclipse使用快捷键;
分类:系统相关   时间:2015-04-11 01:09:42    阅读次数:178
Python基础概念2
1.bool变量及运算print 1 + 1 == 2print 1 + 1 != 2print 1 + 1 == 2 and 1 + 1 == 3print 1 + 1 == 2 or 1 + 1 == 3print not 1 + 1 == 2print 1 in [1, 2, 3]输出:Tru...
分类:编程语言   时间:2015-04-11 01:11:44    阅读次数:211
iOS Framework lipo报错 lipo: can't map input file
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't map input file: xxxFramework.framework...
分类:移动开发   时间:2015-04-11 01:11:00    阅读次数:3068
快速调试chromium
上一篇我们简单的将了在Ubuntu上编译chromium,androidcontent_shell_apk的编译,一切顺利的就能生成apk。但是我们仅仅只是照搬了人家google开源的东西,作为一个开发者我们应带着探索的精神,都说它稳定,速度快。它为什么这么快、稳定? 带着这一系列的问题,我们去学习...
分类:其他好文   时间:2015-04-11 01:08:43    阅读次数:119
How can I work smarter, not just harder? Ask it forever
How can I work smarter, not just harder?记住,永远要问自己这个问题。当你发现在做一件事情时,总是那么的繁琐无味,那么一定是出了什么问题。如果一味地强调更加勤奋,本身可能会犯方向性的错误。因为更加勤奋不做思考,那么你永远无法进步,永远也一直会那么地忙下去。只有经...
分类:其他好文   时间:2015-04-11 01:08:33    阅读次数:115
Leetcode Minimum Window Substring
题目地址:https://leetcode.com/problems/minimum-window-substring/题目解答:import java.util.HashMap;import java.util.Map;public class Solution { public Strin...
分类:Windows程序   时间:2015-04-11 01:10:44    阅读次数:240
调试chromium的快捷方式
上一篇我们简单的将了在Ubuntu上编译chromium,android?content_shell_apk的编译,一切顺利的就能生成apk。但是我们仅仅只是照搬了人家google开源的东西,作为一个开发者我们应带着探索的精神,都说它稳定,速度...
分类:其他好文   时间:2015-04-11 00:08:27    阅读次数:196
xplayer,我的开源音频播放机(Windows,C++)
项目地址: https://git.oschina.net/jthmath/xplayer 编译出来的程序下载地址: http://pan.baidu.com/s/1eQxoHgA 程序在Windows 8.1 64-bit下测试通过。目前暂不支持32-bit。 一、运行方法 运行xplayer.exe,选...
分类:编程语言   时间:2015-04-11 00:09:16    阅读次数:138
LA 4975(Casting Spells-manacher+暴力查找)
4975 - Casting Spells Time limit: 3.000 seconds  Casting spells is the least understood technique of dealing with real life. Actually, people find it quite hard to distinguish between a real spe...
分类:其他好文   时间:2015-04-11 00:07:35    阅读次数:187
Populating Next Right Pointers in Each Node--LeetCode
题目: Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; } Populate each next pointer to point to its next right n...
分类:其他好文   时间:2015-04-11 00:07:02    阅读次数:170
面试中被问到:Android中activity保存状态数据到底该在哪个方法中进行
面试中被问到:Android中activity保存状态数据到底该在哪个方法中进行,面试官也不一定靠谱...
分类:移动开发   时间:2015-04-11 00:07:02    阅读次数:192
【Java并发编程】之十:使用wait/notify/notifyAll实现线程间通信的几点重要说明
使用wait/notify/notifyAll实现线程间通信的几点重要说明...
分类:编程语言   时间:2015-04-11 00:08:02    阅读次数:191
【One Day菜鸟到大鸟】MyBatis搭建环境
一、概述     MyBatis是一个持久化框架和Hiberante差不多。比起JDBC来说MyBatis封装了JDBC让我们能够面向对象开发。比起Hiberante来说卸下了Hiberante那种重量级的东西而是一个轻量级的框架,之所以很多互联网公司愿意用这个比如JD.COM在某方面来来说MyBatis比较轻量,效率高,灵活性高,面临复杂的业务查询来说Hibernate的查询效率比起M...
分类:其他好文   时间:2015-04-11 00:05:55    阅读次数:169
Vector 容器迭代器 (一)
C++里面vector好像越来越成为取代数组的利器,具体区别详参C++ primer plus.今天写程序用到了这个东西,试水之后发现很多问题,特别是因为capacity和size的问题困扰了一天,虽然问题很stupid,还是把关于vector的介绍整理如下,希望用到改工具的人少走弯路: 一:什么是容器[1](文章援引已注明,请尊重原创作者): vector是C++标准模板库中的部分内...
分类:其他好文   时间:2015-04-11 00:04:30    阅读次数:213
SharedPreferences工具类
import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class PrefUtil { private static Context context; private ...
分类:其他好文   时间:2015-04-11 00:04:30    阅读次数:165
hdu1527取石子游戏 威佐夫博弈
//ak =[k(1+√5)/2],bk= ak + k (k=0,1,2,...n 方括号表示取整函数) //即(bk-ak)==ak*(√5-1)/2 或 (bk-ak)+ 1==ak*(√5-1)/2即输 #include #include #include #include using namespace std ; int main() {     int n , m;...
分类:其他好文   时间:2015-04-11 00:06:48    阅读次数:133
1648条   上一页 1 ... 93 94 95 96 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!