Skip to content
Technology Guides, Tutorials and Travels

Technology Guides, Tutorials and Travels

  • Understanding JavaScript Closures

    Understanding JavaScript Closures

    February 16, 2023
    javascript, programming, Software Development
    Sebastian

    What is a JavaScript Closure? A JavaScript closure is an inner function that has access to the outer (enclosing) function’s variables—scope chain. The closure has three scope chains: it has access to its own scope (variables defined between its curly brackets), it has access to…

    Read more

    Closures, Inner Functions, javascript, Outer Functions, Scope Chain

  • Redirecting to Another Webpage: A Step-by-Step Guide

    Redirecting to Another Webpage: A Step-by-Step Guide

    February 16, 2023
    Web Development, Website Maintenance
    Sebastian

    What is Redirecting? Redirecting is the process of sending a user from one webpage to another. This can be done for a variety of reasons, such as when a website has moved to a new URL or when a user has requested a specific page.…

    Read more

    301 redirect, 302 redirect, htaccess, redirect, webpage

  • How to Check if an Element is Hidden in jQuery

    How to Check if an Element is Hidden in jQuery

    February 16, 2023
    Web Development
    Sebastian

    Introduction jQuery is a powerful JavaScript library that allows you to easily manipulate the DOM. One of the most common tasks is to check if an element is hidden or not. This can be done using the jQuery .is() method. Using the jQuery .is() Method…

    Read more

    DOM, Hidden Elements, jQuery

  • How to Force Git to Overwrite Local Files

    How to Force Git to Overwrite Local Files

    February 16, 2023
    Version Control
    Sebastian

    Introduction Git is a powerful version control system that allows developers to keep track of changes made to their code. It is also a great way to collaborate with other developers on a project. However, sometimes you may need to force Git to overwrite local…

    Read more

    git, git reset, overwrite local files, version control

  • Can Comments be Used in JSON?

    Can Comments be Used in JSON?

    February 16, 2023
    Data Structures
    Sebastian

    What is JSON? JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is a text-based, human-readable format for representing simple data structures and associative arrays (called objects). JSON is used to store and exchange data. Can Comments be Used in JSON? Yes, comments can…

    Read more

    Comments, Data Interchange Format, JSON

  • What and Where are the Stack and Heap?

    What and Where are the Stack and Heap?

    February 16, 2023
    Computer Science
    Sebastian

    What is the Stack? The stack is a region of memory used to store local variables and function parameters. It is a Last-In-First-Out (LIFO) data structure, meaning that the last item pushed onto the stack is the first item popped off the stack. The stack…

    Read more

    CPU, FIFO, heap, LIFO, memory, RAM, stack

  • How to Rename a Local Git Branch

    How to Rename a Local Git Branch

    February 16, 2023
    Software Development
    Sebastian

    Introduction Git is a distributed version control system that is used to track changes in source code during software development. It allows developers to work on the same codebase without interfering with each other. One of the most important features of Git is the ability…

    Read more

    Branch, Rename

  • Removing a Specific Item from an Array

    Removing a Specific Item from an Array

    February 16, 2023
    javascript, programming
    Sebastian

    Introduction Arrays are a powerful data structure used to store collections of data. In some cases, you may need to remove a specific item from an array. This article will discuss how to remove a specific item from an array using JavaScript. Using the splice()…

    Read more

    array, filter, javascript, splice

  • How to Undo ‘Git Add’ Before Commit

    How to Undo ‘Git Add’ Before Commit

    February 16, 2023
    Version Control
    Sebastian

    What is ‘Git Add’? Git add is a command used to add files to the staging area of a Git repository. It is the first step in the process of committing changes to a repository. When you run the git add command, the files you…

    Read more

    git, git add, git commit, git reset, staging area

  • What Does the Yield Keyword Do in Programming?

    What Does the Yield Keyword Do in Programming?

    February 16, 2023
    Software Development
    Sebastian

    What is the Yield Keyword? The yield keyword is a keyword in programming languages such as C#, Java, and Python that is used to pause the execution of a function and return a value to the caller. It is used to create iterators, which are…

    Read more

    C#, iterators, Java, programming, Python, yield keyword

←Newer Posts Older Posts→

Technology Guides, Tutorials and Travels

Privacy Policy