Sticky Posts
Categories
manual
excerpt
Post List
Python Pydantic Sample
        from:Introduction to Pydantic - BUGBYTES
Pydantic is the most widely used data validation library for Python.
main.py123456789101112131415161718192021222324252627282930from pydantic import ValidationErrorimport requestsfrom models import Student# print(# json.dumps(Student.model_json_schema(),...
    
    more...
  Python FastHTML
        from: Modern Web Apps in Pure Python - NeuralNine
Modern web applications in pure Python. Built on solid web foundations, not the latest fads - with FastHTML you can get started on anything from simple dashboards to scalable web applications in...
    
    more...
  WPF project in VSCode
        # Create WPF Project
Execute dotnet new wpf -o WPFTutorials or in WPFTutorials directory execute dotnet new wpf .
Open the WPFTutorials using VSCode. There is a problem The name ‘InitializeComponent’ does not exist in the current context in MainWindow.xaml.cs. Becuase the MainWindow is a partial...
    
    more...
  Modern Node.js Patterns for 2025
        repost:Modern Node.js Patterns for 2025
Node.js has undergone a remarkable transformation since its early days. If you’ve been writing Node.js for several years, you’ve likely witnessed this evolution firsthand—from the callback-heavy, CommonJS-dominated landscape to today’s clean, standards-based...
    
    more...
  XML Serialization and Deserialization with Jackson
        repost: XML Serialization and Deserialization with Jackson
# 1. Overview
In this tutorial, we’ll learn how to serialize Java objects to XML data using Jackson 2.x, and deserialize them back to a POJO.
We’ll focus on the basic operation that doesn’t require a lot of complexity or customization.
# 2....
    
    more...
  Jackson Annotation Examples
        repost: Jackson Annotation Examples
# 1. Overview
In this tutorial, we’ll do a deep dive into Jackson Annotations.
We’ll see how to use the existing annotations, how to create custom ones, and finally, how to disable them.
# 2. Jackson Serialization Annotations
First, we’ll take a look at the...
    
    more...
  Microsoft Word Processing in Java with Apache PO
        repost: Microsoft Word Processing in Java with Apache POI
# 1. Overview
Apache POI is a Java library for working with the various file formats based on the Office Open XML standards (OOXML) and Microsoft’s OLE 2 Compound Document format (OLE2).
This tutorial focuses on the support of Apache POI for...
    
    more...
  Ports that are blocked by browsers
        repost: Ports that are blocked by browsers - Keenformatics
Today I was experimenting with a small project using Docker and Flask. I just created two identical services and exposed them on two different ports: nothing fancy. However, to my surprise, only one of the two seemed to be working.
The...
    
    more...
  Custom Excel number format
        repost: Custom Excel number format
by [Svetlana Cheusheva](https://www.ablebits.com/office-addins-blog/author/svetlana-cheusheva/), updated on October 10, 2023
This tutorial explains the basics of the Excel number format and provides the detailed guidance to create custom formatting. You will learn...
    
    more...
  









