Engineering
Articles relating to Software Engineering and everything it involves. Relevant Topics: Unity, C/C#, App Development, SQA and more!
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.
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.
Access Control in Kubernetes
RBAC is an exceptional way in Kubernetes to limit access to required users depending upon user requirements. Being introduced recently in Kubernetes 1.20, it has been a game changer so far regarding cluster resource access and stopping privilege escalation in compromised clusters.