作者: 毛狐狸

668 篇文章

thumbnail
How to change cpu revision, stepping and caption for the guest?
from--https://forums.virtualbox.org/viewtopic.php?f=1&t=81600   Post Reply    SearchAdvanced search 11 posts • Page 1 of 1 Hitech Posts: 2 Joined: 28. Jan 2017, 03:35 How to change cpu revision, stepping and caption for the guest? Quote Post by Hitech » 28. Jan 2017, 03:53 How to change cpu revision, stepping and caption in oracle virtualbox? I've read the article…
thumbnail
VM with a specific CPU
from--https://superuser.com/questions/1300153/vm-with-a-specific-cpu   Ask Question Asked 5 years, 6 months ago Modified 5 years, 6 months ago Viewed 5k times 4 Is it possible to create a VM with a specific CPU that supports only specific instruction set. For example, I want to try something on a Machine that has a CPU that does not support AVX or SSE instruction, is …
VMware下Win7系统出现大量可删除ATA Channel的解决办法
from--https://blog.ihipop.com/2015/05/4830.html   遇到这个问题的人不少,Windows7下面的那个安全删除硬件下面一大堆的ATA Channel X,基本上发帖问的都是有强迫症的,也没人放Google找就发帖问,作为严重强迫症用户找到了解决方案,VMware官方文档。 如果你是轻度强迫症用户,只需要按照官方文档说的,编辑VMX配置文件加上一句话就可以了 devices.hotplug = "false" 如果重度强迫症用户,连硬盘都不想看见,就按照这个解决方案,开机用脚本改注册表伺候。 Making an Ejectable Device Un-Ejectable The way to get rid of the option to eject the virtual disk …
Window平台编译luaJIT
from--https://blog.csdn.net/qq_38590027/article/details/120350724   luaJIT是 lua 脚本的即时编译器 ,其官网是: http://luajit.org/ 环境准备 Vistual Studio 2019 或其它版本 github 各版本下载地址: https://github.com/LuaJIT/LuaJIT/releases 将源码解压到需要的目录 运行 Command Prompt 命令提示符 ,根据需要的位数选择不同命令提示符. 64位选 x64 cd 到 luajit/src 目录 , 先直接 cd d:\xxx ,再键入 d: 以切换目录 键入msvcbuild 进行编译,会生成exe 和 dll 等文件 a. 如果你的加密文件是64位的,那么…
Windows10 一键优化脚本
from--https://www.2binarys.com/1217.html 该脚本为俄罗斯大神lopatkin发布的Windows10系统中内置! 具体功能如下: 依次为:关闭系统休眠-移除无用启动项-禁用用户账户控制(UAC)-禁用后台传输服务(BITS)-禁用windows更新-启用最后一次正确的配置 关联图片打开方式为“Windwos照片查看器” 删除“我的电脑”驱动器上面的那6个文件夹(视频、图片、文档、下载、音乐、桌面) 删除大量无用的计划任务(C:WindowsSystem32TasksMicrosoftWindows) 禁用Aero Shake(桌面特效) 设置一些颜色与高对比色 开启Windows Defender的广告拦截 禁用驱动程序签名 登录背景为高对比色 在右键菜单中删除“固定到开始屏幕” 禁用一些收集隐私的功…
thumbnail
在Android Studio中用-Xlint重新编译
from--https://stackoverflow.com/questions/47740812/recompile-with-xlint-in-android-studio   问问题 问 5年9个月前 修改 1年6个月前 已查看 39k次 102 当我在Android Studio中构建Android项目时,会收到消息: Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 和 Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:depreca…
thumbnail
pbc实现分析
from--https://www.zhyingkun.com/markdown/pbcanalysis/   关于Protobuf,网上有众多资料,本文仅记录个人的一些理解,结合云风版pbc实现进行分析,试图洞悉内部原理。 云风pbc代码来自Github 云风关于pbc的博客 ProtocolBuffer是一种高效数据序列化解决方案:(序列化指的是在不丢失信息的前提下将目标结构化对象转化成字节流的过程) 结构化对象一般是用Key-Value数组来表达,Key是字段名称,Value是带有类型的数据 JSON序列化是将字段名称和数据直接按照JSON格式写到目标字符串中,存储效率较低(此时的字节流直接就是一个方便查看的字符串) PB为了提高存储效率,将Key全部用编号表示并做压缩(所以需要记录字段名称与对应编号的映射关系) 这里共涉及…