None. ValveSoftware/SteamOS#771 Be careful on what you are storing in this device (using browser and login to your accounts is NOT a good idea for now).
Being able to control Steamdeck by using mouse and keyboard connected to PC/Laptop
None. ValveSoftware/SteamOS#771 Be careful on what you are storing in this device (using browser and login to your accounts is NOT a good idea for now).
Being able to control Steamdeck by using mouse and keyboard connected to PC/Laptop
// Open your Browser | |
// Go to https://myactivity.google.com/page?hl=en&page=youtube_comments | |
// Authorize if the site requires it. | |
// You should now see all your YouTube comments on the page | |
// Open your browser's Dev Tools (F12) or see the following instructions: https://developer.chrome.com/docs/devtools/open#last | |
// Select the "Console" tab in Dev Tools panel | |
// Copy & Paste the following code into the "Console" and press the "Enter" key | |
// === EDIT === | |
// Note: This tab/window should be focused all time. |
export type TypeOfForType<T> = | |
T extends string ? 'string' : | |
T extends boolean ? 'boolean' : | |
T extends number ? 'number' : | |
T extends bigint ? 'bigint' : | |
T extends undefined ? 'undefined' : | |
T extends object ? 'object' : | |
T extends symbol ? 'symbol' : 'function'; |
'Run it for URL: https://www.youtube.com/playlist?list=WL'; | |
'Open the Browser console ([F12]), and insert code there. Push [Enter] key'; | |
'Wait until the playlist become an empty, then it reloads the page (it clears all parts of the script from the memory)'; | |
'If you have any issues - try to change the timeout values below' | |
const PL_CLEANING_ITEM_TIMEOUT = 250; | |
const PL_CLEANING_CONTEXT_MENU_TIMEOUT = 50; | |
const PL_CLEANING_DROP_SCRIPT_TIMEOUT = 10000; |
#!/bin/sh | |
# Reset Parallels Desktop's trial and generate a casual email address to register a new user | |
rm /private/var/root/Library/Preferences/com.parallels.desktop.plist /Library/Preferences/Parallels/licenses.xml | |
jot -w pdu%d@gmail.com -r 1 |
// ==UserScript== | |
// @name silicon-valley-online.ru | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description (Anti-adblock Killer) Raw Video Player on site: silicon-valley-online.ru | |
// @author saaadel | |
// @match https://gist.github.com/search?l=javascript&q=%22user.js%22+%26%26+%22silicon-valley-online.ru%22 | |
// @icon http://www.google.com/favicon.ico | |
// @include /^(http|https)?://silicon-valley-online.ru.*$/ | |
// @grant none |