摘要: 在计算机系统中,大小端问题(Endianness) 是一个基础但重要的概念,它涉及多字节数据在内存中的存储顺序。 本文将介绍大小端的定义、产生原因、应用场景,以及如何正确理解和使用它。 1. 什么是大小端? 大端序(Big-Endian) 在大端序存储方式中,数据的高字节(Most Signific 阅读全文
posted @ 2024-12-10 15:16 superxjhw 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 在 macOS 上,直接删除 Android Studio 应用后,许多配置文件和缓存可能仍会保留在系统中。为了彻底清除 Android Studio,以下是完整的卸载步骤。 1. 删除 Android Studio 应用本体 打开 Finder,进入 /Applications 目录。 找到 An 阅读全文
posted @ 2024-12-10 15:11 superxjhw 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 在学校内网中部署的文件服务,需要通过公司网络直接访问内网中的图片,以下是几种常见解决方案: 1. VPN(虚拟专用网络) 通过 VPN 将公司网络与学校内网建立一个安全通道,使公司网络设备可以直接访问学校内网资源。 实施步骤: 在学校内网配置 VPN 服务器(如 OpenVPN、WireGuard) 阅读全文
posted @ 2024-11-29 16:45 superxjhw 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 为什么学校可能没有公网 IP? 在学校内网中,消费系统和文件服务可能需要通过公司网络访问,但由于学校网络环境限制,公网 IP 可能不可用。这种情况可能由以下原因导致: 1. 网络服务商未分配公网 IP 动态分配:部分学校使用的是动态私有 IP 地址(如 192.168.x.x 或 10.x.x.x) 阅读全文
posted @ 2024-11-29 16:41 superxjhw 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 在 Web 开发中,有时候我们会遇到这样的问题:当打开一个图片链接时,浏览器不是直接显示图片,而是自动跳转到下载界面。这种现象常常让开发者感到困惑。本文将从问题原因入手,并提供解决方案。 问题现象 打开图片链接(如 https://example.com/image.png),浏览器直接提示下载文件 阅读全文
posted @ 2024-11-29 10:31 superxjhw 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Command line syntax Notation Description Text without brackets or braces Items that must be typed as shown. <Italic text in angle brackets> Variables; 阅读全文
posted @ 2021-10-13 22:12 superxjhw 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 10 Basic GUI Usage The Vim editor works well inside a windowing environment.This graphical user interface (GUI) provides you with not only all of Vim’ 阅读全文
posted @ 2021-10-08 21:44 superxjhw 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 9 Basic Command-Mode Commands Printing text lines Substitution Shell (command prompt) escapes Entering Command-Line Mode If you want to execute a sing 阅读全文
posted @ 2021-10-08 21:04 superxjhw 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 8 Basic Abbreviations, Keyboard Mapping, and Initialization Files Abbreviations An abbreviation is a short word that takes the place of a long one. Fo 阅读全文
posted @ 2021-10-08 18:07 superxjhw 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 7 Commands for Programmers Syntax coloring Automatic indentation Indentation commands Commands to navigate through the source code Getting information 阅读全文
posted @ 2021-10-08 13:58 superxjhw 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 6 Basic Visual Mode How to start visual mode Visual yanking Using visual mode to change text Visual commands for programmers Visual block mode Enterin 阅读全文
posted @ 2021-10-08 10:24 superxjhw 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 5 Windows How to open a new window Window selection Editing two files at once Controlling the size of a window Basic buffer usage Opening a New Window 阅读全文
posted @ 2021-10-07 21:25 superxjhw 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 3 Searching Simple forward searches Search options Incremental searches Changing directions Basic regular expressions Simple Searches To search for a 阅读全文
posted @ 2021-10-06 23:53 superxjhw 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 4 Text Blocks and Multiple Files Simple cut-and-paste operations (in Vim terms, delete and put) Marking locations within the text Copying text into a 阅读全文
posted @ 2021-10-06 23:53 superxjhw 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 2 Editing a Little Faster Additional movement commands Quick searches along a single line Additional delete and change commands n The repeat command K 阅读全文
posted @ 2021-10-04 11:17 superxjhw 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1 Basic Editing This chapter teaches you the basic set of 10 Vim commands you need to get started editing. In this chapter, you learn the following: T 阅读全文
posted @ 2021-10-04 11:16 superxjhw 阅读(50) 评论(0) 推荐(0) 编辑
摘要: iOS 14 UDP收不到广播处理 1. 简单说明 项目使用到了CocoaAsyncSocket,建立TCP之前,使用了UDP广播获取IP地址,但是系统升级到iOS 14之后,发现有台iPad间歇性可以收到广播,iPhone一直没有收到广播。 2. 解决办法 Info.plist添加NSLocalN 阅读全文
posted @ 2020-09-29 14:29 superxjhw 阅读(7667) 评论(9) 推荐(2) 编辑
摘要: 下载fastboot.exe和adb.exe 解压T7 2.2版本fastboot文件,使用cmd进入到emmc目录下(里面包含boot.img、system.img、cache.img等文件) 将第一步下载的文件解压,fastboot文件夹中的所有文件(包含adb.exe、fastboot.exe 阅读全文
posted @ 2020-06-11 18:07 superxjhw 阅读(7072) 评论(0) 推荐(0) 编辑
摘要: 安装Homebrew(已安装跳过) raw.githubusercontent.com域名被污染,如果报错,host文件添加 199.232.68.133 raw.githubusercontent.com 安装安卓工具 brew cask install android-platform-tool 阅读全文
posted @ 2020-06-11 18:01 superxjhw 阅读(3656) 评论(0) 推荐(0) 编辑
摘要: 下载 "demo和工具下载链接SPClipTool" 使用说明 需求 图片裁剪,效果如下图,支持图片拖拽,缩放,裁剪框自由变换大小。 思路 两个UIImageView,一个做背景,并加上蒙版效果,另外一个通过蒙版控制显示区域,并且保证两个UIImageView平移和缩放的时候完全重叠。最后使用一个U 阅读全文
posted @ 2019-11-29 17:09 superxjhw 阅读(704) 评论(0) 推荐(0) 编辑