PartyAnimals Bug 修复
Bug情况
描述:PartyAnimals显示运行中,却迟迟不见游戏打开,点击停止没有反应,只能通过结束进程来关闭
系统:Windows10
平台:Steam
解决方案:
找到PartyAnimals文件目录,删除UnityCrashHandler64.exe
即可
#00 Cryptography Overview
Citation
In "The Fall of a Giant", Ethel and his brother Billy add a word every two words as the encrypted ciphertext. TangBohu has a poem titled "I Love QiuXiang" in "The Collection of TangYin Poems". The method used in the above two examples is called steganography. Steganography belongs to a branch of cryptography development, it has evolved into digital watermarking technology tody. Cryptography is the technical science that studies the preparation and deciphering of codes.
Vim-Markdown的concealcursor特性不起作用
conceal可以将某些标记隐藏,隐藏并不是指将字符完全隐藏,而是在需要的隐藏的时候 隐藏,concealcursor的特性是当鼠标或光标移至被隐藏的语法块时,将显示所有的内容。
例如在Markdown中,加粗字体的语法为**HELLO**
,当光标不再这个文本块上时,将 显示加粗的HELLO
,当光标移至这个文本块时,将显示**HELLO**
。
如果安装了vim插件indentLine
,会导致与concealcursor冲突,只需要在vim配置文件 中加入下述语句即可解决: 1
let g:indentLine_concealcursor = ''
Python编码与进制转换大全
这将是史上最全的Python编码与进制转换
Python数据可视化
#00 数据结构总结
C/C++实现线性表、栈、队列、二叉树、图、查找、串、排序
Mysql Error: ERROR 2002 (HY000)
Description
Mac使用Brew安装mysql后启动报错
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
Python requests.get('127.0.0.1:5010/get/')返回503状态码
Description > Python requests.get('127.0.0.1:5010/get/')返回503状态码 > > 使用浏览器可以访问,也可以ping通这个地址 > 1
2
3
4
5
6
7
8
9
10#!/usr/bin/env python
# -*- coding:UTF-8 -*-
import requests
r = requests.get('http://127.0.0.1:5010/get/')
print(r)
# 运行结果:
<Response [503]>
Linux生成Banner信息
Linux生成字符Banner 1
2
3
4
5 ____
| __ ) __ _ _ __ _ __ ___ _ __
| _ \ / _` | '_ \| '_ \ / _ \ '__|
| |_) | (_| | | | | | | | __/ |
|____/ \__,_|_| |_|_| |_|\___|_|