Skip to content

Instantly share code, notes, and snippets.

View masudcsesust04's full-sized avatar
🏣
Working from office

Md Masud Rana masudcsesust04

🏣
Working from office
  • Dhaka, Bangladesh
  • 14:12 (UTC +06:00)
View GitHub Profile
@masudcsesust04
masudcsesust04 / elasticsearch-kibana-docker-compose.md
Created October 20, 2022 10:13
Elasticsearch with Kibana using docker compose

Add following line to your docker-compose.yml file

version: "3.0"
services:
  elasticsearch:
    container_name: es-container
    image: docker.elastic.co/elasticsearch/elasticsearch:7.11.0
    environment:
 - xpack.security.enabled=false
@masudcsesust04
masudcsesust04 / nvimr-demo.md
Created August 12, 2024 17:46 — forked from rohitfarmer/nvimr-demo.md
Nvim-R Demo

How to use Neovim or VIM Editor as an IDE for R

Note: This tutorial is written for Linux based systems.

Requirements

R >= 3.0.0

To install the latest version of R please flollow the download and install instructions at https://cloud.r-project.org/

Neovim >= 0.2.0

Neovim (nvim) is the continuation and extension of Vim editor with the aim to keep the good parts of Vim and add more features. In this tutorial I will be using Neovim (nvim), however, most of the steps are equally applicable to Vim also. Please follow download and installation instructions on nvim's GitHub wiki https://github.com/neovim/neovim/wiki/Installing-Neovim.