http://www.aqee.net/looking-back-my-recent-nine-months-as-an-indie-developer/引言有些人可能还记得,去年年初时,我写过一篇文章介绍我是如何开始成为一个独立程序员的文章。随着新的一年的到来,我想是该做一些反省/总结的时候了。在...
分类:
其他好文 时间:
2014-11-16 08:14:16
阅读次数:
255
计算有多少种解密字符串,因为是01串,故此只能最多有两种了。
才第二次使用Java解题,会不会像是披着Java外壳的C++程序呢?
实际体会:
C++转Java倒真的不难,最大的难点就是要知道如何使用Java的一些函数,比如本题的string处理,如果使用C++自然是直接加或者使用VC的直接push_back,不过Java好像有个什么StringBuilder类,这里我直接+=接起来了。
故此C++转Java的问题实际上是记忆问题,不存在理解问题了,因为Java有的概念,C++差不多都有,理解障碍就没有了...
分类:
编程语言 时间:
2014-11-15 17:06:41
阅读次数:
298
adb shell am start -a android.media.action.STILL_IMAGE_CAMERA 启动cameraadb shell input keyevent 27 //camera 键adb shell input keyevent 4 //back 键com.and...
分类:
数据库 时间:
2014-11-14 19:22:49
阅读次数:
1793
typedef __int64 ll;ll gao(ll l,ll r,ll n){//[l,r]内与n互素的数字个数 vector v; for(ll i=2;i*i1)v.push_back(n); int m=v.size(); ll res=0; for(...
分类:
其他好文 时间:
2014-11-13 23:58:45
阅读次数:
427
I was recently allocated a virtuoal server with apache installed. I tried to inspect the installation of apache and see if some back-end processes are...
分类:
Web程序 时间:
2014-11-13 06:59:33
阅读次数:
210
问:
As the title implies, I am using AFNetworking in an iOS project in which the application talks to a server. When the user signs in, the server responds by sending back a success flag and the res...
分类:
Web程序 时间:
2014-11-12 23:04:36
阅读次数:
278
--返回由备份集内包含的数据库和日志文件列表组成的结果集。--主要获得逻辑文件名USEmasterRESTOREFILELISTONLYFROMDISK='g:\back.Bak'Go************************************************/**//*利用ba...
分类:
数据库 时间:
2014-11-12 19:36:43
阅读次数:
225
1. 3rd library NineOldAndroids:Android library for using the Honeycomb (Android 3.0) animation API on all versions of the platform back to 1.0! StickyListHeaders, HeaderListView:为ListView增加Secti...
分类:
其他好文 时间:
2014-11-12 18:17:31
阅读次数:
144
从一个页面返回到另一个页面,两种方法:
第一种也是我最常用的一种:
android:id="@+id/linearLayout"
android:layout_width="fill_parent"
android:layout_height="45dp"
...
分类:
其他好文 时间:
2014-11-10 23:26:53
阅读次数:
283
1 #include "../../st.h" 2 3 int main() 4 { 5 vector nums; 6 double t; 7 int n; 8 cout>n;10 cin>>t;11 nums.push_back(t);12 ...
分类:
编程语言 时间:
2014-11-10 21:41:57
阅读次数:
295