- 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.
This file contains hidden or 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
# 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 |
This file contains hidden or 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> | |
<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> |
This file contains hidden or 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
// Add to index.html before closing </body> tag or in app.js etc | |
<script> | |
window.addEventListener( | |
"resize", | |
function () { | |
console.log(window.innerWidth) | |
} | |
) | |
</script> |