Computer - Others

Basic


  • Shortcuts
    • windows + E => Open File Explorer
    • alt + V => View option
    • ctrl + wheel => Change Size of Icon
    • ctrl + shift + 1/2/3/4/5/6/7/8 => Change Size of Icon
  • .new Domains
    • docs.new
    • sheets.new
    • slides.new
    • meets.new
    • model.new => Google ML train models
    • deploy.new => Vercel deployment
    • compresspdf.new
    • pdftoword.new
  • Chrome Dinosaur Game
    • Play Offline
      • chrome://dino/ => Write this in search bar
    • Start from a particular Score
      Runner.instance_.distanceRun = score / Runner.instance_.distanceMeter.config.COFFICIENT;
      
    • Change Jump Speed
      Jump Speed => Runner.instance_.tRex.setJumpVelocity(20)
      
    • Change Speed
      Change Speed => Runner.instance_.setSpeed(1000)
      
    • Don't Die
      Infinite Score => Runner.prototype.gameover = function() {}
      

Youtube


  • Hide the Red Play/Pause line while playing
        javascript: (function () {
            var goaway = ".ytp-chrome-top,.ytp-chrome-bottom{display:none;}";
            if ("\v" == "v") {
                document.createStyleSheet().cssText = goaway;
            } else {
                var tag = document.createElement("style");
                tag.type = "text/css";
                document.getElementsByTagName("head")[0].appendChild(tag);
                tag[
                    typeof document.body.style.WebkitAppearance == "string" ? "innerText" : "innerHTML"
                ] = goaway;
            }
        })();
    

Windows PowerShell


  • Basic
    • programName --version => Returns the Version of the Program
    • cd fileName => Change Directory
    • ls => Shows files in the selected folder
    • cp fileName fileName2 => Copy fileName as fileName2
    • dir
    • cd folderName
    • ipconfig
    • Arrow Keys => To go to history commands
    • tab => To autocomplete
    • cmd => Open the folder and type this in the search bar
    • ctrl + Mouse Scroll => Zoom in/out
  • Cool Tricks
    • help color => Shows options for colors
    • color nn => Select background/color out of the given options
    • help prompt => Shows options for prompt
    • prompt textToShow$n => Change prompt by your custom text
    • title textToShow => Change title shown in Title Bar
    • telnet towel.blinkenlights.nl => Watch Start Wars movie
    • attrib +h +s +r folderName => Hide Folder
    • attrib -h -s -r folderName => Show hidden folder
    • command | clip => Copy the output of the command
    • fn + f7 => To view History
    • md folderName\ => To create a folders like con/aux
    • wmic product get name => View all the installed programs on your pc
    • powercfg /batteryreport => Check battery life
    • Install-Module -Name PowerShellGet -Force => History based autocompletion
      • Install-Module PSReadLine -AllowPrerelease -Force
Share: