Skip to content

Instantly share code, notes, and snippets.

View rainbowflesh's full-sized avatar
🌾
Working on terraforming of Mars

是虹川肉 rainbowflesh

🌾
Working on terraforming of Mars
View GitHub Profile
@rainbowflesh
rainbowflesh / kill_filecoauth.ps1
Last active November 1, 2024 05:30
Kill M$ OneDrive Sh*t self propagating process FileCoAuth.exe
$processes = Get-Process -Name 'FileCoAuth' -ErrorAction SilentlyContinue
if ($processes) {
foreach ($process in $processes) {
try {
Stop-Process -Id $process.Id -Force
Write-Host "Stopped process: $($process.Name) with ID: $($process.Id)"
}
catch {
Write-Host "Failed to stop process: $($process.Name) with ID: $($process.Id). Error: $_"
}
@rainbowflesh
rainbowflesh / opencv_cross.md
Last active July 26, 2024 14:18
OpenCV arm64/aarch64 Cross Compile Guide

The OpenCV arm64/aarch64 Cross Compile Guide

I use official ubuntu jammy docker image in WLS2 ubuntu 2404, target platform is Radxa 3 with RockChip 3568 aarch64 cpu.

Preparation

docker pull Ubuntu:Jammy
docker images