最新发布

GitHub 常用的 Actions

GitHub 常用的 Actions-趙哥博客-赵哥博客置顶
Checkout 检出你的仓库代码 https://github.com/marketplace/actions/checkout actions/setup-node:设置 Node.js 环境。 https://github.com/marketplace/actions/setup-node-js-environment a...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0820

Flutter MPFlutter 微信小程序 Api调用例子集合

Flutter MPFlutter 微信小程序 Api调用例子集合-趙哥博客-赵哥博客置顶
获取位置: 官方文档地址:https://developers.weixin.qq.com/minigame/dev/api/location/wx.getLocation.html ///获取位置信息 UniversalMiniProgramApi.uni.getLocation(GetLocationOption() ...
趙哥的头像-趙哥博客-赵哥博客趙哥1年前
03511

谷歌翻译-idae – Translation插件配置。

谷歌翻译-idae - Translation插件配置。-趙哥博客-赵哥博客置顶
配置: 第一种方法: 1.在host文件内加入以下的配置即可。 host文件的路径可以查看这篇文章:https://zywi.cn/1148.html 220.181.174.34 translate.googleapis.com 2.Google 翻译 IP 在线实时更...
趙哥的头像-趙哥博客-赵哥博客趙哥2年前
0117810

GitHub 配置host 直接裸连

GitHub 配置host 直接裸连-趙哥博客-赵哥博客置顶
实时更新的github hosts地址 https://cdn.jsdelivr.net/gh/521xueweihan/GitHub520@main/hosts 文件 https://raw.hellogithub.com/hosts 文本类型直接访问查看 各个平台配置方法 修改 hosts 文...
趙哥的头像-趙哥博客-赵哥博客趙哥2年前
0377617

Flutter 报错解决方法汇总:

Flutter 报错解决方法汇总:-趙哥博客-赵哥博客置顶
VIVO(Android 13)手机调试Flutter应用卡在启动页面 黑屏 白屏问题 解决方法: 因为vivo用****包裹隐藏了一些私人信息日志。尝试调用*#*#112#*#* 点击更多---一键授权。需要将Uimei1发送给vivo进...
趙哥的头像-趙哥博客-赵哥博客趙哥2年前
043696

在idea使用GitHub账号、Copilot异常

在idea使用GitHub账号、Copilot异常-趙哥博客-赵哥博客置顶
在idea使用GitHub账号、Copilot异常登录GitHub显示Invalid authentication data.Connection refused: connect 或者副驾驶显示Failed to initiate the GitHub login process. Please try again. ...
趙哥的头像-趙哥博客-赵哥博客趙哥2年前
274226

uvicorn.run() 方法参数解释

uvicorn.run() 方法参数解释-趙哥博客-赵哥博客
这个函数是用于运行一个ASGI应用程序的。下面是各个参数的作用:参数描述app要运行的ASGI应用程序,可以是一个ASGI应用、可调用对象或者字符串host服务器监听的主机地址,默认为'127.0.0.1'port服...
趙哥的头像-趙哥博客-赵哥博客趙哥1个月前
0840

FastAdmin 命令行刷新配置缓存(刷新site.php文件)

FastAdmin 命令行刷新配置缓存(刷新site.php文件)-趙哥博客-赵哥博客
创建命令:application/admin/command/ConfigRefresh.php<?php namespace app\admin\command; use app\common\model\Config; use think\console\Command; use think\console\Input; use thin...
趙哥的头像-趙哥博客-赵哥博客趙哥1个月前
0250

nvm安装Nodejs

nvm安装Nodejs-趙哥博客-赵哥博客
Nvm介绍: nvm(Node Version Manager)是一个用于管理 Node.js 版本的工具,它允许你在同一台计算机上安装和切换不同版本的 Node.js。使用 nvm 可以方便地在不同的 Node.js 版本之间切换,并且...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0460

Flutter 显示/隐藏系统状态栏,无黑边

Flutter 显示/隐藏系统状态栏,无黑边-趙哥博客-赵哥博客
配置: 找到android/app/src/main/res/values目录,打开styles.xml 将shortEdges放到style标签内。 <!--关于全屏显示--> <item name='android:windowLayoutInDisplayCutoutMode'>sho...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0330

Windows下 批量删除空文件夹

Windows下 批量删除空文件夹-趙哥博客-赵哥博客
代码:@echo off Cd /d %~dp0 If not '%1' == '' cd /d %1 Echo Current directory: %cd% Pause For /f 'delims=' %%a in ('dir . /b /ad /s ^|sort /r' ) do rd /q '%%a' 2>nul以上代码通过...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0400

Javascript 常见加密解密方法

Javascript 常见加密解密方法-趙哥博客-赵哥博客
Npm地址:https://www.npmjs.com/package/crypto-js 安装 npm install crypto-js --save-devnpm install md5 --save-dev 一些常见的built-in 函数加密 unescape unescape() 函数可对通过 escape...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0840

Js hook大全

Js hook大全-趙哥博客-赵哥博客
Hook Cookie (function () { 'use strict'; var cookie_cache = document.cookie; Object.defineProperty(document, 'cookie', { get: function () { return cookie_cache; }, set: function (v...
趙哥的头像-趙哥博客-赵哥博客趙哥2个月前
0360

常见进制的英文标识和简介

常见进制的英文标识和简介-趙哥博客-赵哥博客
进制英文标识简介例子二进制Binary使用两个数字 0 和 1 来表示数值的进制。在计算机科学和电子工程中广泛使用,因为计算机内部的信息以二进制形式存储和处理。10101011八进制Octal使用 0-7 这 8...
趙哥的头像-趙哥博客-赵哥博客趙哥6个月前
0420

python 打开图片

python 打开图片-趙哥博客-赵哥博客
import cv2 from PIL import Image def print_image_to_console(image_path: str): '''调用系统打开图片 Args: image_path (str): _description_ ''' image = Image.open(image_path) image.sho...
趙哥的头像-趙哥博客-赵哥博客趙哥6个月前
0720