Introduction C-a == Ctrl-a M-a == Alt-a General :q close :w write/saves :wa[!] write/save all windows [force] :wq write/save and close
API workthough Open a browser # start an instance of firefox with selenium-webdriver driver = Selenium::WebDriver.for :firefox # :chrome -> chrome # :ie -> iexplore Go to a specified URL
#Linux Cheat Sheet ##File Commands: ls – directory listing ls -al – formatted listing with hidden files cd dir - change directory to dir cd – change to home pwd – show current directory mkdir dir – create a directory dir rm file – delete file
Getting Started with NPM (as a developer) As easy as 1, 2, 3! Updated: Aug, 08, 2022 update config docs for npm 8+ Jul 27, 2021 add private scopes Jul 22, 2021 add dist tags Jun 20, 2021 update for --access=public Sep 07, 2020 update docs for npm version
Quick Summary cd my_project git init . git add . # add everything git commit -m 'Initial commit' ... make some changes ...