Post/Code

HomeAboutUsesNow

it Log, cURL, TypeScript, Launch Chrome from VS Code.

  • Git Log | Link
  • git log
  • git log -p
  • git log --pretty=oneline
  • git log --pretty=format:"%h: %an: %ad: %s"
  • curl -i yourUrlHere | Gives you data and headers for the provided URL
  • curl -o output.txt yourUrlHere | Stores the response from yourUrlHere in output.txt
  • let name: string = 'Nicholas';
  • let greeting: string = `Hello ${name}`;
  • Launch Chrome on file from VS Code | Link