Skip to content

Instantly share code, notes, and snippets.

View ztrayner's full-sized avatar

Zach Trayner ztrayner

View GitHub Profile
@ztrayner
ztrayner / qrgen
Created November 19, 2023 20:49
Generate and copy qr code to clipboard on mac
alias qrgen='function _qrgen(){
local tmpfile="${HOME}/Downloads/qrcode.png"
qrencode -o "$tmpfile" "$*"
osascript -e "set the clipboard to (read (POSIX file \"${tmpfile}\") as JPEG picture)"
rm "$tmpfile"
}; _qrgen'
@ztrayner
ztrayner / pre-push.sh
Created April 14, 2023 22:01
.husky/pre-push for prettier to only write modified files that are being pushed
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
echo "Running Prettier on changed files..."
# Get a list of changed files since the last commit
changed_files=$(git diff --name-only --diff-filter=d HEAD @{push} "*.js" "*.jsx" "*.ts" "*.tsx" "*.json" "*.css" "*.scss" "*.md")
# Run Prettier on changed files
if [ -n "$changed_files" ]; then
@ztrayner
ztrayner / setup_mac.sh
Last active November 10, 2023 22:05
Mac setup 2023 JavaScript Engineer
#!/bin/bash
# Save this script as setup_mac.sh, make it executable with chmod +x ./setup_mac.sh, and run it with ./setup_mac.sh
POWERLEVEL10K_PATH="/opt/homebrew/share/powerlevel10k/powerlevel10k.zsh-theme"
# Set up Git
git_name=$(git config --global --get user.name)
git_email=$(git config --global --get user.email)
git_push_default=$(git config --global --get push.default)
@ztrayner
ztrayner / cloneNodeRemoveEvents.js
Created March 16, 2018 16:38
This function clones an element/node and thus removes all event listeners. Using the returned promise, you can then set new listeners on the element.
function cloneNodeRemoveEvents(el, withChildren) {
if (withChildren) {
el.parentNode.replaceChild(el.cloneNode(true), el);
}
else {
var newEl = el.cloneNode(false);
while (el.hasChildNodes()) newEl.appendChild(el.firstChild);
el.parentNode.replaceChild(newEl, el);
}
@ztrayner
ztrayner / search_blocks.sh
Last active November 21, 2017 23:17 — forked from dallinskinner/search_blocks.sh
Search content of blocks
#Usage: search_blocks.sh SITE TERM
#Where SITE is chart or press and TERM is whatever you're looking for.
#!/bin/bash
ssh lucid 'mysql '$1'_drupal -e "SELECT bid, info, CONCAT('\''https://zach.office.lucid'$1'.com/pages/admin/structure/block/manage/block/'\'', bid, '\''/configure'\'') as url FROM block_custom WHERE body LIKE '\''%'$2'%'\''\G"'
@ztrayner
ztrayner / ad.html
Created May 5, 2017 20:03
Blog Gist - Ad
<div class="ad">
<h3 dir="ltr">Speaking of mobile apps, Lucidchart has one!</h3>
<h3 dir="ltr">Check it out!</h3>
<div class="buttons">
<a class="orange-btn" href="https://itunes.apple.com/us/app/lucidchart-flowchart-diagram/id611543423" style="margin-right:1rem;" target="_blank">Lucidchart for iOS</a>
<a class="orange-btn" href="https://play.google.com/store/apps/details?id=com.lucidchart.android.chart" target="_blank">Lucidchart for Android</a>
</div>
</div>
@ztrayner
ztrayner / ordinal.js
Created March 8, 2017 22:26 — forked from jlbruno/ordinal.js
Javascript Ordinal Numbers
// found here http://forums.shopify.com/categories/2/posts/29259
var getOrdinal = function(n) {
var s=["th","st","nd","rd"],
v=n%100;
return n+(s[(v-20)%10]||s[v]||s[0]);
}
@ztrayner
ztrayner / fixparallax.css
Created February 22, 2017 18:39
Fix scrollmagic parallax jitter
#parallax-section::before {
position: fixed;
content: '';
}
@ztrayner
ztrayner / Contract Killer 3.md
Last active February 14, 2016 00:13
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: February 13th 2016
  • Original post