Skip to content

Instantly share code, notes, and snippets.

View joshbuchea's full-sized avatar

Josh Buchea joshbuchea

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 24, 2024 18:21
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@joshbuchea
joshbuchea / microdata_resume_cv.html
Created June 14, 2020 01:17 — forked from danielantelo/microdata_resume_cv.html
HTML5 Microdata Resume (Curriculum) Template
<!DOCTYPE html>
<html>
<head>
<!-- Meta conf -->
<meta charset="UTF-8">
<!-- Meta info -->
<title>HTML5 Microdata Resume (CV) Template</title>
<meta name="description" content="An example of how to layout a semantic html5 page for a curriculum vitae/resume">
<meta name="keywords" content="template, html, semantic, microdata, resume, cv, curriculum, vitae">
</head>
@joshbuchea
joshbuchea / swift-extend-color-init-support-hex.swift
Last active April 16, 2024 11:34
Swift: Extend Color.init to support hex colors
// From SO answer: https://stackoverflow.com/a/56874327/1492782
extension Color {
init(hex: String) {
let hex = hex.trimmingCharacters(in: CharacterSet.alphanumerics.inverted)
var int: UInt64 = 0
Scanner(string: hex).scanHexInt64(&int)
let a, r, g, b: UInt64
switch hex.count {
case 3: // RGB (12-bit)
(a, r, g, b) = (255, (int >> 8) * 17, (int >> 4 & 0xF) * 17, (int & 0xF) * 17)
@joshbuchea
joshbuchea / markdown-details-collapsible.md
Created May 27, 2022 20:38 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

A collapsible section containing markdown

Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets
@joshbuchea
joshbuchea / index.html
Last active August 1, 2023 12:37
HTML5 Starter
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 Starter</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐣</text></svg>">
<!-- <link rel="stylesheet" href="styles.css"> -->
<!-- <style></style> -->
</head>
@joshbuchea
joshbuchea / emoji-favicon-example.html
Created June 19, 2021 21:51
Emoji Favicon Example
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐣</text></svg>">
@joshbuchea
joshbuchea / RNfontWeights.js
Created February 21, 2023 23:28 — forked from knowbody/RNfontWeights.js
React Native Font Weight Cheatsheet iOS
{ fontWeight: '100' }, // Thin
{ fontWeight: '200' }, // Ultra Light
{ fontWeight: '300' }, // Light
{ fontWeight: '400' }, // Regular
{ fontWeight: '500' }, // Medium
{ fontWeight: '600' }, // Semibold
{ fontWeight: '700' }, // Bold
{ fontWeight: '800' }, // Heavy
{ fontWeight: '900' }, // Black
@joshbuchea
joshbuchea / .gitignore
Last active May 26, 2023 23:12
Git Ignore Examples
# node.js #
############
node_modules/
npm-debug.*
yarn.lock
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
@joshbuchea
joshbuchea / mac-setup.sh
Created August 8, 2019 23:53 — forked from matteocrippa/mac-setup.sh
a script to quick setup my dev Mac
#!/usr/bin/env bash
echo "Install XCode first"
xcode-select --install
# Setup directories
mkdir ~/Projects
mkdir ~/Projects/Repositories
mkdir ~/Projects/Material
@joshbuchea
joshbuchea / get-url-params.js
Last active October 11, 2022 23:13
JavaScript - Get URL Query Params
/**
* Returns a bare object of the URL's query parameters.
* You can pass just a query string rather than a complete URL.
* The default URL is the current page.
*/
function getUrlParams (url) {
// http://stackoverflow.com/a/23946023/2407309
if (typeof url == 'undefined') {
url = window.location.search
}