Sticky Posts

异音相从谓之和,同声相应谓之韵。- 刘勰《文心雕龙》 作者之用心未必然,而读者之用心何必不然。- 谭献《复堂词录序》 凡作诗之体,意是格,声是律,意高则格高,声辨则律清,格律全,然后始有调。- 空海《文镜秘府论・论文意》 词之为体,要眇宜修,能言诗之所不能言,而不能尽言诗之所能言。诗之境阔,词之言长。- 王国维《人间词话》 # 先秦 # 佚名 # 桃夭 12345桃夭桃之夭夭,灼灼其华。之子于归,宜其室家。桃之夭夭,有蕡其实。之子于归,宜其家室。桃之夭夭,其叶蓁蓁。之子于归,宜其家人。 #...

Categories

Post List

repost: How AS2 Works This guide provides a comprehensive description of the operation of the AS2 protocol. The high level layout is broken down as follows: How does AS2 work? Key components of an AS2 system Message flow in AS2 # 1 How does AS2 work? Internal applications, first generate files...

# Email Header X-Sender: custom field corresponding to the SMTP sender. X-Receiver: custom field corresponding to the SMTP receivers. From: sender email address. To: receiver email address. Cc: this field is used by the sender to send an email to different people. Reply-To: If a receiver replies to...

From: opencv-course # Reading Images & Video 12345678910111213141516171819202122232425import cv2 as cv# Reading Image# img = cv.imread('./Resources/Photos/cat.jpg')# img = cv.imread('./Resources/Photos/cat.jpg', cv.IMREAD_GRAYSCALE) # Read as Gray...

repost: Styling Tables the Modern CSS Way HTML tables are almost as old as the web itself, and have been used — and abused — for decades. Once upon a time, intrepid web designers hacked together complex layouts using tables, in the absence of other suitable methods. Thankfully that’s no longer...

repost: Command Line Data Processing: Using DuckDB as a Unix Tool TL;DR: DuckDB’s CLI client is portable to many platforms and architectures. It handles CSV files conveniently and offers users the same rich SQL syntax everywhere. These characteristics make DuckDB an ideal tool to complement...

resources: Welcome - The complete WPF tutorial # Create WPF Project dotnet new wpf -o ExcelToXML ExceToXML.csproj 12345678910111213141516<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType>...

repost: C# Datatable (How It Works For Developers Tutorial) | IronPDF Welcome to this tutorial on C# DataTables. A DataTable is a powerful data structure provided by the .NET framework, which allows you to store, manipulate, and query data in a tabular format. In this tutorial, we will explore the...

repost: How to use IEnumerable, ICollection, IList, and IQueryable in C# | InfoWorld The C# programming language provides excellent support for working with collections of data. C# includes several classes and interfaces that can help you query collections of data efficiently. The most commonly...

repost: CRUD Operations in WPF using EntityFrameworkCore and SQLite In this blog post, we will discuss how to perform CRUD operations in WPF using EntityFrameworkCore and SQLite as the backend database. We will create a .NET Core WPF application and all the basic Create, Read, Update, and Delete...

repost: Create a CRUD App with Bun and Elysia.js - DEV Community In this article we will be creating a crud web application with Bun and Elysia.js Before we start creating, Let’s get to know about Bun? # What is Bun? Bun is an incredibly fast JavaScript runtime, bundler, transpiler and package...