Skip to content
View marijndegen's full-sized avatar
๐Ÿ˜€
๐Ÿ˜€

Block or report marijndegen

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
marijndegen/README.md
  • ๐Ÿ‘‹ Hi, Iโ€™m @marijndegen
  • ๐Ÿ‘€ Iโ€™m interested in gaming, coding, my friends, solving rubix cubes and parachuting.
  • ๐ŸŒฑ I'm always interested to learn new stuff!
  • ๐Ÿ’ž๏ธ If you have any cool code I should check, let me know :D
  • ๐Ÿ“ซ Reach me at [email protected], view my resume

Note to self (and others) when recieving a new laptop

Configure git aliasses (in windows cmd):

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.sl "stash list"
git config --global alias.check "!sh -c 'git stash save -u '\"$1\"' && git stash apply' #"
git config --global alias.checkOld = "!sh -c 'git stash save -u '\"$1\"' && git stash apply' #"
git config --global alias.checkNoMessageRequired = "!f() { date=\"$(date +'%Y-%m-%d %H:%M:%S')\"; message=\"$1\"; git stash save -u \"at ${date} ${message}\" && git stash apply; }; f"

When using WSL2, put this in .bashrc to make sure windows git is used:

alias git=git.exe

git config in C:\Users\%USERNAME%\.gitconfig should look like this:

[alias]
	co = checkout
	br = branch
	ci = commit
	st = status
	check = "!f() { date=\"$(date +'%Y-%m-%d %H:%M:%S')\"; message=\"$1\"; if [ -z \"$message\" ]; then echo 'Error: No message provided for stash.' >&2; exit 1; fi; git stash save -u \"at ${date} ${message}\" && git stash apply; }; f"
	checkOld = "!sh -c 'git stash save -u '\"$1\"' && git stash apply' #"
	checkNoMessageRequired = "!f() { date=\"$(date +'%Y-%m-%d %H:%M:%S')\"; message=\"$1\"; git stash save -u \"at ${date} ${message}\" && git stash apply; }; f"

Popular repositories Loading

  1. deaberoepsproduct deaberoepsproduct Public archive

    Here i will store the product for the subject dea.

    Java

  2. onlineCV onlineCV Public

    HTML

  3. Blockchainproject2018allRepos Blockchainproject2018allRepos Public

    Old school project, software is for experimental purposes, not for production of any kind, no documentation, warrenty, licence, whatsoever. #java #tommee #javascript #angular #ethereum #solidity #wโ€ฆ

    Java

  4. programmero programmero Public

    This software is ment for institutions who teach students programming, students need to drag the programming cards in the right order to get working code.

    JavaScript

  5. arduino-speedometer arduino-speedometer Public

    This repository serves as a tutorial to make a speedometer with an arduino.

  6. laravel-Keypair-admin laravel-Keypair-admin Public

    Encrypting a message using RSA, laravel example

    PHP