-
## 参考资料
做一个懒惰高效的Android程序员(8)
- [ ] http://blog.jobbole.com/76361/
- [ ] Android UI开发第四十三篇——使用Property Animation实现墨迹天气3.0引导界面及动画实现 http://blog.csdn.net/xyz_lmn/article/details/38906363
- [ ] 伯乐在线 > …
itang updated
10 years ago
-
# cookie
参考资料:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies
1.
可以在 chrome developer tool 中 application 中看到
Set-Cookie: \=\
Cookie: yummy_cookie=choco; tasty_cookie=strawber…
-
## 为方便大家了解最新的更新情况,采取时间倒序排列
### 20190507
前段时间有更过一版,没在这里说,删除了很多废旧和不怎么更新的链接。
今天这次新增了小程序的框架和一些网友提供的社区、工具、手册和插件等。
https://tencent.github.io/wepy/
http://mpvue.com/
https://taro.aotu.io/
http…
-
http://www.cnblogs.com/sylvanas2012/archive/2013/05/07/3064025.html
-
https://github.com/jgthms/css-reference/ (可视化CSS 属性 👍 💯 )
https://github.com/jgthms/html-reference (可视化 HTML👍 💯 )
https://fvsch.com/code/css-locks/ (The math of CSS locks, CSS 数学计算函数)
http://ww…
-
这个会加在添加rss界面里,方便添加rss源,大家可以整理自己喜欢觉得值得放在APP里的。
-
```python
#!/usr/bin/env python
def yield_test(n):
for i in range(n):
print("in i=",i)
yield call(i)
print("out i=",i)
#做一些其它的事情
print("do so…
-
# 性能测试方案
## 自变量
文件数、文件类型
## 文件数量的递增顺序
10、20、30、40(这个可能区别不明显)
10、100、1000...
## 需要检测的性能指标
运行时间、内存、CPU占用率
## 需要进行性能测试的地方
序列化与反序列化
incrementally_pull()中147-171行(即计…
-
https://github.com/JingbinLiu/planet_A carla8
https://github.com/createamind/Planet carla94
-------------------------------------------------------------------------
系统层面:
https://askubuntu.com/…
-
经常看到有关于Android多进程间通信的问题,由于接触进程方面较少,想了解下一般什么情况下使用多进程,有什么好处,大概怎样设计的?求指教。