Skip to content
View doubleedesign's full-sized avatar

Sponsoring

@arminbro
@eslint
@gulpjs
@ThePHPF
@sebastianbergmann
@composer
@nunomaduro

Organizations

@Double-E-Design

Block or report doubleedesign

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

👋 I'm Leesa with a Double-E

🌐 I have a strong background in web development, primarily front-end but enjoy dabbling in full-stack.

💻 I currently work as a front-end software engineer at Atlassian, working with JavaScript/TypeScript, React, GraphQL, etc.

🕙 I spent the first chunk of my career in agency environments, designing and building custom CMS themes (mainly WordPress - PHP, HTML, CSS/SCSS, vanilla JS, jQuery) and occasionally plugins, which I still do sporadically on a freelance basis.

👩‍💻I also code a lot of miscellaneous stuff for fun, some of which you can check out here if you are so inclined.


Published for public consumption

(...outside of GitHub)

Personal Projects

For funsies, learning, and/or personal use. These are all pretty scrappy, early WIPs.

WordPress

Forks

Stuff I'm contributing to and/or have extended to meet my needs.


Projects I sponsor on GitHub and Open Collective

@gulpjs @arminbro @eslint @ThePHPF @composer @sebastianbergmann Owner avatar

Pinned Loading

  1. Customised Xdebug output styling
    1
    /** 
    2
     * Customise some of the HTML output of xdebug + add highlightjs + hackily customise that 
    3
     * Requires: 
    4
     * - HighlightJS: https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js
    5
     * - HighlightJS PHP: https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/php.min.js
  2. Typing styled-components props: Vali...
    1
    import styled from 'styled-components';
    2
    import { ThemeColor } from '../../types';
    3
    
                  
    4
    interface ButtonProps {
    5
    	color: ThemeColor 
  3. CSS previous sibling selector example
    1
    // I have sections (called blocks here) that should have top and bottom padding, 
    2
    // unless two of the same kind with the same background colour are together - 
    3
    // in which case I want them to be right up next to each other - no padding between them.
    4
    // In the HTML it looks something like this:
    5
    // <section class="block my-special-block has-primary-background-color">
  4. useResize React hook. Dynamically ge...
    1
    import { MutableRefObject, useMemo, useEffect, useState } from 'react';
    2
    
                  
    3
    interface Dimensions {
    4
    	width: number;
    5
    	height: number;
  5. useLocalStorage React hook. Keep a s...
    1
    import { useState, useEffect, Dispatch, SetStateAction } from 'react';
    2
    
                  
    3
    export function useLocalStorage<T>(key: string, defaultValue: T): { value: T; setValue: Dispatch<SetStateAction<T>> } {
    4
    	const [value, setValue] = useState(() => {
    5
    		return localStorage?.getItem(key) ? JSON.parse(localStorage.getItem(key)) : defaultValue;
  6. Automatically downgrade a WooCommerc...
    1
    <?php
    2
    /**
    3
     * Add base tier option to Advanced tab of subscription product
    4
     */
    5
    function doublee_subscription_product_advanced_settings() {

1,651 contributions in the last year

Contribution Graph
Day of Week June July August September October November December January February March April May June
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Activity overview

Loading A graph representing doubleedesign's contributions from June 16, 2024 to June 17, 2025. The contributions are 97% commits, 2% pull requests, 1% code review, 0% issues.

Contribution activity

Loading