Skip to content

Instantly share code, notes, and snippets.

View mrjones2014's full-sized avatar
🤠
I ❤️ open source

Mat mrjones2014

🤠
I ❤️ open source
View GitHub Profile
[START][2021-10-06 10:22:38] LSP logging initiated
[START][2021-10-06 10:22:40] LSP logging initiated
[START][2021-10-06 10:22:40] LSP logging initiated
[START][2021-10-06 10:33:11] LSP logging initiated
[START][2021-10-06 10:33:12] LSP logging initiated
[START][2021-10-06 10:35:35] LSP logging initiated
[START][2021-10-06 10:35:53] LSP logging initiated
[START][2021-10-06 10:38:53] LSP logging initiated
[START][2021-10-06 10:39:09] LSP logging initiated
@mrjones2014
mrjones2014 / do-try-default-behavior-example.ts
Last active November 3, 2020 18:45
do-try-default-behavior-example.ts
// index.ts
EnvironmentUtils.runIfDevelopment(() => {
Do.configure({
defaultErrorHandler: (result?: ResultRecord<any>, error?: any) => {
result != null && console.error(result);
error != null && console.error(error);
}
});
});
@mrjones2014
mrjones2014 / userChrome.css
Last active June 17, 2020 18:37
My Firefox userChrome.css customizations
/*
* #region Rounded Tabs
*/
vbox.tab-background {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
/*
@mrjones2014
mrjones2014 / agnoster_custom.zsh-theme
Created July 12, 2018 19:43
a slightly customized version of the agnoster theme for zsh
# vim:ft=zsh ts=2 sw=2 sts=2
#
# agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for ZSH
#
# # README
#
# In order for this theme to render correctly, you will need a
# [Powerline-patched font](https://gist.github.com/1595572).
#
@mrjones2014
mrjones2014 / install-jetbrains-toolbox-app.sh
Created November 10, 2017 16:37
install jetbrains toolbox app
#!/bin/bash
[ $(id -u) != "0" ] && exec sudo "$0" "$@"
echo -e " \e[94mInstalling Jetbrains Toolbox\e[39m"
echo ""
URL="https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.3.2421.tar.gz"
FILE=$(basename ${URL})