Technical Writings on Game Design, Software Engineering, Security & Operations
Beginner's Guide to Custom Paint in Flutter
This is a basic guide for Custom Paint in Flutter. Developers can make pixel-perfect UI and animations with the help of Custom Painter. So, in this article, we will look into the basics of custom paint, draw basic shapes and many more!
A Basic Guide to QR Codes
If you're curious about QR codes, what they are, what benefits they provide and what harm they might cause, this is the perfect place to get started. I have gathered surface-level information on QR codes in this article that might give you a headstart in digging deep.
Detailed Guide to Web Application Testing: Part I
No testing is easy, and it applies the same to web application testing as well. In this part of the guide to web application testing, I have mainly discussed the common challenges faced while assuring the quality of web applications.
Avoidable Mistakes Unity Beginners Make
Making mistakes when learning something new is unavoidable. When learning Unity, beginners might make many mistakes, some of which can be prevented. So, today, I'll help you save your time and effort by sharing some of them and how you can avoid the hassle in the first place.
How to take your software from distribution to sales?
A new trend of product-led growth is now overtaking the software industry. The plan is not to sell huge $500 prices of software products in the market. Instead, sell little $10 monthly prices of purchases in various forms like in-app purchases.
Identifying and Avoiding Phishing Attacks
Deceiving people on the internet can be easy when you can pose as a legitimate source. Phishing is an internet threat as such. So, to be safe, I have pointed out the common red flags to look out for and some security tips on how to stay safe from phishing attacks.
FAQs on Integration of In-app Purchases in Flutter
Many questions are unanswered when we are working on something new. Recently, I looked into the in-app purchase feature in Flutter and found some basic questions one might have. So, I have gathered such questions and answered them in this article.
Scheduling in Kubernetes
One of the core features of Kubernetes is Pod scheduling, where Pods with different priorities can be placed on Nodes depending on the available resources. This guarantees cluster and node uptime and prevents mission-critical Pods from eviction.
Full-Text Search: A Better MySQL Search Alternative to LIKE
The LIKE operator is commonly used to run search queries on MySQL. However, the full-text search is a greater option for running queries with better, faster and more relevant results. This article discusses the use conditions, benefits and features of full-text search over the LIKE operator.