Skip to content
View iamravenous's full-sized avatar

Organizations

@Ravenborn @devschile

Block or report iamravenous

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. dependabot-review-skill dependabot-review-skill Public

    Claude Code skill that reviews Dependabot and Renovate dependency-update PRs for breaking changes, supply-chain risk, and real codebase impact.

    Python 1

  2. dependabot-alert-review-skill dependabot-alert-review-skill Public

    Claude Code skill that triages Dependabot vulnerability alerts before a fix PR exists, checking real exploitability in your code rather than just the CVSS score.

    Python 1

  3. Micro library to animate elements wi... Micro library to animate elements with CSS based on scroll position
    1
    /* 
    2
    * Nifty Animate
    3
    * Micro library to animate elements with CSS based on scroll position
    4
    * Requires: Lodash throttle & debounce
    5
    * Author: Franco Moya - @iamravenous
  4. Sass BEM Mixins Sass BEM Mixins
    1
    @mixin element($name) {
    2
      @at-root #{&}__#{$name}{
    3
        @content;
    4
      }
    5
    }