Skip to content

Instantly share code, notes, and snippets.

View libinvarghese's full-sized avatar

Libin Varghese libinvarghese

  • Bangalore, India
View GitHub Profile
@libinvarghese
libinvarghese / # nvm - 2020-05-05_10-20-00.txt
Created May 5, 2020 05:04
nvm on macOS 10.13.6 - Homebrew build logs
Homebrew build logs for nvm on macOS 10.13.6
Build date: 2020-05-05 10:20:00
@libinvarghese
libinvarghese / clamav-mac.md
Last active October 3, 2017 15:59 — forked from Uchean/clamav-mac.md
Get ClamAV running on Mac OS X (using Homebrew)

Get ClamAV running on Mac OS X (using Homebrew)

The easiest way to get the ClamAV package is using Homebrew

$ brew install clamav

Before trying to start the clamd process, you'll need a copy of the ClamAV databases.

Create a freshclam.conf file and configure as so

@libinvarghese
libinvarghese / .gitconfig
Last active November 2, 2021 13:14
Search in all Stash for a pattern
# Search in all Stash for a pattern
# Install: Copy the below into the .gitconfig file
# simple call
# git stash-search pattern_to_search
[alias]
stash-search = "!f() { git show $(git stash list | cut -d\":\" -f 1) | grep \"$@\" ; }; f"
# MIT License