This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # adb pair | |
| # adb connect | |
| # adb devices | |
| adb shell \ | |
| pm disable-user \ | |
| --user 0 com.samsung.android.honeyboard | |
| # Install back with: | |
| # adb shell cmd package install-existing com.samsung.android.honeyboard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.querySelector("link[title='RSS']").href; | |
| // https://www.youtube.com/feeds/videos.xml?channel_id=<CHANNEL_ID> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jar:file:///C:/Users/<USER>/AppData/Local/Firefox%20Nightly/omni.ja!/ | |
| # https://firefox-source-docs.mozilla.org/overview/gecko.html#chrome-protocol |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - ViewProfile.jspa # User | |
| - name | |
| - Dashboard.jspa # Widgets | |
| - selectPageId | |
| - ConfigurePortalPages.jspa # Manage Dashboards | |
| - view | |
| - filterView | |
| - favourites | |
| - my | |
| - popular |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $app = 'net.dinglisch.android.taskerm' | |
| $permissions = 'READ_LOGS', 'SET_VOLUME_KEY_LONG_PRESS_LISTENER' | |
| cd $env:LOCALAPPDATA\Android\Sdk\platform-tools | |
| foreach ($permission in $permissions) { | |
| .\adb.exe shell ` | |
| pm grant $app android.permission.$permission | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user_pref('permissions.default.image', 2); | |
| // Disable images | |
| user_pref('browser.urlbar.update2.engineAliasRefresh', true); | |
| // Adds "Add" button in Search Shortcuts table at about:preferences#search | |
| // Useful in setting Google CSE as the default search engine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @namespace Personal | |
| // @name Remove media | |
| // @description Remove images and videos | |
| // @version 2025-01-17 | |
| // @author Elvin Aslanov | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=wikimedia.org | |
| // @license MIT | |
| // @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| edge://discover-chat-v2/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| edge://inspect/#pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $action = New-ScheduledTaskAction -Execute 'powershell.exe' ` | |
| -Argument 'Stop-Computer -Force' | |
| $trigger = New-ScheduledTaskTrigger -Daily ` | |
| -At '2:30 AM' | |
| $task = Register-ScheduledTask -TaskName 'Shutdown' ` | |
| -Description 'Shutting the PC down at night' ` | |
| -Action $action ` | |
| -Trigger $trigger ` |