Skip to content

Instantly share code, notes, and snippets.

View ShahBinoy's full-sized avatar

Binoy Shah ShahBinoy

  • Vibrent Health
  • Fairfax, VA
View GitHub Profile
@Julynx
Julynx / 15_python_tips.md
Last active February 27, 2025 16:06
15 Python Tips To Take Your Code To The Next Level!
@ShahBinoy
ShahBinoy / redis_26666
Created July 8, 2015 15:31
Redis sentinel init script for linux servers
#!/bin/sh
#
# redis - this script starts and stops the redis-server daemon
#
# chkconfig: - 85 15
# description: Redis is a persistent key-value database
# processname: redis-server
# config: /etc/redis/redis.conf
# config: /etc/sysconfig/redis
# pidfile: /var/run/redis/redis.pid
@thom-nic
thom-nic / build.gradle
Last active August 28, 2024 11:24
find the largest classnames in Spring libraries. Also find FactoryFactories
/**
* Find the longest class names in Spring.
* Also find FactoryFactory classes.
* a goof-off project by @thom_nic
*/
import java.util.jar.*
defaultTasks 'longest', 'factoryfactory'
@pksunkara
pksunkara / config
Last active July 24, 2025 22:56
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Pavan Kumar Sunkara
email = [email protected]
username = pksunkara
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]