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

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

Java Code Geeks Blog


javacodegeeks.com
Java 2 Java developers resource center, Java tutorials, Java news, Java How-To and more
2022-02-17 05:00
Like I have written before, we need to rethink the binary data representation that we have currently and evaluate the effectiveness of it for an AI application. My take is that we should not… Read More
2022-02-16 05:00
As I have been writing in my blogs on AI, the data representation that we have, is not suited for writing a knowledge and intelligent system. Data needs to be the primary focus and remain th… Read More
2022-02-14 05:00
Analyzing garbage collection log provides several advantages like: Reduces GC pause time, reduces cloud computing cost, predicts outages, provides effective metrics for capacity planning. To… Read More
2022-02-13 13:15
Text blocks are all about writing multi-line strings in a clean and readable way. This was added as part of JEP 378 in Java 15. One can read the detailed information of the feature… Read More
2022-02-08 05:00
This docker startup tutorial is designed for everyone who is interested to learn docker in a easy way. Main goal behind this tutorial is to make docker learning simple. As docker has simplif… Read More
2022-02-07 07:00
1-Year Access to 3 Amazing Courses on Programming! Learn Python & JavaScript, Use Structured Query Language, Run Web Apps, and More Hey fellow geeks, This week, on our JCG Deals store, w… Read More
2022-02-02 05:00
On our day to day work we develop applications that include interactions with software components through I/O. Can be a database, a broker or some form of blob storage. Take for example the… Read More
2022-02-01 05:00
We have a very comprehensive set of tests on our Java server application. There’s a mix of quick unit tests and slower integration style tests which test some of the behaviour of the p… Read More
2022-01-31 05:00
I had written in the previous few blogs why a digital representation of data or a numerical representation of data does not fit the bill for AI. The problem with any of these is that they re… Read More
2022-01-24 05:00
Evolutionary Database Design is a slightly counterintuitive approach to managing a database. On the one hand, we think of our databases as towers that we must defend from any old change and… Read More
2022-01-23 13:15
As I had written in my previous blog, I don’t believe a true AI can be a computer program. The question that arises is why not? And if not, what can it be? As I have said, I find that… Read More
2022-01-16 13:15
This post is part of a series where I do my best to organize my thoughts around Go: its paradigms and usability as a programming language. I write this as a Java programmer that re… Read More
2022-01-15 13:15
As many other terminologies before like cloud computing, muti-tenancy, SaaS, PaaS, IaaS and so on, the definition of AI also has started to blurr irreparably. We seem to want to use the term… Read More
2022-01-14 05:00
KivaKit 1.2 adds seamless support for AWS Lambda. Lambdas for REST and GRPC can be added to a KivaKit Microservice without alteration (which will make this a short article). Creating a Lambd… Read More
2022-01-13 05:00
KivaKit Clustering   KivaKit provides built-in support for clustering of microservices using Apache Zookeeper. It supplies a cluster model that is updated as members join and leave the… Read More
2022-01-08 13:15
A quick guide to insert or replace the element at the specified index in java. 1. Overview In this tutorial, We’ll learn how to insert or replace an element at a specified index into A… Read More
2022-01-06 07:00
Go From Beginner to Advanced in the Ethical Hacking Essentials Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a massive 92% off on The Co… Read More
2022-01-02 13:15
Apache Log4j is a popular logging library used across the JVM ecosystem. On Dec 10 2021, a high severity vulnerability was disclosed, dubbed Log4Shell. If you are using a version o… Read More
2021-12-31 05:00
To help you get to know the Jakarta MVC specification, here’s a recap of its history and status, and a brief introduction to the technology. Jakarta MVC History and Status Th… Read More
2021-12-29 05:00
Hello. In this tutorial, we will understand how to write API documentation in Node.js using Swagger. 1. Introduction A swagger is a popular tool used for generating interactive API documenta… Read More
2021-12-28 05:00
Hello. In this tutorial, we will interact with Amazon AWS SQS (simple queue service) to create a Node.js app with the help of a popular emulator known as LocalStack. 1. Introduction Localsta… Read More
2021-12-22 05:00
You are at the right place! This is not any vocabulary building free class but a very critical evaluation of a much sought-after debate around verification and validation in the software tes… Read More
2021-12-19 13:15
Introduction Lambda expressions can use the variables in the scope of the lambda expression, but only if they are final or effectively final. What is the reason for that? Why is that? It is… Read More
2021-12-18 13:15
Parameterized tests are used to test the same code under different conditions. One can set up a test method that retrieves data from a data source. This data source can be a collection of ob… Read More
2021-12-17 05:00
Warning, the following code example is suitable for a narrow range of use cases… but it’s strangely useful. When writing tests against Spring services or controllers, we may wis… Read More
2021-12-13 07:00
Reliable, Convenient, & Online Access Anywhere with Any Devices Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a massive 92% off on R… Read More
2021-12-12 13:15
The code Let’s consider a simple function that checks for equality of two passwords, and it throws an error when the first one is not provided: export default function samePasswordsVal… Read More
2021-12-09 07:00
Everything You Need to Know to Become a JavaScript Developer Hey fellow geeks, This week, on our JCG Deals store, we have another extreme offer. We are offering a massive 89% off on JavaScri… Read More
2021-12-09 05:00
If you are developing in Java long enough, you are surely aware of the Object::finalize() method and the concept of the finalizers in general. protected void finalize() throws Throwable … Read More
2021-12-07 05:00
With HTTP, resources are identified using URIs. And a uniquely identified resource might support multiple resource representations. A representation is a specific form of a particular resour… Read More
2021-12-06 05:00
KivaKit XML Streaming   Since Java 1.6 in 2006, Java has had a built-in XML streaming API in the package javax.xml.stream. This API is known as StAX (Streaming API for XML), and it is a… Read More
2021-12-04 13:15
A quick guide on how to convert IntSteam to Array in java 8. 1. Overview In this tutorial, We’ll learn how to convert IntStream to Array of ints in java 8. IntStream is used to create… Read More
2021-12-01 08:00
Hello. In this tutorial, we will perform CRUD operations in an Express.js application with SQLite. 1. Introduction SQLite is a software library that provides a relational database management… Read More
2021-12-01 05:00
Hello. In this tutorial, we will explain the concept of pagination in a node.js application. 1. Introduction Pagination is a concept of adding numbers to identify the sequence of pages. In p… Read More
2021-11-26 05:00
Writing unit test is very important for better software quality. For unit tests Mockito is one of the most common choices of developers. Mockito providers different way to mock methods, like… Read More
2021-11-24 05:00
Introduction Anthos allows you to attach any non-GKE Kubernetes cluster. In this article, I will demonstrate how to attach an existing AWS EKS cluster and make it part of Anthos ecosystem. O… 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

×