Skip to content
View claudiopedrom's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report claudiopedrom

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
claudiopedrom/README.md

Experienced and versatile Front End Engineer with 7+ years of expertise in delivering innovative digital solutions.

Currently Senior Frontend Engineer at wild and Master in Software Engineering.

I have engaged in diverse projects across various industries in my professional journey and had the opportunity to work alongside product companies such as Google, Rubrik, and Formsite.

I possess product development, project management, team leadership, recruitment, and organizational communication expertise.

mindouro.comlinkedin.com/in/claudiomindourogithub.com/claudiopedrom

Pinned

  1. Useful Local Storage methods. Useful Local Storage methods.
    1
    export default class LocalStorage {
    2
      saveValue(name, value) {
    3
        const elementName = name;
    4
        const elementValue = value;
    5
    
    
  2. Get Advanced Custom Fields inside ca... Get Advanced Custom Fields inside categories/ taxonomies
    1
    // based on: https://support.advancedcustomfields.com/forums/topic/get-categories-with-advanced-cutsom-field/
    2
    
    
    3
    // example of all website categories and excluding uncategorized (id: 1)
    4
    $category_args = array(
    5
    	'exclude' => 1
  3. React Hook - 100vh height when addre... React Hook - 100vh height when address bar is shown
    1
    import React from "react";
    2
    
    
    3
    const formattedHeight = (height: number | null) => (height ? `${height}px` : "100vh");
    4
    
    
    5
    const setProperty = (property: string, value: number | null) => {
  4. VSCode personal settings (prettier, ... VSCode personal settings (prettier, eslint, stylelint, colorize, ...)
    1
    {
    2
      "window.zoomLevel": 0,
    3
      "window.commandCenter": false,
    4
      // Uncomment to hide the title bar,
    5
      // but then the `workbench.activityBar.location` can't be set to `top`