Plugging into Lobo's Pure Java Web Browser

Lobo's Java Web Browser, still at a dot zero release, drew my attention today because it very recently was Java Posse's project of the week. I love the fact... Read all

Remove Empty XML Nodes

Remove nodes like (without attributes & without children) public static void RemoveEmptyNodes(XmlDocument doc) { XmlNodeList nodes =... Read all

Using An HTTP Proxy With Universal Feed Parser

without using http_proxy environment variable.. import urllib2, feedparser proxy = urllib2.ProxyHandler( {"http":"http://your.proxy.here:8080/"} ) d =... Read all

Summary of the AJAX Frameworks Comparison

This final post of a series analyzing several libraries and frameworks that augment the client with AJAX capabilities concludes with a comprehensive comparison. Read all

Augmenting the Client With Vue.js

In this post, the author takes their first steps in augmenting an SSR app with Vue. In the next post, they will implement the same features with Alpine.js. Read all

A Hands-On Guide to OpenTelemetry: Visualizing Instrumentation for Developers Using Jaeger

This article continues the journey by learning the first steps developers can take with visualizing instrumentation using Jaeger on their observability journey. Read all

How To Change an Ansible Namespace With the FQCN Migration Tool

Learn to migrate an Ansible collection to a completely different namespace, for renaming purposes or releasing a productized version of a community project. Read all

Transforming Software Development With Low-Code and No-Code Integration

Learn how to integrate low-code and no-code practices and tools into your SDLC, what approaches to avoid, and mitigation strategies for potential challenges. Read all

Building a Tool To Generate Text With OpenAI’s GPT-4 Model

Build a text generation tool using OpenAI's GPT-4. Set up your environment, authenticate the API, make API calls, handle errors, and integrate with Flask for a web app. Read all

My Opinion on the Tauri Framework

Tauri is a Rust-based framework for building desktop applications. Read more about its functions, as well as the author's pros and cons. Read all

Validation With Spring Boot

When building a Spring Boot application, you will need to validate the input of web requests, the input to your services, etc. Read all

Building a Performant Application Using Netty Framework in Java

Netty empowers developers to build high-performance and scalable networked applications with ease, leveraging its rich feature set, flexible architecture, and extensive ecosystem of libraries and tools. Read all

Swift Predicate: Usage, Composition, and Considerations

Swift Predicate allows developers to filter and evaluate data collections in a natural and efficient way by defining complex logical conditions. Read all

 

 

 

 

Top