=iferror(sum(query(Transactions!$A:$F,"select D where B contains '"&$A11&"' and A = date '"&text(F$1,"yyyy-mm-dd")&"'")))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Typeface | |
| font-family = FiraCode Nerd Font Mono | |
| font-style = Retina | |
| font-feature = calt | |
| font-size = 16 | |
| adjust-cell-height = 18% | |
| # Colors | |
| theme = light:/Users/brandonsheppard/Library/Application Support/com.mitchellh.ghostty/themes/os-light,dark:/Users/brandonsheppard/Library/Application Support/com.mitchellh.ghostty/themes/os-dark | |
| background-opacity = 0.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew update && brew install node && curl -fsSL https://openclaw.ai/install.sh | bash && openclaw onboard --install-daemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addEventListener('fetch', event => { | |
| event.respondWith(handleRequest(event.request)) | |
| }) | |
| async function handleRequest(request) { | |
| const pageURL = new URL(request.url); | |
| return Response.redirect(`${pageURL.protocol}//${String(pageURL.host).substring(4)}${pageURL.pathname}${pageURL.search}`) | |
| } |
https://web.archive.org/web/*/URL/*
e.g.,
https://web.archive.org/web/*/https://github.com/NetoECommerce/Skeletal/*
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =date(year(edate(today(),-1)),MONTH(edate(today(),-1)),1) | |
| // assumes date in cell is the 1st |
Pass commit data into this function to format a markdown commit note. Data structure is based on what Github's compare endpoint returns.
This is useful for generating a changelog for release notes based on git activity.
Based on response from Github's compareCommits endpoint.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Run on page load | |
| $('input').on('focus blur',function(e){ | |
| performance.mark(e.type+ ' ' + e.target.name) | |
| }); | |
| // Run to see results | |
| console.table(performance.getEntriesByType('mark')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var observer = new MutationObserver(function(mutations) { | |
| mutations.forEach(function(mutation) { | |
| console.log(mutation.type); | |
| }); | |
| }); | |
| observer.observe(document.getElementById('bill_selector'), { | |
| attributes: true, | |
| childList: true, | |
| characterData: true |
NewerOlder