Published inLevel Up Coding·PinnedMember-onlyBuild React Application using Web ComponentsIt is always debatable whether we should use Web Components along with React.js in Applications or not. However, It is straightforward to use Web Components with React. Both can co-exist together with minimal effort. React.js can be used to build an intuitive UI and manage data. Web Component can be…JavaScript4 min readJavaScript4 min read
Published inJavaScript in Plain English·PinnedMember-onlyBuild React Like Web Components in Plain JavaScriptLearn about a few advanced features of JavaScript to make your own component framework. — There are numerous libraries available to create web components. However, if you’re wondering how to make your own component framework. This article will assist you. Please note that I am attempting to reinvent the wheel. However, It is good to learn advanced features of a language. It will assist you…JavaScript7 min readJavaScript7 min read
Published inLevel Up Coding·PinnedMember-onlyKotlin Design Patterns Made Easy | Creational PatternsAdvancing a programming language is always challenging. You required experience and skill set to advance a programming language. Learning data structure and its design patterns are few among many aspects of Advancing your skillset. I have prior knowledge of Kotlin. However, recently I started again coding in Kotlin. So I…Kotlin4 min readKotlin4 min read
Published inLevel Up Coding·PinnedMember-onlyValidation with Metaprogramming Decorators in Python — Advanced PythonA Decorator is a special type of declaration that can be applied to a function to improve its functionality. This is also a type of metaprogramming. We’re attempting to change the functionality of a function at compile time. Metaprogramming is a fascinating concept in any programming language. It can be…Programming3 min readProgramming3 min read
Published inLevel Up Coding·PinnedMember-onlyReact.js is overrated, use Svelte insteadI am writing React.js for almost 3 years now. React.js is a good library to work with. It has one of the best ecosystems in the JavaScript world. However, I feel React.js is overrated to some extent. I write a lot of boilerplate code in React.js on a day-to-day basis…React5 min readReact5 min read
Published inGeek Culture·Jun 28, 2022Member-onlyCreate Simple Observable Object in JavaScriptWorking in JavaScript can be tricky. If you don't know basic core features, You will end up adding tons of libraries to your project. In case you want to create a simple observable object where when you update any property. It will trigger the subscribers. …JavaScript3 min readJavaScript3 min read
Jun 26, 2022Member-onlyThe desire of missing you | PoetryPhase: Today is the day I buried my love, and she became ash. Today is the day I last saw her. I am not here at this moment, I am just lost. Broken heart and broken me The floor is moving, beneath my feet The struggle of an empty mind and shaking…Love2 min readLove2 min read
Published inLevel Up Coding·Jun 21, 2022Member-onlyWorking with XML Serialization in Java and KotlinYou may have encountered situations in your Java/Kotlin-based application, where you have to work with XML. You need to manipulate XML and return s response to a request or write to a file. You may have an old application which still supports some legacy APIs where you need to serialise…Kotlin4 min readKotlin4 min read
Published inLevel Up Coding·May 23, 2022Member-onlySimple Pub-Sub Pattern Using Windows Custom Event | JavaScriptWhile working on Web Applications, You may have got in the situation where you do need a Pub-Sub design pattern to send and receive messages. You can always use some external module. …JavaScript4 min readJavaScript4 min read
Published inJavaScript in Plain English·May 6, 2022Member-onlyBuild an Alert Messenger in React Using Context and TypeScriptA step-by-step guide on creating an alert system for your React application. — A better notification system is needed for a good front-end application. You should create and display alerts to users based on the application’s requirements and the user’s pov. Typically, you would implement a single toast message per page. In some cases, you may want to display multiple messages on the…Reactjs8 min readReactjs8 min read