最近有师弟去面试iOS开发,他谈论到,面试官竟然问他怎么分目录结构的,而且还具体问到每个子目录的文件名。目录结构确实很重要,面试官问他这些无疑是想窥探他的开发经验。清晰的目录结构,可让人一眼知道对应目录的职能,这也能体现开发者的经验和架构能力。目前,我接触过的项目中,比较常规的两种结构:1.主目录按...
分类:
移动开发 时间:
2015-08-29 12:21:44
阅读次数:
139
问题一 AMP output channel invert problem and modification 原因:如果硬件设计时,耳机或者喇叭的输出通道反了,就要对其进行左右对换。对策:如果通道反了,就要对寄存器0x72,0x73(channel1 mixier)和0x76,0x77(channe...
分类:
其他好文 时间:
2015-08-29 12:22:03
阅读次数:
318
题目传送门题意:给出一些砖头的长宽高,砖头能叠在另一块上要求它的长宽都小于下面的转头的长宽,问叠起来最高能有多高分析:设一个砖头的长宽高为x, y, z,那么想当于多了x, z, y 和y, x, z的砖头,如果i能叠在j上,那么g[i][j] = true,转换成DAG问题,dp[i]表示第i块叠...
分类:
其他好文 时间:
2015-08-29 12:20:58
阅读次数:
191
多线程网络的学习什么是进程? 系统中正在运行的一个应用程序是一个进程。 比如同时打开qq xcode系统就会分别启动两个进程。而且是相对独立的进程,相互不影响。 1个进程想要执行任务,就必须有线程,每个进程至少有1个线程。 线程是进程的基本执行单元,一个进程的所有任务都在线程中执行。串行: ...
分类:
编程语言 时间:
2015-08-29 12:20:28
阅读次数:
189
学习汇编能做什么(逆向,歪瓜,脱壳,反病毒,漏洞挖掘等等必备基础)
分类:
其他好文 时间:
2015-08-29 12:20:19
阅读次数:
130
https://www.udemy.com/python-programming-for-real-life-networking-use/https://pynet.twb-tech.com/blog/python/books-beginners.htmlPython Book Recommend...
分类:
编程语言 时间:
2015-08-29 12:20:20
阅读次数:
211
一.NSString的定义和基本使用(1).不可变字符串(NSString) 1>.创建字符串的6种方法 2>.字符串比较,及查找字符串对应位置 3>.从字符串中提取一部分,创建子字符串(2).可变字符串的增删改查(NSMutableString) 1>.添加 删除 插入方法 2>.替换方法二.数组...
分类:
编程语言 时间:
2015-08-29 12:19:41
阅读次数:
257
虚拟机及Ubuntu系统的安装地址 VMWare下载地址:http://www.itopdog.cn/utilities-operating-systems/virtual-machine/vmware-workstation.html ubuntu 下载:http://mirrors.163.com/ubuntu-releases/或者h...
分类:
其他好文 时间:
2015-08-29 11:19:42
阅读次数:
179
目录[-] 安装: 配置: ? ? ? ? ? ? ? ? ? ? linux安装svn其实很容易,个人觉得难就难在配置上,反复配置,琢磨,查找相关资料,总算是成功了。。 安装: 安装svn,一般情况下,选择yum方式安装还是比较简单...
分类:
Web程序 时间:
2015-08-29 11:16:47
阅读次数:
203
word分词是一个Java实现的分布式的中文分词组件,提供了多种基于词典的分词算法,并利用ngram模型来消除歧义。能准确识别英文、数字,以及日期、时间等数量词,能识别人名、地名、组织机构名等未登录词。能通过自...
分类:
编程语言 时间:
2015-08-29 11:19:29
阅读次数:
247
game.multiplayer?=?bundle.getString("multiplayer"?,null); is giving the error: java.lang.NoSuchMethodError:?android.os.Bundle.getString Other methods like ?game.word.word?=?bundle.getStringA...
分类:
移动开发 时间:
2015-08-29 11:18:27
阅读次数:
219
Notice that the view names are now specified as absolute names, as opposed to the relative name. It is targeting the ‘filters‘, ‘tabledata‘, and ‘graph‘ views located in the root unnamed template. ...
分类:
其他好文 时间:
2015-08-29 11:18:56
阅读次数:
194
添加CoreLocation.framework框架 导入#import <CoreLocation/CoreLocation.h> 通过地址查询经纬度方法: ????CLGeocoder?*geocoder?=?[[CLGeocoder?alloc]?init];
????[geocoder?geocodeAddressStr...
分类:
移动开发 时间:
2015-08-29 11:18:28
阅读次数:
195
FASPOT 功能简介
Oracle Fusion Application(FA)打补丁是管理Fusion应用的一个重要而有规律的管理任务。P4FA(Patch for FA)是对融合中间件,数据库,WebLogic Server等编写的可以一次性完成所有补丁任务的一个小程序。每个FA版本都有自己的一套P4FA补丁。 P4FA补丁是累积的,管理员最好始终应用最新的补丁以保持系统的健壮性。
P4...
分类:
Web程序 时间:
2015-08-29 11:16:37
阅读次数:
304
#ifndef __STATICLIST_
#define __STATICLIST_
#include
using namespace std;
#define MAXSIZE 8
#define ElemType int
typedef struct StaticListNode
{
ElemType data;
int cur;
}StaticListNode;
ty...
分类:
其他好文 时间:
2015-08-29 11:17:39
阅读次数:
158
Problem Description
Kingdom Rush is a popular TD game, in which you should build some towers to protect your kingdom from monsters. And now another wave of monsters is coming and you need again to kn...
分类:
其他好文 时间:
2015-08-29 11:14:29
阅读次数:
165
多级指针:int main()
{
int i=10;
int *p=&i;
int **pp=&p;
int ***ppp=&pp;
cout<<p<<":"<<*p<<":"<<endl;
cout<<pp <<":"<<*pp<<":"<<**pp<<":"<<endl;
cout<<ppp<<":"<<*ppp<<":"<<**ppp <<":" <<***ppp<<":" ...
分类:
编程语言 时间:
2015-08-29 11:15:09
阅读次数:
169