Published onSeptember 1, 2022What is the nullish coalescing operator?JavaScriptnull/undefined handling operator
Published onAugust 4, 2022What is the `extend` Method in Python?PythonThe extend method adds each element of an iterable individually to a list.
Published onAugust 3, 2022What is `startswith()` in Python, and how is it used?pythonIt is useful for checking if a specific string starts with a desired prefix.
Published onAugust 2, 2022What is Python's `__add__` method?pythonOOPAll data types in Python are defined as classes.
Published onAugust 1, 2022What to do if you accidentally commit to the master branchGitTroubleshootinggit reset HEAD~ --hard
Published onApril 3, 2022What is a native application?operating-systemA native application is a program developed for a specific platform.
Published onApril 2, 2022What is a web application?WebA web application is a program that runs in a browser via the internet.
Published onMarch 27, 2022Understanding Shallow and Deep Copy in Python with the `copy` ModulePythonData-Structure`Shallow copy` copies only the outer shell, whereas `deep copy` copies everything.
Published onMarch 6, 2022How to Install Telegram on UbuntulinuxubuntuTelegram can be run from files downloaded from the official website or installed through Snap.
Published onFebruary 22, 2022Understanding CSS Box Size and `box-sizing`CSS`box-sizing: border-box;` ensures that the width and height include both borders and padding.
Published onJanuary 31, 2022Understanding `flex-grow` in FlexboxCSS`flex-grow` automatically distributes space based on defined ratios.
Published onJanuary 7, 2022How to Remove Specific Elements from a Vector in RrUse `x[!(x %in% values)]` to remove specific values from a vector in R.
Published onJanuary 6, 2022Understanding Flask's `@app.route` decoratorFlaskFlask's @app.route maps URLs to functions.
Published onJanuary 5, 2022Understanding Flask's Application InstanceFlaskapp = Flask(__name__) creates a Flask instance
Published onJanuary 4, 2022Differences between Django and FlaskFlaskDjangoFlask is flexible; Django is feature-rich.