//Intent intent=new Intent();//intent.setClass(MainActivity.this, GPSService.class);//以上二条可以合并成如下一条Intent intent = new Intent(this,GPSService.class); ...
分类:
其他好文 时间:
2017-11-01 20:37:52
阅读次数:
123
本文作者:三星s7edge 一.此贴目的:分析一个木马APP样本的行为。—————————————————————————————————————————————————-二.分析步骤及结果: 文件名称:Project_Mod.apk MD5值: 773833c1e4632aaa6b000e891d ...
分类:
移动开发 时间:
2017-11-01 18:14:15
阅读次数:
326
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? 思路:快慢指针,设置一个走两步的快指针,和一个走一步的慢指针,如果有环,则它们一 ...
分类:
其他好文 时间:
2017-11-01 14:59:50
阅读次数:
176
两个TIMESTAMP之差得到的是INTERVAL类型,而有时我们只需要得到两个时间相差的秒数,如果变成INTERVAL之后,想要获取这个值会非常麻烦。 比较常见的方法是使用EXTRACT来抽取获得的INTERVAL类型的日、时、分和秒来分别计算并求和: SQL> create table t_ti ...
分类:
其他好文 时间:
2017-10-31 20:12:47
阅读次数:
173
1启用虚拟主机配置httpd.conf文件下includeconf/extra/httpd-vhosts.conf开启2配置httpd-vhost.conf//监听端口,NameVirtualHost如果没有这个,<VirtualHost>标签就没什么作用NameVirtualHost*:80<VirtualHost*:80>
ServerNametest1.com
DocumentRoot/var/www/html..
分类:
Web程序 时间:
2017-10-30 21:16:35
阅读次数:
232
SaintKings-Mac-mini:~ saintking$ python Python 2.7.10 (default, Jul 30 2016, 18:31:42) [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on dar ...
分类:
系统相关 时间:
2017-10-30 19:42:46
阅读次数:
463
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order. E ...
分类:
其他好文 时间:
2017-10-29 18:49:04
阅读次数:
210
一.背景1.1 jello@jello:~$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 16.04.3 LTSRelease: 16.04Codename: xenial1 ...
分类:
系统相关 时间:
2017-10-29 17:39:10
阅读次数:
551
一、配置httpd.conf# Virtual hosts#Include conf/extra/httpd-vhosts.conf //取消这一行的# 二、配置httpd-vhosts.conf文件 1.多IP模式<VirtualHost *:80> DocumentRoot "E:/www/ht ...
分类:
Web程序 时间:
2017-10-29 11:05:53
阅读次数:
273
response.selector.xpath('//')#//从根开始匹配 .xpath('//img[@*])#找出所有img的所有属性 .xpath('//img/@src').extract()#找出所有img的src属性 .xpath('//a[@href='index.html']'). ...
分类:
其他好文 时间:
2017-10-28 21:58:47
阅读次数:
122