Skip to content

Instantly share code, notes, and snippets.

alias ls='eza -al --icons --group-directories-first'
alias l='eza -l --icons --group-directories-first'
alias ll='eza -alhg --icons --git --time-style=long-iso'
alias lt='eza -aT --icons --level=2'
alias lS='eza -alh --sort=size'
alias ltm='eza -alh --sort=modified'
alias la='eza -a --icons --group-directories-first'
@nickmjones
nickmjones / plans.html
Created December 4, 2024 19:55
Plans Comparison markup
<section className="plans flex flex-col md:flex-row gap-8 md:gap-4 px-4 py-8 md:px-24 lg:px-44 xl:px-64 md:py-24 w-full
items-stretch transition-colors duration-1000 md:min-h-[60vh]">
<div className="rounded-3xl bg-gray-50 flex flex-col items-center justify-between w-full p-4 min-h-full shadow-xl">
<div className="pt-8">
<div className="text-center">
<h2 className="text-4xl text-purple">Free</h2>
<h2 className="text-2xl font-normal">$0.00/mo</h2>
</div>
<ul className="flex flex-col items-start w-full my-6 text-sm gap-2">
<li className="flex flex-row gap-2 items-center">
@nickmjones
nickmjones / efx.md
Created December 27, 2018 17:53
EFx page copy

EFx is a powerful and configurable suite of technology that adds a layer of almost magical experiences to your events. It takes an ordinary event — you know: check-in, a list of attendees — and transforms it into something people won’t soon forget.

EFx includes a suite of features we call abilities. You can enable different abilities to build up the perfect event type for your purposes. Are you running a multi-day event, like the Atlantic Festival? You may want tons of abilities. A networking event for prospects and their guests? Wearable access, a roving photographer, and gift pickup could be perfect.

Do better than email with EFx Instant

In their lives outside of attending your events, people avoid email. It takes time to respond to email, and it builds up in our inboxes at alarming rates. Your pre-event messages get buried under an avalanche of spam, and before you know it you have a hundred people at your event who never chose a lunch entree or got the venue map.

Put an end to ignored email and bus

<style>* {
box-sizing: border-box;
}
body {
margin: 0;
}
#i2arv3{
width:133px;
height:133px;
}
@nickmjones
nickmjones / alerts_2.html
Created January 25, 2018 18:10
[Tentacles DS] More Alerts
<div class="message message--success-filled">
<p><strong>Success!</strong> You did the thing!</p>
</div>
<div class="message message--warn-filled">
<p><strong>Hmm</strong> The thing isn't looking good.</p>
</div>
<div class="message message--error-filled">
<p><strong>Oh dear.</strong> The thing did not work :/</p>
</div>
<div class="message message--announce-filled">
@nickmjones
nickmjones / alerts_1.html
Last active January 25, 2018 18:31
[Tentacles DS] Alerts
<div class="message message--success">
<p><strong>Success!</strong> You did the thing!</p>
</div>
<div class="message message--warn">
<p><strong>Hmm</strong> The thing isn't looking good.</p>
</div>
<div class="message message--error">
<p><strong>Oh dear.</strong> The thing did not work :/</p>
</div>
<div class="message message--announce">
@nickmjones
nickmjones / form.html
Created January 18, 2018 16:35
[Tentacles DS] Forms
<form name="foo" class="userform">
<label for="full_name">Full Name</label>
<input type="text" placeholder="Full Name" id="full_name">
<label for="password">Password</label>
<input type="password" placeholder="Password" id="password">
<label for="comments">Comments</label>
<textarea id="comments" rows="10" placeholder="Your comments"></textarea>
@nickmjones
nickmjones / buttons.html
Last active January 18, 2018 15:26
[Tentacles DS] Buttons
<div class="btn btn--primary">Primary Button</div>
<div class="btn btn--secondary">Secondary Button</div>
<a href="/some/path" class="btn btn--primary">Link as Button</a>
<a href="/some/path" class="btn btn--secondary">Link as Button</a>
<a href="/some/path">I am a link.</a>
@nickmjones
nickmjones / fonts.html
Created January 11, 2018 14:36
This gist contains URLs for including Custom Ink core fonts
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Font Demo</title>
<style>
@font-face {
font-family: "SharpSans";
font-style: normal;
font-weight: 100;
@nickmjones
nickmjones / button.scss
Last active January 10, 2018 20:22
CI Button
$_sb2-btn-transition: all 0.10s ease-in-out;
// Define base button class
// note the border radius
// =====================================================
// Stumped? Visit /more/forms/_core.scss
.sb-Btn,
a.sb-Btn,
.sb-Btn--primary,