Skip to content

Instantly share code, notes, and snippets.

View kishore-vkrn's full-sized avatar

Kishore Venkataramanan kishore-vkrn

View GitHub Profile
@kishore-vkrn
kishore-vkrn / fish_prompt
Created March 17, 2022 16:53 — forked from trautonen/fish_prompt
Terraform workspaces in fish shell
# Edit your fish prompt with `funced fish_prompt` and
# add the following to a desired place in the function.
# Save the prompt after editing with `funcsave fish_prompt`.
# Set a variable for workspace color.
set -l tfworkspace_color (set_color green)
# Append the workspace name at the current prompt position if
# the directory contains a .terraform subdirectory
if test -d .terraform
@kishore-vkrn
kishore-vkrn / wa_dark.js
Created May 13, 2019 12:13
Whatsapp dark theme for Rambox
function applycss(css){
var head = document.getElementsByTagName('head')[0];
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.appendChild(document.createTextNode(css));
head.appendChild(s);
}
applycss(`
/*Theme made by RaitaroH @https://gitlab.com/RaitaroH/WhatsApp-DeepDark*/
/*GNU General Public License v3.0*/
@kishore-vkrn
kishore-vkrn / Atom_export_settings.md
Created March 16, 2018 04:06 — forked from michalczukm/Atom_export_settings.md
Atom: Backup all settings

Export:

  1. Copy from ${user}/.atom:
  • config.cson
  • keymap.cson
  • snippets.cson
  • styles.less
  1. Save installed packages list apm list --installed --bare > packages.list
@kishore-vkrn
kishore-vkrn / ansible-summary.md
Created December 12, 2017 21:08 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

I just had to set up Jenkins to use GitHub. My notes (to myself, mostly):

Detailed Instructions

For setting up Jenkins to build GitHub projects. This assumes some ability to manage Jenkins, use the command line, set up a utility LDAP account, etc. Please share or improve this Gist as needed.

Install Jenkins Plugins