On this page, I will show you how to exactly make circular, responsive, 3D CSS buttons that have a highlight hover effect when the mouse cursor is placed over them. Widget Code: <p style=”margin-bottom: 0.5rem;text-align: center;display:inline-block;”> <a style=”color:white;display: inline-block;width:32%;” href=”https://www.patreon.com/biohacking”><img class=”ocs” src=”https://Website.com/YourImageUrl.png” alt=”Bio hacking patreon”> Support Bio Hacking</a> <a style=”color:white;display: inline-block;width:32%;” href=”https://www.reddit.com/r/Bio_Hacking/”><img class=”ocs” src=”https://Website.com/YourImageUrl.png” alt=”Bio […]
Category: Software Engineering

How to Make CSS Buttons with Custom Icons for WordPress Sidebar
On this page, I will show you how to make a custom css button with a custom image from your WordPress library as a logo, for your sidebar: Button Class Code (this code goes to your additional CSS or your stylesheet CSS): .bbtn { background: #3498db; background-image: -webkit-linear-gradient(top, #3498db, #2980b9); background-image: -moz-linear-gradient(top, #3498db, #2980b9); background-image: […]
What is Smoke Testing, Sanity Testing, & Regression Testing?
This topic may seem simple to many, but despite of hundreds of web articles – Smoke, Sanity, Retesting & Regression are the most misunderstood topics in Software Testing. There is enormous amount of literature on the subject, but most of them are confusing. The following article makes an attempt to address the confusion. Before understanding […]
Build vs Version vs Revision vs Release vs Link vs Compile
In this section, I will cover what it means to build, version, revision, release, link, and compile in terms of what software engineers need to know; whether you are developer/programmer, or a QA Tester. Compiling, Linking, Building the Software First, think of the way pre-fabricated building sections might be built, and then assembled into a […]

Unit Testing – Analogy, Purpose, Manual vs Automated, and in Java
What is Unit Testing? Explaining Unit in Unit Testing This is a confusing question for most people when they start thinking about writing tests for their software. I know that I didn’t fully understand what “a unit” was in the context of testing until I wrote a lot of tests. There are differing definitions of […]