Sticky Posts
Categories
manual
excerpt
Post List
Styling Tables the Modern CSS Way
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...
more...
Command Line Data Processing Using DuckDB as a Unix Tool
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...
more...
WPF Excel to XML
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>...
more...
C# DataTable (How It Works For Developers Tutorial)
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...
more...
CRUD Operations in WPF using EntityFrameworkCore and SQLite
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...
more...
How to use IEnumerable, ICollection, IList, and IQueryable in C#
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...
more...
Create a CRUD App with Bun and Elysia.js
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...
more...
How To Build a Web API using Express.js, Bun and MongoDB?
repost: Building a Web API using Express.js, Bun and MongoDB | Tharaka Romesh | Bits and Pieces
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...
more...
DB Connect
# 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...
more...
Bun Web Framework TODO
# Elysia
Elysia - Ergonomic Framework for Humans | ElysiaJS TypeScript with End-to-End Type Safety, unified type system and outstanding developer experience. Supercharged by...
more...