Skip to content

Instantly share code, notes, and snippets.

View icecreamsandwich's full-sized avatar
🌴
On vacation

crazyRubix icecreamsandwich

🌴
On vacation
View GitHub Profile
const fs = require('fs');
var pdf = require('html-pdf');
var nodemailer = require('nodemailer');
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'muneebkt@gmail.com',
pass: ''
}
@icecreamsandwich
icecreamsandwich / vscode-macos-context-menu.md
Created December 16, 2022 11:46 — forked from idleberg/vscode-macos-context-menu.md
“Open in Visual Studio Code” in macOS context-menu

Open in Visual Studio Code

  • Open Automator
  • Create a new document
  • Select Quick Action
  • Set “Service receives selected” to files or folders in any application
  • Add a Run Shell Script action
    • your default shell should already be selected, otherwise use /bin/zsh for macOS 10.15 (”Catalina”) or later
    • older versions of macOS use /bin/bash
  • if you're using something else, you probably know what to do 😉