blog.coderfy.ioAutonomous AI at Work: How AutoGPT Uses Prompting to Instruct OpenAI and Perform Tasks IndependentlyThe landscape of artificial intelligence has been transformed dramatically in 2023. It appears that every week, my YouTube feed is inundated with fresh channels discussing the latest advancements in AI and machine learning. As a software engineer wit...May 7, 2023·47 min read
blog.coderfy.ioTextarea elements modify carriage returns (\r)Recently, I was working on a simple text editor that allows a user to enter multiple lines of text into a <textarea> element. When the user has finished editing, they can submit the text and it will be sent off to our backend API, which will do some ...Apr 24, 2023·2 min read
blog.coderfy.ioCompression() is not working with Node ExpressI recently ran into an issue with compression() not working for a local dev server that we are running with Node and express. We had been using the dev server for ages and it wasn't until we had a project which was trying to load a much larger data.j...Apr 18, 2023·2 min read
blog.coderfy.ioCreating animations with the Canvas APIAccording to the Oxford Dictionary, an animation is defined as the following: The technique of photographing successive drawings or positions of puppets or models to create an illusion of movement when the film is shown as a sequence. Translating t...Apr 11, 2023·6 min read
blog.coderfy.ioCreating "debounce()" Using a ClosureA debounce() function is one of those awesome tools that we reach for when we want to delay an action from taking place too rapidly. A good use case might be trying to prevent too many API calls to your server when a user types into a search input bo...Feb 15, 2023·6 min read