Skip to content

Instantly share code, notes, and snippets.

View msmosso's full-sized avatar
🚀

Matheus Mósso msmosso

🚀
View GitHub Profile
@diego3g
diego3g / NODE.md
Last active November 15, 2024 15:01
VSCode Settings (Updated)

⚠️ Note!

With VSCode version 1.94, the APC extension broke and there is no fix yet.

So, for those having issues with APC after the VSCode update, I recommend downloading the previous version of VSCode for now (https://code.visualstudio.com/updates/v1_93) and setting updates to manual by adding this to the editor's configuration:

"update.mode": "manual",
@raupachz
raupachz / Mail.java
Last active October 7, 2022 18:27
JavaMail API with Amazon Simple Email Service (SES) using the SMTP Interface
import com.sun.mail.smtp.SMTPTransport;
import java.io.IOException;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
/**