
How to use the Google Chrome color picker extension
Mar 20, 2023 · Want to select a color from an image on a webpage? Or an HTML element? Here's how to use the Google Chrome color picker extension that comes packaged as part of the browser's built-in DevTools.
OpenAI API tutorial: How to use AI prompt chaining
Sep 24, 2024 · This tutorial shows developers how to chain AI prompts and OpenAI models to save time and effort -- in this case, to synthesize data from Shakespeare plays.
Introduction to Solidity: Build an Ethereum smart contract
Jun 27, 2023 · This introduction to Solidity programming takes you through an example that's a major reason for its popularity: Building a smart contract with Solidity.
Fix these 10 common examples of the RuntimeException in Java
Mar 16, 2022 · Don't let the occurrence of a RuntimeException in Java bring your code to a standstill. Here are 10 examples of how to avoid runtime exceptions in Java.
Understanding the 7 principles of functional programming
Nov 27, 2024 · Moving from object-oriented to functional programming is a paradigm shift for developers, but these key principles explain why it's worth the effort.
How to Git clone on Ubuntu with GitLab and GitHub - TheServerSide
Jul 26, 2020 · Need to perform an Ubuntu git clone operation? Here we will show you how to install Git on Ubuntu and then clone, commit and even push to GitLab and GitHub.
How to git stash untracked files with a push - TheServerSide
When a developer uses the default options to call git stash, it ignores untracked files. Here's how to change that default behavior and include both ignored and untracked files in the stash.
How to merge master into any branch in GitLab by examples
Aug 21, 2020 · If the developer wants to merge master into a branch that’s protected, they must perform a GitLab merge request. If the developer wants to merge master into a branch that’s unprotected, the easiest approach is to do a merge and push combination on the client machine.
Edit, change or amend the last Git commit message
Developers often commit to their local Git repository only to realize the associated commit message isn't up to par. Fortunately, it's easy to edit and change the last Git commit message, although development teams should be aware of some dangers, especially if the last Git commit has already been shared with others. How to amend a Git commit message Use the amend option of the commit command ...
How to install Tomcat as your Java application server
May 5, 2019 · Doing Java web development and need to install Tomcat? This example will show you how to download, meet prerequisites, install and test the popular Java web server.