Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  Java Code Geeks programming Blog  > 

2023-03-27 08:44
Bootstrap is a popular front-end web development framework that is widely used by developers to build responsive, mobile-first web projects. It’s is free to use under the MIT license… Read More
2023-03-27 04:00
Okta Workflows how-to guides are questions and answers from weekly community office hours, MacAdmins Workflows Slack channel, and other places. Read all other how-to guid… Read More
2023-03-24 17:00
Prometheus is an open-source monitoring and alerting system that is widely used for monitoring containerized applications and microservices. A Prometheus Workshop is an event or training ses… Read More
2023-03-24 11:31
1. Introduction UML (Unified Modeling Language) is a visual modeling language used in software engineering to represent complex systems. It is a standardized language for visualizing, specif… Read More
2023-03-24 09:25
Application development refers to the process of creating software applications that perform specific tasks or provide certain functionalities. It involves designing, developing, testing, an… Read More
2023-03-24 05:00
In our earlier post, we learnt that when a method is synchronized, only one thread will be allowed to enter the method. In this post, let’s discuss the behavior of static synchronized… Read More
2023-03-23 05:00
Previously we implemented a thread safe counter using synchronized. We would like to swift from synchronized blocks to something more flexible with more features, this is were locks are of u… Read More
2023-03-22 17:00
API stands for Application Programming Interface. It is a set of protocols, routines, and tools for building software applications. APIs define the way in which two software systems interact… Read More
2023-03-22 07:23
Code completion is a feature in integrated development environments (IDEs) that assists programmers in writing code more efficiently and accurately. When a programmer types a few characters… Read More
2023-03-21 17:27
AWS Cloud is a cloud computing platform provided by Amazon Web Services (AWS). It provides a range of services, including computing, storage, and networking, that can be used to build, deplo… Read More
2023-03-20 17:00
Docker containers have become a popular technology for building and deploying applications, as they provide a consistent and efficient way to package and distribute applications across diffe… Read More
2023-03-17 17:00
Vue.js is an open-source progressive JavaScript framework for building user interfaces (UIs) and single-page applications (SPAs). It was created by Evan You and first released in February 20… Read More
2023-03-17 09:42
Backup and disaster recovery are two related but distinct concepts in data management. Backup refers to the process of creating copies of data, files, and other resources in order to prevent… Read More
2023-03-16 17:00
Cloud automation refers to the use of automated processes and tools to manage and provision resources in cloud environments. Cloud automation helps organizations to optimize their cloud infr… Read More
2023-03-16 08:01
1. Introduction AJAX (Asynchronous JavaScript and XML) is a technique for building dynamic web applications that can update content on a web page without requiring a full page reload. It use… Read More
2023-03-15 09:12
Java modules were introduced in Java 9 to enhance the modularity of the Java platform. A module in Java is a collection of related packages, classes, and resources that can be packaged and d… Read More
2023-03-14 08:47
Web hosting refers to the service of providing server space and bandwidth to individuals or organizations to make their websites accessible on the internet. Web hosting companies offer diffe… Read More
2023-03-13 12:00
1. Introduction 1.1 Definition of RESTful architecture RESTful architecture is an architectural style for building web services. It is based on the principles of Representational State Trans… Read More
2023-03-13 09:00
Mobile software testing is the process of verifying and validating mobile applications to ensure that they meet the expected quality standards. It involves testing the functionality, usabili… Read More
2023-03-13 07:00
Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a massive 97% off on The 2023 Premium Interviewing Skills Bundle. Get it now with only $34… Read More
2023-03-10 09:50
Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to run JavaScript code on the server-side. It was created by Ryan Dahl in 2009 and has since b… Read More
2023-03-10 07:00
Previously we had an introduction to threads in Java and some of the internals. On this blog we will proceed on developing thread safe code using synchronized. Intrinsic lock or monitor lock… Read More
2023-03-09 09:14
Java Virtual Threads is a new feature introduced in Java 19 that allows developers to create lightweight threads, also known as fibers, that can run concurrently within a single operating sy… Read More
2023-03-09 07:00
Playwright is a Node.js-based tool for automating browsers. It supports all modern rendering engines including Chromium, WebKit and Firefox. Playwright can be used with JavaScript, TypeScrip… Read More
2023-03-08 10:16
Serverless computing and cloud computing are two different approaches to delivering computing resources to users. Table Of Contents 1. Cloud Computing Evolution 2. Severless Computing Evolut… Read More
2023-03-07 10:41
Web development is the process of building and maintaining websites and web applications. It involves a combination of programming, design, and content creation. Table Of Contents 1. Why Web… Read More
2023-03-06 07:00
Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a massive 97% off on The Jumbo 2023 Javascript Bundle. Get it now with only $39 instead of… Read More
2023-03-01 12:06
DevOps is a set of practices and principles that combine software development (Dev) and IT operations (Ops) to deliver software and services more quickly, reliably, and efficiently. The goal… Read More
2023-02-28 11:17
Java frameworks are software frameworks that provide developers with pre-built libraries, components, and APIs to help them develop Java applications more efficiently. Java frameworks often… Read More
2023-02-24 12:56
1. Introduction Python is a high-level, interpreted programming language known for its simplicity, readability, and versatility. It was first released in 1991 by Guido van Rossum and has sin… Read More
2023-02-17 05:00
Introduction In a previous article, I talked about how serialization and file I/O performance was improved in JDK 21 thanks to the use of VarHandleconstructs. The method employed t… Read More
2023-02-13 07:00
Annotate, Edit, Combine & Do So Much More with Your PDF Files with This Award-Winning Software Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are… Read More
2023-02-10 05:00
You know that thing where recruiters think that Java and JavaScript are probably the same thing? Well, they’re really not… unless… TL;DR Sometimes when working with a Jav… Read More
2023-01-30 07:00
Optimize All Windows Services & Get Auto Updates for a Smoother, Faster, and More Secure PC Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are off… Read More
2023-01-28 13:15
Dynamic proxies in Java is a simple and very useful feature. Usually we create an interface implementation and then compilation is involved. With dynamic proxies we can implement a list of i… Read More
2023-01-27 09:20
Threads are everywhere, they are the basic building block of every server application out there. Usually in Java using threads is just a combination of Executors and Runnables however let&rs&hell…Read More
2023-01-15 13:15
Did you know you can allocate memory segments that are larger than the physical size of your machine’s RAM and indeed larger than the size of your entire file system? Read this article… Read More
2023-01-12 05:00
 Consider a set of rows stored in Bigtable table called “people”: My objective is to be able to paginate a few records at a time, say with each page containing 4 records: Pa… Read More
2023-01-09 07:00
Dive deeper into Your Passion for IT, Design & Coding with Unlimited Access to 1000+ Courses Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are of… Read More
2023-01-05 05:00
Ensure some commands are executed only when a service is up is a common need ofdocker-compose or evenKubernetes when using some container to setup some state. If you can usewget, it has almo… Read More
2023-01-04 05:00
Java 19 introduces Virtual Threads, which are lightweight threads designed to improve application throughput. This is a preview language feature so must be enabled using --enable-preview. As… Read More
2022-12-23 05:00
Testing is a crucial part of the Software Development LifeCycle(SDLC). Testing should be included in every stage of the SDLC to get faster feedback and bake the quality within the product. T… Read More
2022-12-22 11:37
1. Introduction Design patterns are reusable solutions to common software design problems. They provide a way to describe and document software architectures, as well as a common vocabulary… Read More
2022-12-20 09:00
Welcome readers, in this tutorial, we will create a custom hooks in a React-js application. 1. Introduction React is a flexible javascript library responsible for building reusable UI compon… Read More
2022-12-15 05:00
In 2007, Steve Jobs launched the first iPhone, which revolutionized the world. But because of that, many businesses dealt with the problem of changing the layout of websites from desktop to… Read More
2022-12-12 07:00
Stay Secure with Backup from Degoo & Never Worry About Losing Your Files. Ever. Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a mass… Read More
2022-11-29 05:00
If your application contains multiple services interacting with each other the need for distributed tracing is increasing. You have a call towards one application that also calls another app… Read More
2022-11-26 09:00
Welcome readers, in this tutorial, we will understand form handling in a React-js application. 1. Introduction React is a flexible javascript library responsible for building reusable UI com… Read More

Share the post

Java Code Geeks

×

Subscribe to Java Code Geeks

Get updates delivered right to your inbox!

Thank you for your subscription

×