首页
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翻译镜像站
本站同款主题
登录
找回密码
最新发布
排序
更新
发布
浏览
点赞
评论
收藏
售价
积分
销量
随机
更新
浏览
点赞
电脑常用工具集合
置顶
HxD 官网:https://mh-nexus.de/en/hxd/ HxD 是一款 Windows 平台下的免费十六进制(Hex)编辑器,由 Maël Hörz 开发,广受欢迎,适用于程序员、逆向工程、硬件调试等领域。 🌟 主要特点: 文...
其他
# Windows
# hibitsoft
# Everything
趙哥
10个月前
0
223
0
逆向工程工具大全
置顶
逆向工程工具大全(含官网) 1. 反汇编 / 反编译工具(用于分析二进制代码结构) 工具说明官网IDA Pro经典的反汇编工具,支持多架构,付费(有免费版但功能有限)。https://hex-rays.comGhidraN...
其他
# Hook
# 二进制
# 逆向
趙哥
12个月前
0
603
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
趙哥
1年前
0
244
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
趙哥
2年前
0
680
1
IDEA Translation插件 谷歌翻译配置
置顶
配置: 第一种方法: 1.在host文件内加入以下的配置即可。 host文件的路径可以查看这篇文章:https://zywi.cn/1148.html 220.181.174.34 translate.googleapis.com 2.Google 翻译 IP 在线实时更...
其他
# idea
# 谷歌翻译
# Translation
趙哥
4年前
1
3640
11
GitHub 配置host 直接裸连
置顶
实时更新的github hosts地址 https://cdn.jsdelivr.net/gh/521xueweihan/GitHub520@main/hosts 文件 https://raw.hellogithub.com/hosts 文本类型直接访问查看 各个平台配置方法 修改 hosts 文...
其他
# GitHub
趙哥
4年前
0
5127
17
Flutter 报错解决方法汇总:
置顶
VIVO(Android 13)手机调试Flutter应用卡在启动页面 黑屏 白屏问题 解决方法: 因为vivo用****包裹隐藏了一些私人信息日志。尝试调用*#*#112#*#* 点击更多---一键授权。需要将Uimei1发送给vivo进...
Flutter
# flutter
# BUG
趙哥
4年前
0
5163
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
趙哥
4年前
2
9302
6
html转换为markdown [html2text库]
Piphttps://pypi.org/project/html2text/安装:pip install html2text使用:import html2text md_text = open('ret.html', 'r', encoding='utf-8').read() markdown = html2text.html2text(md_t...
Python
# python
# html2text
趙哥
3年前
0
234
0
GitHub Actions 表达式
关于表达式 您可以使用表达式程序化设置工作流程文件中的环境变量和访问上下文。 表达式可以是文字值、上下文引用或函数的任意组合。 您可以使用运算符组合文字、上下文引用和函数。 有关上下文...
其他
# GitHub
# Action
趙哥
2年前
0
86
0
gcc/ C 语言编译器
gcc(GNU Compiler Collection)是 GNU 编译器集合,其中 C 语言编译器 是最常用的部分。它是 开源、跨平台 的编译器,支持 C、C++、Objective-C、Fortran、Ada、Go 等多种语言。 主要功能 编译...
C/C++
# C
# gcc
趙哥
12个月前
0
133
0
Git 设置要忽略的文件,如果文件已经被推送到了仓库,解决方法
场景: 第一种:推送了一个项目到远程仓库,但是发现里面有要忽略的文件,这时如果使用 git rm (本地的也会被删除)或 git rm --cached(只删除远程仓库里面的) 可以解决。 第二种:第一次推...
其他
# GitHub
# git
趙哥
3年前
0
140
0
(nvm-windows) Nodejs多版本管理工具
简介: nvm-windows是一个Node.js版本管理工具,它允许你在Windows操作系统下安装和切换不同版本的Node.js。 通过使用nvm-windows,你可以在同一台电脑上安装多个Node.js版本,并根据项目需求轻...
JavaScript
# Windows
# node
# nvm-windows
趙哥
2年前
0
201
0
Flutter MPFlutter框架 微信小程序 自定义顶部标题栏
实现截图代码截图 配置app.json: 'window': { 'navigationStyle': 'custom' }, 实现代码: ///自定义顶部栏 appBar: MPAppBar( title: Container( color: Colors.green, width: MediaQuery.of(c...
Flutter
# flutter
# MPFlutter
# 微信小程序
趙哥
3年前
0
241
0
Js hook大全
Hook Cookie (function () { 'use strict'; var cookie_cache = document.cookie; Object.defineProperty(document, 'cookie', { get: function () { return cookie_cache; }, set: function (v...
JavaScript
# js
# Hook
# js逆向
趙哥
2年前
0
362
0
Pecl 安装 swoole
安装: pecl install swoole 选项简述: 参数功能描述你用来做 HTTP/WebSocket 服务器是否需要--enable-sockets启用 PHP 的 sockets 扩展支持,Swoole 底层网络功能依赖,必开。✅ 必须--enable...
PHP
# PHP
# pecl
趙哥
1年前
0
125
0
markdown 转 html [markdown库]
Piphttps://pypi.org/project/Markdown/安装:pip install markdown使用:from markdown import markdown print(dir(markdown)) file = open('help.md','r',encoding='utf-8').read() html = ma...
Python
# python
# Markdown
趙哥
3年前
0
216
0
PhpStorm打开Fastadmin项目的js文件报错JSHint
JSHint说明: Jshit 是一个用于处理 JavaScript 代码的工具,通常用于代码格式化、校验或优化。它可以帮助开发者确保代码风格一致性,识别潜在的错误或不良实践,从而提高代码质量和可读性。 报...
其他
# Fastadmin
# JSHint
趙哥
2年前
0
141
0
加载更多
在手机上浏览此页面
登录
手机号或邮箱
验证码
发送验证码
记住登录
账号密码登录
登录
用户名/手机号/邮箱
登录密码
记住登录
找回密码
|
免密登录
登录