Skip to content

Instantly share code, notes, and snippets.

View sandheepgr's full-sized avatar

Sandheep G R sandheepgr

  • CustomerInspire Pte Ltd
  • Bangalore
View GitHub Profile
@sandheepgr
sandheepgr / slack-night-mode-custom.css
Last active February 13, 2019 15:11
Night mode css file for slack
body { background: #404040; color: #e6e6e6; }
a { color: #949494; }
a:link, a:visited { color: #949494; }
a:hover, a:active, a:focus { color: #c7c7c7; }
hr { border-bottom: 1px solid #424242; border-top: 1px solid #404040; }
@sandheepgr
sandheepgr / CacheConfig.java
Created September 7, 2016 04:43
Hazelcast configuration
import com.hazelcast.client.HazelcastClient;
import com.hazelcast.client.config.ClientConfig;
import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.spring.cache.HazelcastCacheManager;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;