June 30, 2022 12:50pm
Email SMTP Deliverability
- Suggested “DKIM” (TXT) Record – From Cpanel – Email deliverability
- SPF Record from same page
- What Is a DMARC Record + How to Add One to Your DNS [Easy] (wpmailsmtp.com)
May 10, 2022 9:23am
Django Speed Optimisation
Django select_related and prefetch_related | by Goutom Roy | Better Programming
November 10, 2022 8:28am
React Nested Inline Conditional
{props.user.id == props.currentUserId? null:
<>
{localFollowingDetails.includes(props.user.id)?
<Button
className=" bg-pink-400 text-white py-1 max-h-8 px-1 w-20 mt-1 ml-auto rounded-full no-highlights"
onClick={followUnFollowUser}
>
Unfollow
</Button>:
<Button
className="relative right-50 border-pink-400 border-2 ml-auto text-pink-400 py-0.5 w-20 max-h-8 mt-1 px-1 rounded-full no-highlights"
onClick={followUnFollowUser}
>
Follow
</Button>}
</>
}
The <></> is important to allow the second inline constional