Daily Shaarli

All links of one day in a single page.

November 10, 2021

python - Merge PDF files - Stack Overflow

for pdf in pdfs:
merger.append(pdf)

Chain Of Responsibility (Pipeline) Design Pattern
C# Job Queue Implementations in Depth - Part 1 - Michael's Coding Spot

Sometimes referred to as the Producer/Consumer pattern, the Job Queue means placing a Job of some kind in a Queue, which will be executed asynchronously in a First-In-First-Out (FIFO) order. The jobs will be Queued (produced) by one entity (thread, process, service), and executed (consumed) by another entity (thread, process, service).