Skip to content

Instantly share code, notes, and snippets.

View khanhdodang's full-sized avatar

Khanh Do khanhdodang

  • Ho Chi Minh, Viet Nam
View GitHub Profile
@khanhdodang
khanhdodang / mousemove.ps1
Created May 4, 2022 08:36 — forked from MatthewSteeples/mousemove.ps1
Powershell Script to keep the mouse moving
Add-Type -AssemblyName System.Windows.Forms
while ($true)
{
$Pos = [System.Windows.Forms.Cursor]::Position
$x = ($pos.X % 500) + 1
$y = ($pos.Y % 500) + 1
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y)
Start-Sleep -Seconds 10
}
@khanhdodang
khanhdodang / AdbCommands
Created April 26, 2020 10:35 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader