Skip to content
View V3RON's full-sized avatar
👨‍💻
Busy creating the next big thing
👨‍💻
Busy creating the next big thing

Highlights

  • Pro

Block or report V3RON

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
V3RON/README.md
  _   _      _ _         _   _                       ___ _
 | | | | ___| | | ___   | |_| |__   ___ _ __ ___    |_ _( )_ __ ___
 | |_| |/ _ \ | |/ _ \  | __| '_ \ / _ \ '__/ _ \    | ||/| '_ ` _ \
 |  _  |  __/ | | (_) | | |_| | | |  __/ | |  __/_   | |  | | | | | |
 |_| |_|\___|_|_|\___/   \__|_| |_|\___|_|  \___( ) |___| |_| |_| |_|
                                                |/

███████╗███████╗██╗   ██╗███╗   ███╗ ██████╗ ███╗   ██╗     ██████╗██╗  ██╗███╗   ███╗ █████╗ ██╗
██╔════╝╚══███╔╝╚██╗ ██╔╝████╗ ████║██╔═══██╗████╗  ██║    ██╔════╝██║  ██║████╗ ████║██╔══██╗██║
███████╗  ███╔╝  ╚████╔╝ ██╔████╔██║██║   ██║██╔██╗ ██║    ██║     ███████║██╔████╔██║███████║██║
╚════██║ ███╔╝    ╚██╔╝  ██║╚██╔╝██║██║   ██║██║╚██╗██║    ██║     ██╔══██║██║╚██╔╝██║██╔══██║██║
███████║███████╗   ██║   ██║ ╚═╝ ██║╚██████╔╝██║ ╚████║    ╚██████╗██║  ██║██║ ╚═╝ ██║██║  ██║███████╗
╚══════╝╚══════╝   ╚═╝   ╚═╝     ╚═╝ ╚═════╝ ╚═╝  ╚═══╝     ╚═════╝╚═╝  ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝╚══════╝

My toolset

React

Angular

GraphQL

TailwindCSS



Reach me on

linked-in medium stack-overflow

Pinned Loading

  1. react-native-aurora react-native-aurora Public

    Aurora helps React Native projects shine by optimizing performance and build efficiency across Android, iOS, and JavaScript.

  2. expo-atlas-without-expo expo-atlas-without-expo Public

    Supercharge your vanilla React Native apps with Expo Atlas metrics

    JavaScript 23

  3. react-render-measurement-tool react-render-measurement-tool Public

    A powerful tool for understanding how your React components render during tests.

    TypeScript

  4. Allow only GoogleBot to access your ... Allow only GoogleBot to access your Next.js API route
    1
    export function getIPAddress(req: NextApiRequest): string | undefined {
    2
      if (req.headers['x-forwarded-for']) {
    3
        return (req.headers['x-forwarded-for'] as string).split(',')[0]
    4
      }
    5
    
                  
  5. Bypass Content Security Policy in yo... Bypass Content Security Policy in your Chrome extension
    1
    function arrayBufferToBase64(buffer: ArrayBuffer): string {
    2
      let binary = '';
    3
      const bytes = new Uint8Array(buffer);
    4
      const len = bytes.byteLength;
    5