摘要: Git-Tagging 1. Listing Your Tags 1.1 Listing the existing tags // 任意一中 $ git tag $ git tag -l $ git tag --list // 执行结果 v1.0 v2.0 v2.1.0 v2.1.1 v2.1.2 阅读全文
posted @ 2022-03-24 14:01 superxjhw 阅读(65) 评论(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 阅读(39) 评论(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 阅读(44) 评论(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 阅读(35) 评论(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 阅读(34) 评论(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 阅读(32) 评论(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 阅读(54) 评论(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 阅读(80) 评论(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 阅读(36) 评论(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 阅读(34) 评论(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 阅读(31) 评论(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 阅读(45) 评论(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 阅读(7257) 评论(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 阅读(5978) 评论(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 阅读(3157) 评论(0) 推荐(0) 编辑
摘要: 下载 "demo和工具下载链接SPClipTool" 使用说明 需求 图片裁剪,效果如下图,支持图片拖拽,缩放,裁剪框自由变换大小。 思路 两个UIImageView,一个做背景,并加上蒙版效果,另外一个通过蒙版控制显示区域,并且保证两个UIImageView平移和缩放的时候完全重叠。最后使用一个U 阅读全文
posted @ 2019-11-29 17:09 superxjhw 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 1. 问题起因 开发需求 刚不久开发一款了教育类app,需要实现教师端对学生移动设备进行远程操控,比如对学生平板进行解锁屏,共享电脑屏幕到学生端,监控学生屏幕内容等。 网络环境 教师端网线或WIFI接入,iPad和Android Pad通过WIFI接入,确保在一个网段下。 大致功能 graph TB 阅读全文
posted @ 2019-08-29 18:16 superxjhw 阅读(2135) 评论(9) 推荐(9) 编辑
摘要: [TOC] HTML 简介 HTML 简介 什么是 HTML? HTML 是用来描述网页的一种语言。 HTML 指的是超文本标记语言 (Hyper Text Markup Language) HTML 不是一种编程语言,而是一种标记语言 (markup language) 标记语言是一套标记标签 ( 阅读全文
posted @ 2019-08-27 12:07 superxjhw 阅读(1092) 评论(0) 推荐(1) 编辑
摘要: 精心整理了之前的css学习笔记,仅供学习参考使用,禁止商业用途 [TOC] CSS 简介 1.CSS 简介 CSS 概述 CSS 指层叠样式表 (Cascading Style Sheets) 样式定义如何显示 HTML 元素 样式通常存储在样式表中 把样式添加到 HTML 4.0 中,是为了解决内 阅读全文
posted @ 2019-08-21 11:30 superxjhw 阅读(863) 评论(1) 推荐(0) 编辑
摘要: 本系列是之前自己在 "w3school" 学习笔记,仅供学习。 "JS 教程" "JS 简介" "JS 实现" "JS 输出" "JS 语句" "JS 注释" "JS 变量" "JS 数据类型" "JS 对象" "JS 函数" "JS 运算符" "JS 比较" "JS If...Else" "JS 阅读全文
posted @ 2019-08-20 16:47 superxjhw 阅读(157) 评论(0) 推荐(0) 编辑