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