Branch | Name | Notes |
---|---|---|
Stable | master | Accepts merges from Release and Hotfix branches only. |
Development | develop | Accepts merges from Feature/Bugfix, Release and Hotfix |
Features/Bugfix | feat-* / bug-* | Always branch off HEAD of develop |
Hotfix | hotfix-* | Always branch off master. Merges back into master and develop. |
This file contains 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
{ | |
"html": { | |
"snippets": { | |
"page": "<header role=\"banner\">\n\t<nav role=\"navigation\">\n\t\t${1}\n\t</nav>\n</header>\n<div role=\"main\">\n\t${2}\n</div>\n<footer role=\"contentinfo\">\n\t${3}\n</footer>", | |
"meta:vpm": "<meta name=\"viewport\" content=\"initial-scale=1.0, width=device-width\" />" | |
}, | |
"abbreviations": { | |
"doc": "html>(head>meta[charset=UTF-8]+meta:vpm+title{${1:Document}})+body", | |
"!:page": "html:5>page" | |
} |
This file contains 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
function cache_buster_url($uri) { | |
//Get base url of WP installation | |
$base_url = get_bloginfo('url'); | |
//Get local path to the root of the WP installation | |
$installation_root = $_SERVER['DOCUMENT_ROOT']; | |
//Get path (from root) to file | |
$path_info = str_replace($base_url, '', $uri); |
This file contains 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
# Set +FollowSymLinks otherwise mod_rewrite results in a forbidden error | |
Options +FollowSymLinks | |
<IfModule mod_rewrite.c> | |
# Uncomment to turn on mod_rewrite | |
# RewriteEngine On | |
# RewriteBase / |
This file contains 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
Show hidden characters
{ | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Window Blur / Focus</title> | |
<script> | |
window.onblur = function() { | |
document.title = "You Left!!!"; | |
} | |
window.onfocus = function() { |
- Interview stakeholders. Goals. Vision
- Elevator pitch: “For [target customer], who has [customer need], [product name] is a [market category] that [one key benefit]. Unlike [competition], the product [unique differentiator].”
- Define your value proposition
- Create a “Concept Story” as described in “The User’s Journey.”
This file contains 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
CREATE TABLE `states` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL DEFAULT '', | |
`name` varchar(128) NOT NULL DEFAULT '', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
insert into states (code,name) values ('AL','Alabama'); | |
insert into states (code,name) values ('AK','Alaska'); | |
insert into states (code,name) values ('AS','American Samoa'); |
Follow these instructions to set up a dev environment for web component development using Lit. These instructions use Storybook for an accompanying component library.
IMPORTANT: Before you begin, make sure you install the latest versions of Node (20.15.0 at time of writing) and PNPM (9.4.0 at time of writing). This also assumes you have Visual Studio Code installed.
OlderNewer