Skip to content

Instantly share code, notes, and snippets.

View gferrin's full-sized avatar

Gabriel Ferrin gferrin

View GitHub Profile
@gferrin
gferrin / support-ticket-mockup.html
Created January 22, 2026 15:36
Support Ticket UI Design Mockup for #14498
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support Ticket UI Mockup - AET Backoffice</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
@gferrin
gferrin / Fresh Ubuntu
Last active May 31, 2016 20:49
Install all necessary dependencies for node.js applications on Ubuntu
TLDR;
sudo apt-get update; curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -; sudo apt-get install -y nodejs; sudo apt-get install -y git; sudo apt-get install -y build-essential; sudo npm install -g forever coffee-script;
When launching a new ubuntu instance to run node.js applications perform the following steps.
sudo apt-get update
# install nodejs
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs