Learned Today

  • Github Asking For Password During GIT PUSH

    Option A: Switch to SSH Keys (Recommended) Switching your repository URL to SSH removes the need for passwords completely. 1. Check your current URL git remote -v If it starts with https://github.com/, proceed to the next steps. 2. Generate an SSH key (Press Enter to accept all default locations) ssh-keygen -t ed25519 -C “your_email@example.com” Skip…

    Read More

  • How to Clone Bitbucket Repository

    Create API Token Click on your Bitbucket Profile Click Account Settings (https://id.atlassian.com/manage-profile/profile-and-visibility) Click Security at the Top Menu Bar Scroll down to API Tokens Click Create and manage API tokens Click Create API Tokens with Scopes How to use the API Token On the terminal enter: git clone https://x-bitbucket-api-token-auth@bitbucket.org/workspace-name/repo-name.git OR git clone https://x-bitbucket-api-token-auth:YOUR_API_TOKEN_HERE@bitbucket.org/workspace-name/repo-name.git OR git…

    Read More

  • Notes for WordPress Blocks Newbie

    Notes for WordPress Blocks Newbie

    As a newbie to WordPress blocks and site builder, I thought it would be a great idea to take down notes of my discoveries so I won’t have to encounter the same issues over and over again. #1 – If you create a child theme, the parent theme’s theme.json won’t be executed. #2 – For…

    Read More

  • Why I Switched to Native WordPress Site Editor (And Never Looked Back)

    Why I Switched to Native WordPress Site Editor (And Never Looked Back)

    While dealing with different websites, the main issue I got lately are the speed issues. And most of these sites were built using Elementor. And the main culprit they’re pointing to for these speed issues is the Elementor plugin. With that in mind, I was searching for ways on how to build a WordPress website…

    Read More

  • How to Make Elements Inside a Flex Element Same Width and Height

    Parent Element: align-items: stretch Inner Elements: flex-grow: 1; flex-basis: 0

    Read More

  • Image Attribute loading

    Image Attribute loading

    I encountered an issue with a website where, when I loaded the page, the image which is located above the fold. It’s .webp image, that’s why I find it weird, cause we know it’s the best format for website images. One suggestion I found online, it to add loading attribute with the value eager. I…

    Read More