COLORS: Negros Tou Moria – To Deltio | A COLORS SHOW

Negros Tou Moria (aka Black Morris) turns up at COLORS for a raw, stripped-back take on “To Deltio” (ft. Christos Dantis), one of the standout tracks from his latest album Mavri Ellada. His Ghanian-Greek flow and introspective lyrics shine against COLORS’s signature minimal stage. COLORS x STUDIOS keeps doing its thing—offering a sleek, no-distraction spotlight…

Read More

Fix for Crow C++ websocket which could not receive beyond 128 chars

Context of the post can be found here Chatgpt modified the websocket.h file and made it workable. Working codes below: #pragma once #include #include #include “crow/socket_adaptors.h” #include “crow/http_request.h” #include “crow/TinySHA1.hpp” namespace crow { namespace websocket { enum class WebSocketReadState { MiniHeader, Len16, Len64, Mask, Payload, }; struct connection { virtual void send_binary(const std::string& msg) =…

Read More

Farsi Image generator – DEV Community

During the development of a personal project, I needed to build a script that converts Farsi (Persian) text into an image. To make the process easier — and a bit more fun — I chose the excellent Gradio framework to build a simple interactive interface. What is Gradio? Gradio is a popular open-source Python library…

Read More