Good things to understand when building AI applications: artificial neural networks, LLMs, parameters, embeddings, GPTs, and hallucinations.
Read MoreAI for Web Devs: What Are Neural Networks, LLMs, & GPTs?Adding HTTP streaming to AI applications can improve perceived performance. This post covers the server side and client side requirements.
Read MoreAI for Web Devs: Faster Responses with HTTP StreamingMake API request to OpenAI with fetch and Qwik forms, protect API keys with Qwik actions, and hide secrets with environment variables.
Read MoreAI for Web Devs: Your First API Request to OpenAIIn this blog post, we start bootstrapping a web development project using Qwik and get things ready to incorporate AI tooling from OpenAI.
Read MoreAI for Web Devs: Project Introduction & SetupIn this article, we implement several of the OWASP recommendations for file upload security. We also dive into malware scanning solutions.
Read MoreFile Upload Security and Malware ProtectionThis post covers what CDNs are, how they work, and why you need one. I also show you how to connect Akamai CDN to Object Storage.
Read MoreCDNs: Speed Up Performance by Reducing LatencyLearn how to upload files directly to S3-compatible Object Storage from your Node application to improve availability and reduce costs.
Read MoreStream File Uploads to S3 Object Storage and Reduce CostsLearn about the low-level concepts for dealing with multipart/form-data in Node.js and how to save file uploads to disk with a high-level solution.
Read MoreHandling File Uploads on the Backend in Node.js (& Nuxt)In this post, we use JavaScript to create the file upload request. You'll learn how to access files, create the HTTP request, and make it reusable.
Read MoreHow to Upload Files with JavaScriptThis post shows you how to upload files using only HTML. Access user files, create the HTTP request, and set the correct content-type headers.
Read MoreHow to Upload Files with HTML