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 Pest PHP ClassicPress

Pinned Loading

  1. New WordPress site setup with Larave...
    1
    # HerdPress 
    2
    
                  
    3
    WordPress local dev site setup automation for Laravel Herd. 
    4
    
                  
    5
    Kind of like wp-env but without Docker, enabling you to use Herd's debugging and mail catching + inspection capabilities. Also supports installing ClassicPress instead of WordPress.
  2. Local by Flywheel + Laravel Herd, be...
    1
    # Local by Flywheel + Laravel Herd
    2
    
                  
    3
    Best of both worlds! Use Local for pushing and pulling and Herd for local development (so you can use the Dumps window and test emails). 
    4
    
                  
    5
    If you put these in your herd `bin` folder, you can run "local-to-herd" from anywhere to transfer the site's database and link the install to Herd's server, and "local-export-db" to copy the db back from Herd to Local.
  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. 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() {
  5. useResize React hook. Dynamically ge...
    1
    import { MutableRefObject, useMemo, useEffect, useState } from 'react';
    2
    
                  
    3
    interface Dimensions {
    4
    	width: number;
    5
    	height: number;
  6. 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;