Archive for the ‘Software Development’ Category
Posted by jpluimers on 2018/09/27
Right now my sendmail configuration handling my domains have one queue directory /var/spool/mqueue which means that each round of the queue processing handles all the outgoing mail in succession.
This is getting less OK because of the increased mail volume over time both on mail that gets in and needs to be forwarded and mail that needs to be bounced for various reasons like SPAM.
So below are some links helping me to sort out various things including having multiple queues (as then each round can handle each queue in parallel).
The default sendmail configuration is one mail queue and I hope to find out for what reason that is.
Background info:
Read the rest of this entry »
Posted in *nix, *nix-tools, Development, Power User, Scripting, sendmail, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/27
I’m amazed how little things have changed when doing hardcore Delphi debugging: [WayBack] Debugging Session
–jeroen

Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/26
A crossword puzzle designed for geeks, every single clue is a regular expression.
Source: [WayBack] Regular Expression Crossword Puzzle – Gregable
No matter your take on RegEx, I think you will be amazed just looking at it.
Related:
Via:
–jeroen
Read the rest of this entry »
Posted in Development, RegEx, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/26
Interesting stuff:
In this article we will expand on our TgoHttpClient class by adding some core new features including non-blocking http responses, unifying HTTP 1.1, HTTP/S and HTTP/2 support into a common class…
Source: [WayBack] Scalable HTTP sockets for the cloud, Part 2 – grijjy blog
I’d also be interested in the server part of this, but it seems not there yet.
The client side part 1 is here: [WayBack] Scalable HTTP/S and TCP client sockets for the cloud – grijjy blog
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/25
This is about Ruby anti-patterns, which is a good step to start investigating the own anti-patterns you use in your own development environment:
[WayBack] How not to structure your database-backed web applications: a study of performance bugs in the wild | the morning paper
How not to structure your database-backed web applications: a study of performance bugs in the wild Yang et al., ICSE’18 This is a fascinating study of the problems people get into when using…
Via: [WayBack] How not to structure your database-backed web applications: a study of performance bugs in the wild… – Adrian Marius Popa – Google+
–jeroen
Posted in Design Patterns, Development, Ruby, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/25
For my link archive:
Via: [WyBack] Are there blank characters in unicode that have the same widths as period, comma and digits? – Lars Fosdal – Google+
Answer: no, though better fonts have period, comma, colon, semicolon and other punctuations the same width as the punctuation space.
The use-case:
I wanted right justified text without having to do custom positioning/drawing – where the decimal zero is white space.
F.x. here 12 instead of 12.0
9.5
11.6
12 <– #$2008 and #$2007
13.4
I.e. PunctuationSpace and FigureSpace
I don’t want to deal with positioning/rendering since it happens inside a third party component.
–jeroen
Posted in Development, Encoding, Font, Power User, Software Development, Unicode | Leave a Comment »
Posted by jpluimers on 2018/09/21
[WayBack] pure-bash-bible/README.md at master · dylanaraps/pure-bash-bible · GitHub:

The goal of this book is to document known and unknown methods of doing various tasks using only built-in bash features. Using the snippets from this bible can help remove unneeded dependencies from scripts and in most cases make them faster. I came across these tips and discovered a few while developing neofetch, pxltrm and other smaller projects.
The snippets below are linted using shellcheck and tests have been written where applicable. Want to contribute? Read the CONTRIBUTING.md. It outlines how the unit tests work and what is required when adding snippets to the bible.
See something incorrectly described, buggy or outright wrong? Open an issue or send a pull request. If the bible is missing something, open an issue and a solution will be found.
Via:
—jeroen
Posted in *nix, *nix-tools, bash, bash, Development, Power User, Scripting, Software Development | Leave a Comment »
Posted by jpluimers on 2018/09/20
[WayBack] The 10 commandments of navigating code reviews | TechBeacon:
How to survive, and thrive, in the sometimes-caustic world of code reviews.
Summary:
- Thou shalt not take it personally
- Thou shalt not marry thy code
- Thou shalt consider all feedback
- Thou shalt articulate thy rationale
- Thou shalt be willing to compromise
- Thou shalt contribute to others’ code reviews
- Thou shalt treat submitters how thou would like to be treated
- Thou shalt not be intimidated by the number of comments
- Thou shalt not repeat the same mistakes
- Thou shalt embrace the nits
Via: [WayBack] Kevlin Henney – Google+: The 10 commandments of navigating code reviews
–jeroen
Posted in Agile, Conference Topics, Conferences, Development, Event, Software Development | Leave a Comment »