挨踢而思 挨踢了,就要学会思考。

Navigator.platform 列表

Navigator.platform Value of the platform collected using navigator.platform . The value of this field should be consistent with other fields that indi

Administrator Administrator 发布于 2024-10-23

WebGL vendor 常用举例

The webGL vendor is collected using the WebGL API using the following code ctx.getParameter(ctx.getExtension('WEBGL_debug_renderer_info').UNMASKED_VEN

Administrator Administrator 发布于 2024-10-23

Navigator.language 列表

User preferred language collected using navigator.language. The value of this field should be consistent with other fields that indicate the user lang

Administrator Administrator 发布于 2024-10-23

User-Agent 常用举例

HTTP header that provides information about the user browser, OS and device. It is collected using the User-Agent HTTP header. https://deviceandbrowse

Administrator Administrator 发布于 2024-10-23

WebGL renderer 常用举例

The webGL renderer is collected using the WebGL API using the following code ctx.getParameter(ctx.getExtension('WEBGL_debug_renderer_info').UNMASKED_R

Administrator Administrator 发布于 2024-10-23

Linux 系统中安装 Maven

Linux 系统中安装 Maven 在 Linux 系统中安装 Maven 可以按照以下步骤进行: 一、安装 Java 环境(如果系统中未安装 Java) 打开终端,检查 Java 是否已经安装: java -version 如果显示 Java 版本信息,则说明已安装;如果未显示,则需要安装 Ja

Administrator Administrator 发布于 2024-09-27

win11 强制打开 IE 浏览器

1.桌面新建文本文档 2.文档内容粘贴如下脚本 CreateObject("InternetExplorer.Application").Visible=true 这段脚本是使用 VBScript(Visual

Administrator Administrator 发布于 2024-09-24

估算一个由 Git 管理的程序仓库代码行数的方法

一、使用工具 cloc(Count Lines of Code): 这是一个专门用于统计代码行数的工具。它可以统计多种编程语言的代码行数、注释行数、空白行数等。 使用方法:安装cloc后,在命令行中切换到你的程序仓库所在的目录,然后运行cloc.(这里的.表示当前目录)。cloc会遍历整个仓库,分析

Administrator Administrator 发布于 2024-09-24

[Go] Windows/Linux/Mac交叉编译成指定系统的二进制可执行文件

一般我们在windows获取mac开发代码 , 编译的时候如果要编译成指定系统的二进制文件 , 这时就需要使用交叉编译 1. 在Windows下编译Mac, Linux 编译成 Mac SET CGO_ENABLED=0 SET GOOS=darwin SET GOARCH=amd64 go bui

Administrator Administrator 发布于 2024-09-13

git 设置全局用户名和邮箱

在 Git 中设置用户名和邮箱是非常重要的步骤,它可以帮助你标识你的提交。以下是设置用户名和邮箱的方法: 一、设置用户名 打开命令行终端。 输入以下命令设置用户名: git config --global user.name "你的用户名" 二、设置邮箱 在命令行终端中,输入以下命令设置邮箱:

Administrator Administrator 发布于 2024-09-12

Linux 安装go/升级go版本

1.下载安装包 # wget 后面的下载链接请去golang官网(https://golang.google.cn/dl/)获取你想下载的对应go版本 sudo wget https://golang.google.cn/dl/go1.23.0.linux-amd64.tar.gz # 解压文件 s

Administrator Administrator 发布于 2024-09-03

Docker镜像加速说明

Docker 镜像地址(20241230更新) https://docker.1panel.live https://proxy.1panel.live https://docker.1panel.top https://dockerproxy.1panel.live https://docker.

Administrator Administrator 发布于 2024-08-29