-
python 切片和迭代
######python切片####list或tuple的切片以list为例子L=list(range(50))##去前N或者N-M为元素print(L[2:9])##没隔X位取一个元素print(L[::2])print(L[10:50:5])#####字符串也是一样的S='AHGJHGWUYIIDJNJNDSUWIMM'print(S[::2])执行效果:[2,3,4,5,6,7,8][0,2......2,219 6 2017-11-05 10:29
-
android 无法gradle 万恶的墙
问题如下:Error:Couldnotfindcom.android.tools.build:gradle:2.2.2.Searchedinthefollowinglocations:file:/C:/ProgramFiles/Android/AndroidStudio/gradle/m2repository/com/android/tools/build/gradle/2.2.2/g......1,698 6 2017-03-06 09:12
-
Android 通用混淆
相信很多同学都遇到混淆的各种问题,最后半途而废了,以下是我成功混淆的代码,供大家参考。release{minifyEnabledtrueshrinkResourcestruezipAlignEnabledtruesigningConfigsigningConfigs.signconfigproguardFilesgetDefaultProguardFile('proguard-android.tx......3,159 4 2018-01-30 15:58
-
CheckBox setOnCheckedChangeListener大坑
在recycleview列表中有CheckBox,在使用中,有些操作,无可避免的要刷新适配器,这样需要一个变量记录上一状态是否被选中了,在hodler中需要这样cbCheckShop.setChecked(model.isCheck);//适配器刷新后还原勾选状态有这么一个场景,我需要点击CheckBox之后去刷新适配器,马上就想到了setOnCheckedChangeListener,于是有以下......2,180 4 2017-06-20 09:35
-
Vue 跨域请求
Vue为了安全,默认不支持跨域请求网络,这就很不方便我们本地调试,但是Vue提供代理配置,如下配置就可以解决跨域问题。 config/inder.js配置proxyTableproxyTable:{'/api':{target:'http://localhost:8002/',//要跨域的接口地址changeOrigin:true,pathRewrit......2,000 2 2018-11-29 11:19
-
无障碍模式监听微信聊天记录
服务代码:packagecom.hangzhou.rongke.myapplication;importandroid.accessibilityservice.AccessibilityService;importandroid.annotation.TargetApi;importandroid.content.Intent;importandroid.os.Build;importandro......21,472 2 2018-06-13 17:28
-
Python 多线程爬取网站小说
importrequestsfrombs4importBeautifulSoupfrommultiprocessingimportProcess,QueuefromthreadingimportThreadimportos#请求头字典req_header={'Accept':'*/*','Accept-Encoding':'gzip,deflate','Accept-Language':'zh-C......2,137 2 2018-05-23 11:00
-
2018年刑侦科目推理试题答案
最近很火的一道题目,用笔画了很久都找不到其中的联系,无奈使用最笨的穷举法,题目如下:Python运算:importtimemoc=["","","","","","","","","",""]defmach_question():times=0start=time.time()foriin["A","B","C","D"]:#推测第一道moc[0]=i#推测第二道forjin["A","B","C......2,550 2 2018-03-02 16:47
-
破解百度云垃圾速度
2,677 2 2018-01-03 19:59
-
Android内存泄露工具Leakcanary的使用
GitHub地址1、引入依赖dependencies{debugCompile'com.squareup.leakcanary:leakcanary-android:1.5.2'releaseCompile'com.squareup.leakcanary:leakcanary-android-no-op:1.5.2'}2.application中初始化publicstaticRefWatcherg......1,803 2 2017-09-07 14:58
-
重复造轮子,打造自己的底部导航栏
第一步在布局添加自定义view android:id="@+id/nv_tab" <?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.and......2,190 2 2017-06-05 13:46
-
kotlin 初探----配置篇
新的技术又是一个新的挑战!kotlin-----Android第一语言 1.安装kotlin插件 2.配置gradle app.gradle引入applyplugin:'kotlin-android'applyplugin:'kotlin-android-extensions'&nbs......1,832 2 2017-05-26 11:58
-
不能在线程创建handler
错误信息:在Android开发中,如果在一个Thread中启动了一个ProgressDialog用来提示正在连接(也就是防假死),然后在Handler中dismiss()这个ProgressDialog,程序就直接挂掉,异常信息是:Can'tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()原因分析:本人遇到的情况是在程序刚开始时候调......1,242 2 2016-02-04 10:04
-
动态添加Viewpger页数
后台只返回一个list集合让我去分页,好蛋疼,后来发现也很简单,使用list的一个方法subList搞定!关键代码://展示具体描述privatevoidinitViewPager(Listlist){intcount=4;intsp=list.size()/4;for(inti=0;i;i++){ListsubList=list.subList(i*count,count*(i+1));subl......1,479 2 2016-01-22 10:40
-
网站搭建之坑
坑一:数据库版本报错 django.core.exceptions.ImproperlyConfigured:mysqlclient1.3.13ornewerisrequired;youhave0.9.3 解决办法,注释掉这两行代码 坑二:数据库model转换成......14,007 1 2019-07-14 11:32