Skip to content

Instantly share code, notes, and snippets.

@jggc
jggc / console_output.log
Created November 1, 2018 12:39
grpc build fail node 11.0.0
user@laptop (git)-[master] % npm rebuild
> jss@9.8.7 postinstall /home/user/project/node_modules/jss
> node -e "console.log('\u001b[35m\u001b[1mLove JSS? You can now support us on open collective:\u001b[22m\u001b[39m\n > \u001b[34mhttps://opencollective.com/jss/donate\u001b[0m')"
Love JSS? You can now support us on open collective:
> https://opencollective.com/jss/donate
> yoga-layout@1.9.3 install /home/user/project/node_modules/yoga-layout
> npm run build:node
@jggc
jggc / init.vim
Created October 29, 2018 15:51
Neovim configuration
"""""""""""""
" Below lies plugin installation and configuration
"""""""""""""
call plug#begin()
Plug 'tpope/vim-fugitive'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeFind' }
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
@jggc
jggc / GetSvnRevision.xml
Created October 6, 2014 19:41
Ant target to get information from SVN. Using svn --xml and xmlproperty. Should be cross-platform but only tested on Linux.
<target name="_getSvnVars" description="Get SVN info">
<exec executable="svn" outputProperty="svn.info.string">
<arg value="info" />
<arg value="--xml"/>
<arg value="--incremental"/>
</exec>
<xmlproperty prefix="svn.info.xml">
<string>
${svn.info.string}
@jggc
jggc / setenv.sh
Last active August 29, 2015 14:03 — forked from terrancesnyder/setenv.sh
#! /bin/sh
# ==================================================================
# ______ __ _____
# /_ __/___ ____ ___ _________ _/ /_ /__ /
# / / / __ \/ __ `__ \/ ___/ __ `/ __/ / /
# / / / /_/ / / / / / / /__/ /_/ / /_ / /
#/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/
# Multi-instance Apache Tomcat installation with a focus
# on best-practices as defined by Apache, SpringSource, and MuleSoft