(Tomasz Pêczek) I’ve been pointed to StreamJsonRpc library through a comment under one of my posts and I’ve decided it’s something worth taking a look at. StreamJsonRpc is a .NET Standard implementation of JSON-RPC 2.0 wire protocol.
Author: SSWUG Research
Attempting To Create A Flexible Dual-Select Control Component In Angular 9.1.9
(Ben Nadel) Over the weekend, I took a look at an old, but wonderful, form control: the dual-select (or double-list) input, that allows a user to move options back-and-forth between two different sets of options.
The Magical Methods in C#
(Cezary Piatek) There’s a certain set of special method signatures in C# which have particular support on the language level. Methods with those signatures allow for using a special syntax which has several benefits.
#775 – OIC Packages – cool feature I didn’t know we had
(Niall Commiskey) I also preach about the efficacy of using packages to organise related integrations.
V$EVENT_NAME
(Martin Berger) This post is a simple content of V$EVENT_NAME as of 19.7.
Oracle 12c – peak detection with MATCH_RECOGNIZE
(Franck Pachot) This post is part of a series of small examples of recent features. I’m running this in the Oracle 20c preview in the Oracle Cloud.
Java Text Blocks – Using Multiline Strings with Hibernate & JPA
(Thorben Janssen) JPA and Hibernate require you to write lots of Strings. You use them to create ad-hoc and named queries with JPQL, to define native SQL queries and to specify the fetching behavior in an EntityGraph.
DB2 for z/OS Locking for Application Developers Part 8
(Gareth Copplestone-Jones) Welcome to part eight of this blog series on DB2 Locking for Application Developers, which is about considerations for coding your application not only for data integrity (the main focus of this series of articles), but also for performance and concurrency, taking into acc
SQL Server Desired State Configuration
(Bill Graziano) At one of my clients, I’ve seen the benefits of using tools like Puppet to push configurations to servers. I’ve long tried to write idempotent configuration scripts for my servers.
DROP TABLE Could Be Better
(Michael J. Swart) I was looking at the docs for DROP TABLE and I noticed this in the syntax: [ ,…n ]. I never realized that you can drop more than one table in a statement.