Makefile for rust projects
Personal Coding and Hobby Notebook
Recently I was out of internet and I needed to implement a function that would search if a String was part of another String for an NSIS installer. Here’s my rendition of such a function. Once I came back online I found out about StrStr, but here’s another option that gives you as output the […]
——————————————————————————– Language files blank comment code ——————————————————————————– Java 6700 230082 339218 818509 HTML 403 8751 4745 72384 XML 70 1112 996 11029 C++ 6 220 317 806 CSS 10 202 132 799 JSP 16 64 606 777 Javascript 5 77 54 571 XSLT 4 134 298 553 XSD 7 40 58 521 Objective C 5 […]
So you had your little program that would use AWS to send emails, and all of a sudden after a Java 7 update you get a stack trace like this: [java] javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465; nested exception is: javax.net.ssl.SSLException: Server key at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1962) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654) at javax.mail.Service.connect(Service.java:295) at javax.mail.Service.connect(Service.java:176) […]