码迷,mamicode.com
首页 > 2019年01月07日 > 全部分享
紫猫插件-文件读写(1-13)
QM[zm]05.01 文件读写之读取乱码文件(VIP)小知识:了解下base64编码(功能就目前而言只是让内容无法直接读取 还有一个常用用处是可以把图片的二进制流base64编码 把图片作为字符串来传输 实际上稍微懂一点这方面的知识的很容易看到真实的内容)举个例子 比如迅雷下载地址我们把第一行的字... ...
分类:其他好文   时间:2019-01-07 01:39:59    阅读次数:1106
小说脑洞:《绿帽侠》
简介:男主得到一个大绿帽系统,每当他被戴一次绿帽,就能得到一些绿点,而绿点可以兑换系统中的东西。 风格:荒诞主义。 篇幅:中篇。 开篇:他一次被兄弟绿了后,得到一个大绿帽系统,只要他后面被认为是被戴了绿帽了,就可以得到绿点。男主破罐子破摔,故意被甩,被绿,赚取绿点。 中篇: 随着被绿的次数越多,男主 ...
分类:其他好文   时间:2019-01-07 01:39:49    阅读次数:227
Swift - UIStepper
```swift import UIKit class ViewController: UIViewController{ var stepper:UIStepper! var label:UILabel! override func viewDidLoad() { super.viewDidLoa... ...
分类:编程语言   时间:2019-01-07 01:39:43    阅读次数:248
python - psutil 系统信息模块
https://psutil.readthedocs.io/en/latest/#windows-services ...
分类:编程语言   时间:2019-01-07 01:39:35    阅读次数:162
urllib:处理网络异常
1.URLError 2.HTTPError 3.最好的写法先捕获子类的错误在捕获父类 ...
分类:Web程序   时间:2019-01-07 01:39:27    阅读次数:198
jquery的post方式发送AJAX请求
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content='text/html;charset=utf-8'> 5 <script src="https://cdn.bootcss.com/jquery ...
分类:Web程序   时间:2019-01-07 01:39:16    阅读次数:537
python的return
关于python的return用法,在stackoverflow里的问题: Python — return, return None, and no return at all Consider three functions: On the actual behavior, there is no ...
分类:编程语言   时间:2019-01-07 01:39:05    阅读次数:213
js 去重
function unique(array) { let obj = {}; return array.filter((item, index, array) => { let newItem = typeof item 'function' ? item : JSON.stringify(item ...
分类:Web程序   时间:2019-01-07 01:38:58    阅读次数:195
jquery的get方式发送AJAX请求
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content='text/html;charset=utf-8'> 5 <script src="https://cdn.bootcss.com/jquery ...
分类:Web程序   时间:2019-01-07 01:38:46    阅读次数:201
Python(54)_大于66的分组存放在字典里
#-*-coding:utf-8-*- ''' 分别放在列表里 ''' li = [11,22,33,44,55,66,77,88,99,110] result ={} for row in li: if row>66: if 'key1' not in result: # 如果不在,就创建键值对,... ...
分类:编程语言   时间:2019-01-07 01:38:37    阅读次数:169
glVertexAttribPointer 用法简介
在内存中采用交叉模式存储,向gpu传入顶点数据的方法 GPU: CPU: init() ...
分类:其他好文   时间:2019-01-07 01:38:31    阅读次数:296
中介者模式
1.定义:定义一个封装一组对象如何交互的对象; 通过使对象明确地相互引用来促进松散耦合,并允许独立地改变 2.类型:行为型 3.适用场景:系统中对象之间存在复杂的引用关系,产生的相互依赖关系结构混乱且难以理解; 交互的公共行为,如果需要改变行为则可以增加新的中介者类4.优点:将一对多转化成对了一对一 ...
分类:其他好文   时间:2019-01-07 01:38:23    阅读次数:161
腾讯人脸识别api签名,演示demo
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Security.Cryptography; using System.Text; using... ...
分类:Windows程序   时间:2019-01-07 01:38:15    阅读次数:511
urllib库认证,代理,cookie
认证,代理,cookie 1from urllib.request import HTTPBasicAuthHandler, HTTPPasswordMgrWithDefaultRealm, build_opener 2from urlli ...
分类:Web程序   时间:2019-01-07 01:38:02    阅读次数:171
[Algorithms]图的搜索
未完待续 知道图的存储,DFS,BFS 二分图判定 DFS也可求图的拓扑序。 ...
分类:其他好文   时间:2019-01-07 01:37:51    阅读次数:202
python tcp黏包和解决方法
一、TCP协议 粘包现象 和解决方案 黏包现象让我们基于tcp先制作一个远程执行命令的程序(命令ls -l ; lllllll ; pwd)执行远程命令的模块 需要用到模块subprocess subprocess通过子进程来执行外部指令,并通过input/output/error管道,获取子进程的 ...
分类:编程语言   时间:2019-01-07 01:37:28    阅读次数:216
How To Put Arrows at the Bottom of a Div(给一个div元素下边加个向下箭头的方法)
You’ll only need HTML and CSS to make this element.(这个方法只需要用到html和css) The HTML is simple. All you need is a div element with a class name. Here’s wha ...
分类:其他好文   时间:2019-01-07 01:37:12    阅读次数:181
912条   上一页 1 ... 41 42 43 44 45 46 47 ... 54 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!