Sticky Posts

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

Categories

Post List

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...

title: Create a CRUD App with Bun and Elysia.js tags: js date: 2024-04-28 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...

Web APIs serve as the central components of modern software, seamlessly connecting applications across the expansive landscape of the internet. If you’re working with Node.js, you’re most likely familiar with the MER(A)N stack: MongoDB Express React/Angular Node But, ever since Bun has come to the...

# Node Oracle # Resource node-oracledb: Node.js module for Oracle Database Node.js Sequelize with Oracle Database — it’s official | by Christopher Jones | Oracle Developers | Medium # Oracle Set Up Create table in Oracle 11g. 12345678910111213141516create table posts ( id number, title...

# Elysia Elysia - Ergonomic Framework for Humans | ElysiaJS TypeScript with End-to-End Type Safety, unified type system and outstanding developer experience. Supercharged by...

# Streamlit Streamlit • A faster way to build and share data apps Streamlit turns data scripts into shareable web apps in minutes. All in pure Python. No front‑end experience required. # Timezone Converter 1234567891011121314151617181920212223242526272829303132333435363738from datetime import...

# Create Directory 12345create directory EDI_TEST as '/usr/tmp/edi/test';select * from all_directories where directory_name like '%EDI%'; OWNER DIRECTORY_NAME DIRECTORY_PATH SYS EDI_TEST /usr/tmp/edi/test Set Directory Access Permissions 1234567[testmgr@erptest...

from: oracle sql practice exercises with solutions - YouTube # Select alternate records 1234567select * from (select empno, sal, rownum as rn from scott.emp order by empno) where mod(rn, 2) = 0; select * from (select empno, sal, rownum as rn from scott.emp order by empno) where mod(rn, 2) = 1; #...