@BrendanFalk I’m not typically doing that, but I was just recently explaining this theory to one of my colleagues and decided to post a blog about it. https://t.co/ZriIPTcpzW
The malicious phrase can be delivered in many ways. Ads are probably not the most effective ones :)
Built an AI code reviewer that actually works. Point it at your git branch -> get a structured report on bugs, security issues, and performance problems. Open source, works as CLI or GitHub Action.
https://t.co/7nAjcTN8FA
Apple knows how to sell stuff. You buy watches for $500, it has annoying metallic clip which scratches your laptop. You buy a clipless band for additional $100.
@zackwhittaker HackerOne froze more then $3k for me as well! And not responding for 3 months already! (I’m citizen of any sanctioned country for 7 years now)
@EniolaCodes Certainly reading. It allows me to consume the information in my own temp and makes it easier to skip parts which I already familiar with. Additionally for me it’s easier to memorize things in writing form.
OMG C# is the best! Since C# 8.0 you can write
```
using var file = new https://t.co/174MD21AwY.StreamWriter("myFile.txt");
// code
```
Instead of
```
using (var file = new https://t.co/174MD21AwY.StreamWriter("myFile.txt"))
{
// code
}
```
No crazy nesting anymore ❤️