My friend Sandy she wants me to do her a favor. She'd like to clear Hangouts chat history. I think she just want to protect her privacy so I show her how to do it. First I use Google Takeout to download all stuff inside her Google Account. Second I u…
Indexes and search engines These sites provide indexes and search engines for Go packages: godoc.org gowalker gosearch Sourcegraph Contributing To edit this page you must be a contributor to the go-wiki project. To get contributor access, send mail t…
http://blog.csdn.net/ldghd/article/details/9632455 *****************************      一      ************************** AssetBundle incompatibility 1   I just started receiving the following error: The asset bundle 'http://***.unity3d' couldn't be lo…
Let's take a look at a very popular mobile game "Garena 传说对决" . It would be very interesting~ My friend Carrie's confused about "Certificate Pinning". Let me show you how to verify  "Certificate Pinning". Use a proxy server t…
https://www.digitbin.com/youtube-ads-block/ 1. OGYouTube | Mod AdBlocker YouTube OGYouTube App is a forked version of the original YouTube App with AdBlocker, Direct Download Links, Background video play, Dark Mode, Pop-Up window and much more. The O…
List of Chromium Command Line Switches https://peter.sh/experiments/chromium-command-line-switches/ There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experi…
参考:https://peter.sh/experiments/chromium-command-line-switches/ List of Chromium Command Line Switches Condition Explanation -- ⊗ Report pseudo allocation traces. Pseudo traces are derived from currently active trace events. ↪ --/prefetch:1[1] ⊗ /pre…
https://www.quora.com/What-is-the-best-way-to-download-YouTube-videos-for-free There are various methods to download YouTube video for free. How To Download Youtube Videos Without any software Open YouTube from your mobile browser and open the video…
https://sites.google.com/a/chromium.org/chromedriver/capabilities http://stackoverflow.com/questions/tagged/selenium-chromedriver ChromeDriver - WebDriver for Chrome Search this site     Capabilities & ChromeOptions Capabilities are options that you…
转自:http://peter.sh/experiments/chromium-command-line-switches/ There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experimenting. This page lists the availabl…
There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experimenting. This page lists the available switches including their conditions and descriptions. Last au…
CODE: #!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-8-28 @author: guaguastd @name: login.py # Request over http def google_login_http(resource_type, action, field): # import requests import requests import re # key information key = '…
My friend Carrie'd like to know "Garena 传说对决" violates any mobile risks such as insecure data storage or sensitive data disclosure . Let's take a look at this very popular mobile game "Garena 传说对决" . It would be very interesting~ Carri…
Instant Messaging for Business: Your 10 Best Options By Iaroslav Kudritskiy It's probably not a surprise to you, but you or our employees are probably already using instant messaging for business. Formally or informally their likely having conversati…
---恢复内容开始--- 最近在安装了vsftpd后 添加了虚拟账户后 新建用户 为新用户创立独立的工作目录 因为虚拟用户在工作目录需要上传文件 所以必须拥有此目录的W权限,但每当给此目录加上W权限后,就会报以下错误: vsftpd:500 OOPS: vsftpd: refusing to run with writable root inside chroot () 网上搜索解决方案 都说从2.3.5之后,vsftpd增强了安全检查,如果用户被限定在了其主目录下,则该用户的主目录不能再具有写…
参考 http://www.cnblogs.com/CSGrandeur/p/3754126.html 在Ubuntu下用 vsftpd 配置FTP服务器,配置 “ sudo chmod a-w /home/ftp ” 这句之后发现根目录不能上传文件. 配置根目录可写又报 refusing to run with writable root inside chroot错误. 在 http://eamin.net/vsftpd-500-oops/ 这里找到原因是“用户的根目录可写,并且使用了chr…
<Inside UE4>目录 InsideUE4 UE4无疑是非常优秀的世界上最顶尖的引擎之一,性能和效果都非常出众,编辑器工作流也非常的出色,更难得宝贵的是完全的开源让我们有机会去从中吸取营养,学习世界上第一流游戏引擎的架构思想. 本系列教程<Inside UE4>,希望从最最底层的C++源码剖析,到最最上层的蓝图节点,力求解释清楚各个选项的内部运作机理.希望做到知其然,而更要知其所以然.也UE4也是一个非常博大精深的引擎,分析透彻各个具体模块的运作机理无疑也是个艰巨的任务,因此…
在子线程中new一个Handler为什么会报以下错误? java.lang.RuntimeException:  Can't create handler inside thread that has not called Looper.prepare()  这是因为Handler对象与其调用者在同一线程中,如果在Handler中设置了延时操作,则调用线程也会堵塞.每个Handler对象都会绑定一个Looper对象,每个Looper对象对应一个消息队列(MessageQueue).如果在创建Ha…
<Inside UE4>-0-开篇 InsideUE4   前言 VR行业发展是越来越火热了,硬件设备上有HTC VIVE,Oculus rift,PS VR,各种魔镜:平台上有Steam VR,Gear VR,Google Daydream.而游戏引擎上则有两大阵营:Unreal Engine和Unity.Unity凭着先期的移动平台优势占领了一大部分移动平台的市场,所以目前上手机上的VR游戏也大部分是由Unity开发的.而PC平台上,Unreal Engine凭借着优异的性能,绚丽的渲染效…
Ubuntu 12.04 64bit系统下安装的vsftpd,在登陆时提示500 OOPS: vsftpd: refusing to run with writable root inside chroot().根本原因在于,从vsftpd_2.3.5版开始,取消了根目录的可写权限.因此,网上的普遍解决方案是以下两种: 方案一 $ chmod a-w /vaf/ftp 方案二 $ vim /etc/vsftpd.conf add the following allow_writeable_chr…
<Inside UE4>-1-基础概念   InsideUE4   创建测试项目 接上文的准备工作,双击生成的UE4Editor.exe,选择创建测试C++空项目Hello(以后的源码分析都会基于该最简单的项目)   项目文件结构 VS项目和文件目录: 可以看到,Config目录里带着3个最主要的配置,Editor,Engine,Game.代码方面自动生成了用于编译系统的3个.cs文件,C++代码方面生成了一个Hello "Game Module",和HelloGameMo…
<Inside UE4>-2-GamePlay架构(一)Actor和Component     <Inside UE4>-2-GamePlay架构(一)Actor和Component InsideUE4   UE4深入学习QQ群: 456247757   引言 如果让你来制作一款3D游戏引擎,你会怎么设计其结构? 尽管游戏的类型有很多种,市面上也有众多的3D游戏引擎,但绝大部分游戏引擎都得解决一个基本问题:抽象模拟一个3D游戏世界.根据基本的图形学知识,我们知道,为了展示这个世界,…
Snippet Designer is a Visual Studio plug in which allows you to create and search for snippets inside the IDE https://visualstudiogallery.msdn.microsoft.com/803e021c-fce2-4637-a05d-bb078cffc492?SRC=VSIDE https://github.com/mmanela/SnippetDesigner…
MainActivity中有一个按钮,绑定了save方法 public void save(View view) { String title = titleText.getText().toString(); String timelength = lengthText.getText().toString(); ExecutorService exec = Executors.newCachedThreadPool(); exec.execute(new NewsService(getApp…
Inside Flask - signal 信号机制 singal 在平常的 flask web 开发过程中较少接触到,但对于使用 flask 进行框架级别的开发时,则必须了解相关的工作机制.flask 通过 singal 机制,通知上层代码当前 flask 正在进行的处理动作,以便上层代码在 flask 进行处理的前后进行相关的处理(类似于 java 中通过 AOP 拦截操作,在 before action 和 after action 中进行一些处理动作). singal 一般只用于通知目的…
Inside Flask - json 处理 在处理 web api 时,json 是非常好用的数据交换格式,它结构简单,基本上各种主流的编程语言都有良好的支持工具. flask 中处理 json 时,对 json 加了一层包装,从而返回一个 Response 对象.简单的例子如下 :: from flask import jsonify ... @app.route('/hello') def hello(): result = { 'status': 'success', 'data': '…
Inside Flask - 配置的实现 flask 的配置对象 app.config 本身使用很简单,无非就是以字典的形式使用,而它的实现,本身就是以字典的形式的. 在 flask/config.py 文件中,包含了 flask 配置的实现代码,就两个类 ConfigAttribute 和 Config . ConfigAttribute 表示一个配置属性,它的代码只有简单几行,但由于使用了 descriptor 模式,对 python 不熟悉的人不容易理解.先看看 descriptor 是个…
Inside Flask - globals 全局变量(对象代理) 框架是一个容器,在框架内编程,一般是要遵守框架的约定和使用模式.通常这样的模式是 IoC,即由框架调用用户的代码,而不是用户调用框架.框架需要记录当前的状态,并提供给用户代码使用.常用的 Jsp Servelet .ASP.net 等,将请求和状态封装为向用户代码提供的 request .session 等对象.在 flask 中,完成这些工作的是上下文 ctx (context) 和 globals 的全局对象. flask/…
Inside Flask - flask 扩展加载过程 flask 扩展(插件)通常是以 flask_<扩展名字> 为扩展的 python 包名,而使用时,可用 import flask.ext.<扩展名> 来导入扩展包.一般使用方法见 flask 扩展.在最新的 0.11.1 代码中,不建议使用 flask.ext 加载扩展,可通过 flask_xxx 的名字直接调用扩展,那样就不需要 flask 自带的扩展机制,但了解一下原来的扩展实现机制还是很有意思的. flask 在处理这…
昨天,线上发生一例(HY000): Cannot modify @@session.sql_log_bin inside a transaction代码缺少显示的start transaction控制..…