Var = reassignable, global, local Let = reassignable, global, local, block Const = cant be reassigned, global, local, block if (true) { var b = 3; } console.log(b ...
Booleans may seem harmless, but using them can be fraught with peril. When you can’t avoid them, follow these five rules. Booleans are deceptively simple. They look harmless—just true or false, right?
How to use the git .gitconfig file for a more efficient workflow Your email has been sent Git is the most widely-used version control system on the market. It’s ...
C:\scripts>sendemail.exe -t error@xxx.xx -f error@xxx.xx -u test -m test -s xxx.xx:587 -xu xxx -xp ppp -v -v -o tls=yes Jun 09 23:19:14 i5-3470s sendemail.exe[23352]: DEBUG => Connecting to xxx.xx:587 ...
In earlier posts, I've discussed how to authorize a user declaratively both in ASP.NET Core and Blazor using the Authorize attribute, among other tools (and I've also referenced Eric Vogel's posts on ...
Out of curiosity, I am telnetting to an SMTP server. The Email is to me i.e. RCPT goes to me. The MAIL FROM: i've put my email address. But I don't get any name displayed. If I try in a program like ...
Testing is an integral and important part of any software development cycle, open or closed, and Linux kernel is no exception to that. Developer testing, integration testing, regression, and stress ...