- MySQL View
Views are virtual tables what consist of columns and rows from real tables within a database. Views don’t contain the data they display. Views are practically for read-only but some databases allow updating on views. Here is how you create a view. You can just JOINs if needed to generate your…
- Negotiating Salary
Few skills will impact your lifetime earnings as a software engineer more than knowing how to negotiate your salary. A single negotiation can mean tens of thousands of dollars per year — and that compounds over your career. Yet most developers accept the first offer they receive, leaving…
- Spring Boot Testing
When it comes to testing, you must follow Test Driven Development principles which have great practices to keep your code and logic clean. One important thing to remember about testing, You must not include logic in your tests. Rules of Test Driven Development Don’t write production code without a…
- AWS – Secrets Manager
This service has been a blessing for me in terms of hiding credentials from being exposed to hackers. This is what Secrets Manager does from the official site. “AWS Secrets Manager helps you protect secrets needed to access your applications, services, and IT resources. The service enables you to…
- React with Bootstrap
Install Bootstrap npm install –save bootstrap Include bootstrap.css in the index.js import ‘bootstrap/dist/css/bootstrap.css’;