Skip to content

Instantly share code, notes, and snippets.

View mrkimbo's full-sized avatar
💭
👉🙈👈

Kim Holland mrkimbo

💭
👉🙈👈
  • Melbourne, Australia
View GitHub Profile
@mrkimbo
mrkimbo / resume.json
Last active February 3, 2020 03:55
resume.json
{
"basics": {
"name": "Kim Holland",
"label": "Tech Lead \/ Engineer \/ Automation Advocate",
"summary": "With over fifteen years\u2019 experience in developing web based solutions, my expertise and skills are full-stack with a primary focus in Front End \/ UI technologies. I am comfortable discussing\/implementing GIT branching strategies, prod infrastructure or container best practises and have a passion for CI\/CD, ubiquitous automation and infrastructure as code.\n\nTo stay current, I actively follow the industry and trends via blogs, meetups, personal projects and brain picking. I value clarity in both code and architecture, intuitive UX, communication, collaboration and challenging stale knowledge.\n\nCurrent top skills:\n- React\/Redux\n- Node\/Express\/GraphQL\n- VanillaJS",
"location": {
"postalCode": "3000",
"countryCode": "AU"
},
"meta": {
@mrkimbo
mrkimbo / docker-building.txt
Last active July 17, 2019 05:38
Docker Helpers
# Build image using Dockerfile in same dir
docker build . --no-cache
# Remove intermediate images after build
docker build . --rm
# Tag image
docker build . --tag my-image
# Use custom dockerfile
@mrkimbo
mrkimbo / Bash: File or Dir existence
Last active March 21, 2018 22:58
Bash: File / Dir existence
# -f for file test
# -d for directory test
# File check (longhand)
if test -f /tmp/testfile.log
then
echo "found"
fi
// File/Dir check (shorthand)

Keybase proof

I hereby claim:

  • I am tripleaxis on github.
  • I am xs3 (https://keybase.io/xs3) on keybase.
  • I have a public key whose fingerprint is 90CE 5517 9B74 4C25 007D 470A 0BCD 940E 4F7C A6ED

To claim this, I am signing this object:

@mrkimbo
mrkimbo / Atlassian Connector fix
Last active January 4, 2016 11:40
Enable Atlassian Connector for IntelliJ Idea
Add following line to IntelliJ > Package Contents /bin/idea.vmoptions
-Djsse.enableSNIExtension=false
ssh -T git@github.com
@mrkimbo
mrkimbo / Check current user's SSH keys
Last active June 15, 2018 01:16
Set current user perms to npm dir
ssh-add -l