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
FROM quay.sys.cigna.com/cigna/rhel:latest | |
RUN yum install -y zsh git cmake gcc-c++ unzip libtool make curl gettext kernel-devel ncurses-devel xterm python36 | |
WORKDIR /home | |
RUN curl -LOk https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz | |
RUN tar -xf libevent-2.1.8-stable.tar.gz && \ | |
cd libevent-2.1.8-stable && \ | |
./configure --prefix=/usr/local && \ | |
make && make install |
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
package main | |
import ( | |
"fmt" | |
"github.com/piquette/finance-go/equity" | |
"sync" | |
"time" | |
) | |
func nowx() int64 { |
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
// session endpoints | |
const ( | |
UrlStatus = "/iserver/auth/status" | |
UrlReauth = "/iserver/reauthenticate" | |
UrlValidate = "/sso/validate" | |
UrlTickle = "/tickle" | |
UrlLogout = "/logout" | |
) |
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
Installing | |
Their installation instructions are spot on, they present many ways to install in various OSs. | |
I personally prefer to use the Appimage method. | |
curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
chmod u+x nvim.appimage | |
./nvim.appimage | |
Python Provider | |
A lot of awesome plugins like VDebug and NeoSnippet require Python provider support. |