首页
Dart
Flutter
Python
FastApi
PHP
Laravel
Thinkphp
JavaScript
Vue
TypeScript
autojs
Android
java
C/C++
Kotlin
SQL
Mysql
Linux
Kali Linux
Docker
Shell
其他
本站功能使用教程
常用网站收录
提问的智慧
Google翻译镜像站
本站同款主题
写文章
登录
首页
Dart
Flutter
Python
FastApi
PHP
Laravel
Thinkphp
JavaScript
Vue
TypeScript
autojs
Android
java
C/C++
Kotlin
SQL
Mysql
Linux
Kali Linux
Docker
Shell
其他
本站功能使用教程
常用网站收录
提问的智慧
Google翻译镜像站
本站同款主题
登录
找回密码
最新发布
排序
更新
发布
浏览
点赞
评论
收藏
售价
积分
销量
随机
更新
浏览
点赞
逆向工程工具大全
置顶
逆向工程工具大全(含官网) 1. 反汇编 / 反编译工具(用于分析二进制代码结构) 工具说明官网IDA Pro经典的反汇编工具,支持多架构,付费(有免费版但功能有限)。https://hex-rays.comGhidraN...
其他
# Hook
# 二进制
# 逆向
趙哥
1个月前
0
28
0
常用Shell脚本收集
置顶
三网回程路由测试: curl https://raw.githubusercontent.com/zhanghanyun/backtrace/main/install.sh -sSf | sh 综合工具箱: wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SK...
Linux
Shell
# Linux
# Shell
趙哥
2个月前
0
93
0
GitHub 常用的 Actions
置顶
Checkout 检出你的仓库代码 https://github.com/marketplace/actions/checkout actions/setup-node:设置 Node.js 环境。 https://github.com/marketplace/actions/setup-node-js-environment a...
其他
# GitHub
# Actions
趙哥
11个月前
0
399
1
IDEA Translation插件 谷歌翻译配置
置顶
配置: 第一种方法: 1.在host文件内加入以下的配置即可。 host文件的路径可以查看这篇文章:https://zywi.cn/1148.html 220.181.174.34 translate.googleapis.com 2.Google 翻译 IP 在线实时更...
其他
# idea
# 谷歌翻译
# Translation
趙哥
3年前
1
2429
11
GitHub 配置host 直接裸连
置顶
实时更新的github hosts地址 https://cdn.jsdelivr.net/gh/521xueweihan/GitHub520@main/hosts 文件 https://raw.hellogithub.com/hosts 文本类型直接访问查看 各个平台配置方法 修改 hosts 文...
其他
# GitHub
趙哥
3年前
0
4457
17
Flutter 报错解决方法汇总:
置顶
VIVO(Android 13)手机调试Flutter应用卡在启动页面 黑屏 白屏问题 解决方法: 因为vivo用****包裹隐藏了一些私人信息日志。尝试调用*#*#112#*#* 点击更多---一键授权。需要将Uimei1发送给vivo进...
Flutter
# flutter
# BUG
趙哥
3年前
0
4732
6
在idea使用GitHub账号、Copilot异常
置顶
在idea使用GitHub账号、Copilot异常登录GitHub显示Invalid authentication data.Connection refused: connect 或者副驾驶显示Failed to initiate the GitHub login process. Please try again. ...
其他
# GitHub
趙哥
3年前
2
8348
6
Git 忽略文件
什么是 .gitignore 文件?.gitignore 文件是用来做什么的? 在任何当前工作的 Git 仓库中,每个文件都是这样的: 追踪的(tracked)- 这些是 Git 所知道的所有文件或目录。这些是新添加(用&nbs...
其他
# git
趙哥
2年前
0
146
0
PhpStorm 使用 xdebug断点调试Php代码
前言:在开发php项目的时候,有时候不知道明确的错误在哪里,想要用java或者c#那样能够开启debug断点分步调试。php本身是不支持的,需要添加xdebug插件来实现。 php开启xdebug插件: 找到对应的...
PHP
# PHP
# PhpStorm
# xdebug
趙哥
7个月前
1
60
0
python 使用Pillow给图片加边框
方法一:使用 ImageOps.expand() 加单色边框(推荐) from PIL import Image, ImageOps img = Image.open('example.jpg') border_img = ImageOps.expand(img, border=10, fill='black') # 加 10...
Python
# python
# Pillow
趙哥
16天前
0
5
0
Flutter MPFlutter框架 微信小程序 图片/视频预览
图片列表预览: ///预览图片列表 List<String> images = []; ///添加5个图片 for (var i = 1; i <= 5; i++) { print(i); images.add( 'https://pic.3gbizhi.com/uploadmark/20230428/9...
Flutter
# flutter
# MPFlutter
# 微信小程序
趙哥
2年前
0
460
0
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...
Python
# python
# Image
趙哥
1年前
0
137
0
Docker 常用指令
以下是常用的 Dockerfile 指令和它们的功能:1. FROM定义镜像的基础镜像。每个 Dockerfile 都应该以 FROM 开头,指定使用哪个基础镜像构建当前镜像。FROM ubuntu:20.04 2. RUN在镜像构建过程中...
Docker
# Docker
趙哥
2个月前
0
50
1
PyCharm有些库(函数)没有代码提示 (解决方法)
问题分析 Python属于动态强类型语言,动态类型语言是在运行期间做数据类型检查,所以IDE无法判断返回值的数据类型,从而无法自动补全。 解决方案 官网给出了一些解决方案:官网解决方案 PyCharm...
Python
# python
# pycharm
趙哥
2年前
0
150
0
GitHub Action 自动部署BuildAdmin后端框架到服务器
Workflows: name: CI on: push: # 仅在 main 分支和 v2 分支 push 时触发 branches: - main - v2 # 可手动触发 workflow_dispatch: jobs: build: runs-on: ubuntu-latest env: # 服务器目标路径...
其他
# GitHub
# Action
# GitHub自动部署
趙哥
8个月前
0
56
0
C语言数组排序
冒泡排序: int arr[] = {2, 54, 5, 76, 8, 9, 66, 67, 87, 8, 534}; const int arr_len = sizeof(arr) / sizeof(arr[0]); // 冒泡排序 for (int i = 0; i < arr_len - 1; i++) { for (int j...
C/C++
# C
# 冒泡排序
趙哥
1个月前
0
23
0
git 删除远程仓库里的某个文件/文件夹
步骤命令描述1git clone 仓库地址克隆远程仓库到本地2git add .将所有修改添加到暂存区3git rm 文件删除本地文件(工作目录和暂存区)4git rm -r 文件夹删除本地文件夹(工作目录和暂存区)5git...
其他
# GitHub
# git
趙哥
2年前
0
164
0
加载更多
在手机上浏览此页面
登录
手机号或邮箱
验证码
发送验证码
记住登录
账号密码登录
登录
用户名/手机号/邮箱
登录密码
记住登录
找回密码
|
免密登录
登录