程序员的资源宝库

网站首页 > gitee 正文

软件md 软件md5查看

sanyeah 2024-03-29 16:13:48 gitee 6 ℃ 0 评论

bilibili-helper/bilibili-helper-o: 哔哩哔哩 (bilibili.com) 辅助工具,可以替换播放器、推送通知并进行一些快捷操作 (github.com)

防止Windows推送旧版驱动
gpedit.msc —— 计算机配置 —— 管理模板 —— Windows 组件 —— Windows 更新 —— 管理从 Windows 更新提供的更新 —— Windows 更新不包括驱动程序
局域网文件共享
设置 —— 应用 —— 可选功能 —— 更多Windows功能 —— SMB 1.0/CIFS 文件共享支持、SMB直通

services.msc —— Function Discovery Resource Publication —— 自动
重装Windows默认APP
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
关闭VBS
设置 —— 隐私和安全性 —— Windows安全中心 —— 设备安全性 —— 内核隔离详细信息 —— 内存完整性
bcdedit /set hypervisorlaunchtype off
关闭虚拟内存(如果内存不够用就别关)
设置 —— 系统 —— 系统信息 —— 高级系统设置 —— 性能设置 —— 高级 —— 虚拟内存 —— 更改 —— 无分页文件 —— 设置并确定
关闭休眠模式
powercfg -h off
CPU核数设置
msconfig
笔记本电源模式
# 开启卓越性能
# 比起M1芯片的MacBook,Windows的调用CPU逻辑不太行,最好是用默认自带的平衡或者最佳能效模式
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

安静模式 40-90/70(电池)
均衡模式 60-99
野兽模式 99-100
一键解除所有UWP应用的网络隔离(CMD指令/PowerShell指令)

Windows Loopback Exemption Manager(微软官方出品)、Windows 8 AppContainer Loopback Utility(第三方软件)

FOR /F "tokens=11 delims=\" %p IN ('REG QUERY "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Mappings"') DO CheckNetIsolation.exe LoopbackExempt -a -p=%p
Get-ChildItem -Path Registry::"HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Mappings\" -name | ForEach-Object {CheckNetIsolation.exe LoopbackExempt -a -p="$_"}
WSL2代理设置
$ sudo vim ~./bashrc

# export windows_host=`cat /etc/resolv.conf|grep nameserver|awk '{print $2}'`
# export ALL_PROXY="socks5://$windows_host:2080"

# alias setproxy="export ALL_PROXY=socks5://$windows_host:2080"
# alias unsetproxy="unset ALL_PROXY"

git clone https://github.com/rofl0r/proxychains-ng
cd proxychains-ng
sudo apt install build-essential
./configure --prefix=/usr --sysconfdir=/etc
make && make install
make install-config
$ sudo vim /etc/proxychains.conf

quiet_mode
dynamic_chain
chain_len = 1
proxy_dns
remote_dns_subnet 224
tcp_read_time_out 15000
tcp_connect_time_out 8000
localnet 127.0.0.0/255.0.0.0
localnet 10.0.0.0/255.0.0.0
localnet 172.16.0.0/255.240.0.0
localnet 192.168.0.0/255.255.0.0

[ProxyList]
socks5  $windows_host 2080
# http    $windows_host 2081
CMD/PowerShell代理设置
系统 —— 关于 —— 高级系统设置 —— 环境变量 —— 用户变量新建
HTTP_PROXY http://127.0.0.1:2081
HTTPS_PROXY http://127.0.0.1:2081
set http_proxy=http://127.0.0.1:2081
set https_proxy=http://127.0.0.1:2081
$env:http_proxy="http://127.0.0.1:2081"
$env:https_proxy="http://127.0.0.1:2081"
git设置
# ssh代理配置文件路径:C:/Users/username/.ssh/config
Host github.com
    ProxyCommand connect -S localhost:2080 %h %p

# 指令的方式直接增加代理设置
git config --global http.https://github.com.proxy socks5://127.0.0.1:2080

# git配置文件路径:C:/Users/username/.gitconfig
[http "https://github.com"]
    proxy = socks5://127.0.0.1:2080

# 回车和换行符自动转换
git config --global core.autocrlf true
git add --renormalize .

# 使用ort策略merge
git config --global pull.twohead ort

# log美化
git config --global alias.lg "log --color --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

# diff美化 https://github.com/banga/git-split-diffs
npm install -g git-split-diffs
git config --global core.pager "git-split-diffs --color | less -RFX"

# GPG相关设置
git config --global user.signingkey <密钥ID>
git config --global commit.gpgsign true
git config --global tag.forcesignannotated true
pip代理
已经在3.9.13版本后修复,不需要设置即可正常使用代理

# 新版pip的依赖库urllib3对于没有协议头的代理地址会强制增加https头并采用https协议连接,
# 而配置文件的优先级没有系统代理设置高所以对这个问题没有帮助
# 解决方法可以在windows代理设置中强制指定https代理地址为http或者设置临时环境变量

# pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# pip config set global.trusted-host mirrors.aliyun.com
# pip config set global.proxy http://127.0.0.1:2081

# pip全局配置文件路径:C:/Users/username/AppData/Roaming/pip/pip.ini

# [global]
# index-url = https://mirrors.aliyun.com/pypi/simple/
# trusted-host = mirrors.aliyun.com
# proxy = http://127.0.0.1:2081
npm、yarn的代理/换源设置
Maven、Gradle的代理/换源设置
golang代理设置
GPG常用指令及配置文件
APK签名相关
# https://docs.microsoft.com/zh-cn/xamarin/android/deploy-test/signing/manually-signing-the-apk
# https://docs.oracle.com/en/java/javase/17/docs/specs/man/keytool.html
# https://docs.oracle.com/en/java/javase/17/security/oracle-providers.html
keytool -genkeypair -alias SekiBetu -keyalg RSA -keysize 4096 -sigalg SHA3-512withRSA -dname "cn=SekiBetu,ou=,dc=,dc=China" -startdate "1970/01/01 00:00:00" -validity 365000 -storetype PKCS12 -keystore SekiBetu.p12 # 生成行业标准 PKCS12 格式的Java KeyStore
keytool -list -v -keystore SekiBetu.p12 # 查看 KeyStore 的详细信息
keytool -importkeystore -srckeystore SekiBetu.jks -srcstoretype JKS -destkeystore SekiBetu.jks -deststoretype pkcs12 # 转换 JKS 格式为行业标准 PKCS12 格式
zipalign -f -v 4 unsigned.apk optimized-unsigned.apk # APK优化
apksigner sign --ks SekiBetu.p12 --ks-key-alias SekiBetu optimized-unsigned.apk # 先优化后签名
Chrome & Edge Flags
Smooth Scrolling
【Chrome Only】Overlay Scrollbars
Parallel downloading
【Chrome Only】Enable download bubble
【Chrome Only】Enable download bubble V2
【Chrome Only】Enable the high efficiency mode feature in the settings
【Edge Only】Microsoft Edge Share Menu
【Edge Only】Show Windows 11 visual effects in title bar and toolbar
【Edge Only】Make Rounded Tabs feature available
【Edge Only】Enable Smooth Scrolling for PDF
【Edge Only】Windows 11 fluent scrollbars.
yt-dlp设置
设置文件目录:

C:\Users\username\AppData\Roaming\yt-dlp\config
--ignore-errors
--downloader aria2c
--downloader-args "-c -j 16 -s 16 -x 16 -k 1M"
--proxy http://127.0.0.1:2081/
-f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best'
-o D:/Media/Videos/"%(uploader)s(%(uploader_id)s)/%(upload_date)s-%(title)s-(%(duration)ss)[%(resolution)s][%(id)s].%(ext)s"
--embed-metadata
--write-description
--write-thumbnail
ffmpeg
ffmpeg -hwaccel_output_format cuda -c:v h264_cuvid -i input.mp4 -vf ass=input.ass -c:v h264_nvenc -cq:v 19 output.mp4
IntelliJ IDEA设置备忘录

Useful Websites

  • UUP dump
  • 423Down
  • 果核剥壳
  • 远景论坛

Software List(Indispensable)

  • WinNTSetup
  • 微软运行库、Official
  • Microsoft-Activation-Scripts、CMWTAT_Digital_Edition、irm https://massgrave.dev/get | iex
  • v2rayN
  • 搜狗输入法
  • Bandizip、patch、7-Zip、NanaZip
  • Chrome、FireFox
  • Visual Studio Code
  • 火绒
  • Logitech G HUB
  • Intel Graphics Driver、arc version、Intel Extreme Tuning Utility
  • GeForce Drivers、Display Driver Uninstaller
  • Realtek High Definition Audio (HDA) Version WHQL、Realtek-UAD-generic
  • Intel Wi-Fi Drivers、Intel Wireless Bluetooth
  • DriverStoreExplorer
  • TrafficMonitor
  • OpenHashTab
  • Everything
  • Office Tool Plus
  • QQ、RevokeMsgPatcher
  • Steam
  • Ubisoft Connect
  • WeGame
  • HandBrake
  • 便笺
  • Shotcut
  • ScreenToGif
  • 网易云音乐
  • 计算器
  • WinSW
  • aria2
  • FFmpeg
  • N_m3u8DL-CLI、N_m3u8DL-RE
  • yt-dlp pip3 install --upgrade git+https://github.com/yt-dlp/yt-dlp.git 、youtube-dl(pip) pip3 install --upgrade git+https://github.com/ytdl-org/youtube-dl.git 、Streamlink(pip) pip3 install --upgrade git+https://github.com/streamlink/streamlink.git
  • Snipaste
  • MPV、Potplayer
  • Honeyview、NeeView、ImageGlass
  • Adobe software series
  • 百度云
  • CCleaner、Winapp2
  • Telegram
  •  
  • 蓝叠模拟器国际版、夜神模拟器、雷电安卓模拟器
  • qBittorrent-Enhanced-Edition、tracker、tracker2
  • WinMerge
  • LocalSend

Software List(Optional)

  • Ventoy、UltraISO、WinISO、rufus
  • Groupy
  • Start11
  • BilibiliLiveRecordDownLoader、DDTV
  • K-Lite Codec Pack Mega
  • Cheat Engine
  • mitmproxy(pip) pip3 install --upgrade git+https://github.com/mitmproxy/mitmproxy.git 、Fiddler Classic、Fiddler Everywhere
  • Waifu2x-Extension-GUI
  • Open Broadcaster Software
  • drawio
  • VMware Workstation
  • SteamAchievementManager、fork、SAM-Auto、Steam Achievement Abuser
  • NatTypeTester
  • IObit IObitUninstaller
  • Subtitle Edit
  • Audacity
  • Driver Booster

Recovery

  • EasyRecovery
  • R-STUDIO Network
  • DiskGenius

Developer Tools

  • Temurin、Oracle JDK
  • Windows Terminal
  • Tabby
  • IntelliJ IDEA、JetBrains Mono、patch、patch2
  • git
  • jadx
  • Node.js
  • Yarn
  • Python
  • MySQL
  • PowerShell
  • TDM-GCC

开始菜单布局

Chrome Extensions

Pinned

  • Tab Muter
  • 哔哩哔哩助手
  • FireShot
  • Shazam
  • Bitwarden
  • uBlock Origin
  • uBO Minus (MV3)
  • RSS Reader Extension (by Inoreader)
  • 贴吧签到助手
  • Twitter Media Downloader
  • EditThisCookie
  • SingleFile
  • 魂签、fork
  • Stylus
  • Dark Reader
  • Violentmonkey

Unpinned

  • Adobe Acrobat
  • Augmented Steam
  • EhSyringe
  • Git Master
  • IDM Integration Module
  • JSON Viewer
  • mirigana
  • Refined GitHub
  • ScrollAnywhere
  • Show YouTube comments while watching
  • Soul++
  • Steam Database
  • TabCopy
  • WebRTC Leak Prevent
  • 购物党自动比价工具

Not Using

  • cat-catch
  • FeHelper
  • QZoneExport
  • uBlacklist、中文搜索结果黑名单
字体及美化
  • 更纱黑体(Iosevka+思源黑体)

  • JetBrainsMono

  • 致美化

Give feedback

Footer

? 2023 GitHub, Inc.
 
Copied!
 
 
 
华为应用市场 - 华为官网 (huawei.com)
Supported devices - Google Play Help - Google Support (storage.googleapis.com)
夜神安卓模拟器-安卓模拟器电脑版下载_安卓手游模拟器_手机模拟器_官网 (yeshen.com)
雷电安卓模拟器-手游模拟器安卓版_android手机模拟器电脑版_雷电模拟器官网 (ldmnq.com)

Tags:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表