最新发布

Flutter 报错解决方法汇总:

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

谷歌翻译-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 常用的 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

GitHub 配置host 直接裸连

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

在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

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

uvicorn.run() 方法参数解释

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

Python 第三方库管理

Python 第三方库管理-趙哥博客-赵哥博客
获取第三方依赖: 第一种 适用于 单虚拟环境的情况: : pip freeze > requirements.txt 为什么只适用于单虚拟环境?因为这种方式,会将环境中的依赖包全都加入,如果使用的全局环境...
趙哥的头像-趙哥博客-赵哥博客趙哥1年前
01700

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