CcrushingCodesincodingbites.info·Jun 28, 2023 · 3 min readJavascript & Python 1 liner list operationsIf you often write in both Python and Javascript, then you might find this guide useful. I usually find myself knowing how to write certain operations in one language but not the other, so I created this to act as a cheat sheet. Map Python: Suppose w...00
CcrushingCodesincodingbites.info·Jun 26, 2023 · 2 min readJavascript: How to use await in for loopsIn Javascript we get the benefit of working with async with its API being fairly simple, allowing the slower task to run in parallel instead of in a series. However, if you are newish to programming, there are some easy traps to fall into. function m...00
CcrushingCodesincodingbites.info·Jun 25, 2023 · 2 min readGet the Power of AI in your terminalThere is a lot of hype over the Github Copilot CLI, which is a product currently in Beta, where you have to sign up for the waitlist before getting access. The tldr of this tool is that you can bring the power of chatgpt right into your terminal, wit...00
CcrushingCodesincodingbites.info·Jun 24, 2023 · 2 min readDoes the 80/20 rule apply in web development?The 80/20 rule states that 80% of the effects come from 20% of the causes. In more simple terms, imagine you have 100 jellybeans, let's say 20 of them are your absolute favourites. Eating those 20 would give you 80% of your happiness. As a developer,...00
CcrushingCodesincodingbites.info·Jun 23, 2023 · 2 min readInstalling Python 3.10, Pip, and Venv on UbuntuStart by updating the system's package lists with the following command: sudo apt update && sudo apt upgrade -y Next, we install the software-properties-common package, which provides the ability to easily manage your distribution and independent so...00