Skip to content
View ummahusla's full-sized avatar
✌️
Check my digital garden (edvins.io)
✌️
Check my digital garden (edvins.io)

Sponsoring

@supabase
Block or Report

Block or report ummahusla

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. edvins-io edvins-io Public

    My digital garden

    MDX 4 2

  2. react-simple-card react-simple-card Public

    React simple card component

    TypeScript 21 9

  3. PotatoCSS PotatoCSS Public

    🥔 Simple CSS framework for hackers. Simple as potato.

    CSS 56 18

  4. Codecademy-Exercise-Answers Codecademy-Exercise-Answers Public

    🎓 Codecademy.com exercise answers

    JavaScript 293 332

  5. Git overwrite branch with another br... Git overwrite branch with another branch
    1
    # overwrite master with contents of feature branch (feature > master)
    2
    git checkout feature      # source name
    3
    git merge -s ours master  # target name
    4
    git checkout master       # target name
    5
    git merge feature         # source name
  6. Vim Cheat Sheet Vim Cheat Sheet
    1
    ## Modes
    2
    **Vim** has two modes insertion mode and command mode. The editor begins in command mode, where the cursor movement and text deletion and pasting occur. Insertion mode begins upon entering an insertion or change command. **`[ESC]`** returns the editor to command mode (where you can quit, for example by typing **`:q!`**). Most commands execute as soon as you type them except for "colon" commands which execute when you press the ruturn key.
    3
    
                  
    4
    ## Quitting
    5
    * **`:x`**	Exit, saving changes <br/>