Writing a simple Javascript async message queue server - Part III

Marton Trencseni - Mon 17 June 2024 • Tagged with javascript, async, message, queue

In this final post on the toy Javascript async message queue server implementation, I make it compatible with the Python version. I use the library of unit tests developed previously to ensure identical behaviour between the two codebases.

.

Continue reading

Writing unit tests for the async message queue server

Marton Trencseni - Sat 15 June 2024 • Tagged with python, async, message, queue, unit, test

I write a small library of unit tests for the message queue servers.

.

Continue reading

Writing a simple Python async message queue server - Part III

Marton Trencseni - Wed 22 May 2024 • Tagged with python, async, message, queue

In this final post on the toy Python async message queue server implementation, I make further feature and code improvements.

.

Continue reading

Writing a simple Javascript async message queue server - Part II

Marton Trencseni - Sat 11 May 2024 • Tagged with javascript, async, message, queue

I write a somewhat more complicated, but still relatively simple async message queue server in Javascript.

.

Continue reading

Writing a simple Javascript async message queue server - Part I

Marton Trencseni - Sun 05 May 2024 • Tagged with javascript, async, message, queue

I write a simple, bi-directional async message queue server in Javascript.

.

Continue reading

Can ChatGPT write the C++20 async message queue codes from the previous posts?

Marton Trencseni - Sat 15 April 2023 • Tagged with cpp, async, message, queue, chatgpt

I try to get ChatGPT to write the codes in the previous posts. It's able to write the basic message queue skeleton, but it cannot implement more complicated features such as delivery semantics with caching; also, the code crashes. C++ programmers do not (yet) need to fear for their jobs.

.

Continue reading

Writing a simple C++20 async message queue server - Part II

Marton Trencseni - Sat 08 April 2023 • Tagged with cpp, async, message, queue

I write a somewhat more complicated, but still relatively simple async message queue server in modern C++20.

.

Continue reading

Writing a simple C++20 async message queue server - Part I

Marton Trencseni - Sun 02 April 2023 • Tagged with cpp, async, message, queue

I write a simple, bi-directional async message queue server in modern C++20.

.

Continue reading

Can ChatGPT write the Python async message queue codes from the previous posts?

Marton Trencseni - Sun 05 March 2023 • Tagged with python, async, message, queue, chatgpt

I try to get ChatGPT to write the codes in the previous posts. It's able to write the basic message queue skeleton, but cannot implement more complicated features such as delivery semantics with caching.

.

Continue reading

Writing a simple Python async message queue server - Part II

Marton Trencseni - Thu 02 March 2023 • Tagged with python, async, message, queue

I write a somewhat more complicated, but still relatively simple async message queue server in Python.

.

Continue reading

Writing a simple Python async message queue server - Part I

Marton Trencseni - Mon 27 February 2023 • Tagged with python, async, message, queue

I write a simple, bi-directional async message queue server in Python.

.

Continue reading