Skip to content

Instantly share code, notes, and snippets.

View helloMatthew's full-sized avatar
🦖

Matthew helloMatthew

🦖
View GitHub Profile
@helloMatthew
helloMatthew / Git hybrid workflow configuration
Created October 8, 2025 14:09
Git hybrid workflow configuration
# command line configuration:
# Always rebase when pulling (for local branches)
git config --global pull.rebase true
# Auto-stash local changes before pulling (avoids conflicts)
git config --global rebase.autoStash true
# Keep the main branch safe — do not rebase it
git config --global branch.main.rebase false
  • 10 years commercial experience Full Stack Developer.
  • Javascript (TS), React, Node, CSS, PHP, Python, SQL.
  • Ability to independently write, test and deploy.
  • API Architect and Cloud Resources Engineer.
  • (BA) Graphics, Motion and Information Design.
@helloMatthew
helloMatthew / index.html
Last active May 2, 2023 18:15
colour palette
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
<title>Colour Palette</title>
</head>
<body>
<p>lighblue</p>
// Add to index.html before closing </body> tag or in app.js etc
<script>
window.addEventListener(
"resize",
function () {
console.log(window.innerWidth)
}
)
</script>