[A]sync, [Non-]blocking, dynamic or static, strong or weakly typed - OwenGage.com
Understanding Foreign Data Wrappers in Postgres and postgres_fdw
Foreign data wrappers can simplify data querying and analysis when you need data from disparate sources.
Web Developers Not Moving More Business Logic to the Client - The New Stack
Despite some movement around 'headless content management' with Jamstack and even WebAssembly, there is no statistically significant change in where developers are locating their new code.
Large Numbers of Bindings With RabbitMQ
RabbitMQ (or more specifically the AMQP protocol) provides a degree of flexibility over other message-queue solutions with its exchange-binding-queue model. Some possible solutions to scaling or business issues result in large numbers of bindings being created, perhaps thousands per queue. We tested RabbitMQ to find out what the binding performance limits were and present the results in this post. It seems that large numbers of bindings are not in themselves a performance issue, but on a RabbitMQ cluster, “binding churn” the rate at which they are created and destroyed can have a large impact on message delivery.
Symbolic Differentiation with Lisp
Short option parsing using getopt in C
Writing a C program to process files is easy when you already know what files you'll operate on and what actions to take. If you "hard code" the filename into your program, or if your program is coded to do things only one way, then your program will always know what to do. But you can make your program much more flexible if it can respond to the user every time the program runs. Let your user tell your program what files to use or how to do things differently. And for that, you need to read the command line.
Elm at Rakuten | Rakuten Engineering Blog
In our team at Rakuten, we have been using Elm1 in production for almost two years now. This post is about our story, the lessons we learned, and our likes and dislikes.
This post is quite long so if you prefer to see an overview, feel free to jump to the index.
Everything started in the Berlin branch of Rakuten during the summer of 2017. We were maintaining a medium-size single-page application written in Vanilla JavaScript when things started going out of control.
Climbing Mount Effect
Let's actually whiteboard some code.
B-Trees: More Than I Thought I'd Want to Know
B-Trees are not boring, after all
How We (Don’t) Reason About Code
Reading code is more important than writing code. But, more important than reading is reasoning about code.
BaFi
None
How to improve the DDDness of your application.
Or in other words, how to build intention revealing APIs through encapsulation, a practical guide.
My favorite papers
canistilluse.com
“Can I still use…” provides the latest information on the deprecation of upcoming browser APIs [satire].
Why Do Developers Fall out of Love With Development?
How can we bring back the love of code
How Does an Engineer Create a Programming Language? - The New Stack
Through a podcast, technologist Marianne Bellotti takes listeners on her journey to write a new language from scratch. It's no easy task, but the host has fun while shedding light on the tools programmers use.
Cheap interpreter, part 9: even faster register machines
Last week I showed a few ways in which to improve the performance of
a Haskell intepreter for a register machine. In this post, we start with the
exact same bytecode (same register language, same compiler) and show how to use
a much slower language (Clojure) to end up with a much faster interpreter.This series is based on Neil Mitchell's talk "Cheaply writing a fast
interpeter". The talk compares a number of approaches to writing an
interpreter and tries to find a good balance between complexity and interpreter
overhead.The following topics, while important, are out of scope:
Webhooks are amazing, use them!
How to use webhooks to build your subscription-based platform
Postgres and JSON: Finding document hotspots (part 1)
One of the compelling aspects of modern SQL is the JSON support built into modern engines, including Postgres. The documentation is well done, but I need examples to motivate my understanding of wh…
'There is no way we can keep coding local': GitPod's cloud development platform released into sunlight of open source • The Register
The Reg chats with co-founder Sven Efftinge
.NET debugging in a single picture – TooSlowException
Chaos Toolkit
Building a Rails CI pipeline with GitHub Actions | Boring Rails: Skip the bullshit and ship fast
GitHub Actions is an automation platform that you run directly from inside a repository. We can use it as a testing CI/CD pipeline and keep everything close to the code.
Welcome to Codota!
Tabnine search - find any Java class or method
How to automate your workspace and write less code
Writing less code is not just about the number of lines you produce or characters you end up typing. Rather, it’s also about how much of the manual and repetitive stuff you can do without.
Introduction to stream processing
smodnix/31-days-of-API-Security-Tips: This challenge is Inon Shkedy's 31 days API Security Tips.
This challenge is Inon Shkedy's 31 days API Security Tips. - GitHub - inonshk/31-days-of-API-Security-Tips: This challenge is Inon Shkedy's 31 days API Security Tips.
Liskov Substitution Principle in a nutshell - ITNEXT
Among the SOLID principles, the Liskov substitution principle is probably the most difficult to get familiar with. Its definition is very…