Skip to content

Instantly share code, notes, and snippets.

View rsrini7's full-sized avatar
😃
Happy

Srinivasan Ragothaman rsrini7

😃
Happy
View GitHub Profile
@rsrini7
rsrini7 / cache repos
Last active March 17, 2022 05:00
cache links
https://github.com/making/demo-spring-boot-1.3/tree/master/demo-cache-jcache-coherence
https://github.com/jhasumankumar/metrics_cache/blob/master/pom.xml
https://github.com/lftrevisan/coherence-jcache
https://github.com/making/jsr107-coherence-sample
https://github.com/ghillert/s1-2020-plants-demo
https://github.com/yannis666/Coherence-JSR-107/tree/master/jsr107/src/main/java/com/tangosol/coherence/jsr107
https://github.com/genarocoronel/java-coherence
https://github.com/psharin/JCacheAndSpringCacheSampleApp
@rsrini7
rsrini7 / mac-brew-installs
Created January 15, 2022 06:49
mac-brew-installs
brew tap homebrew/cask-fonts && brew install --cask font-source-code-pro
brew install svn
brew install --cask iterm2
brew install --cask google-chrome
brew install --cask firefox
brew install bat
brew install --cask telegram
brew install --cask zoom
brew install --cask spectacle
brew install --cask flycut
@rsrini7
rsrini7 / linode-k8s
Created January 13, 2022 19:26
k8s
Cloud Native Continuous Deployment with GitLab, Helm, and Linode Kubernetes Engine
https://www.youtube.com/watch?v=8T_i3E0kUFE&list=PLTnRtjQN5ieYD97JCZtcGbIjq1EINih2G
https://2021-03-lke.container.training/#1
@rsrini7
rsrini7 / chaos-k8s
Last active January 13, 2022 04:49
Chaos Eng
https://github.com/chaos-mesh/chaos-mesh
@rsrini7
rsrini7 / hotkeys.ahk
Created January 11, 2022 16:43
windows startup scripts
; Remap hotkeys
; CapsLock::Esc
; Esc::CapsLock
; Global hotkeys
>^t::Run, %UserProfile%\AppData\Local\Microsoft\WindowsApps\wt.exe
>^+t::Run, *RunAs %UserProfile%\AppData\Local\Microsoft\WindowsApps\wt.exe
>^w::Run chrome.exe
>^+w::Run chrome.exe -incognito
collector.yaml - screenshot
docker run --rm -p 9411:9411 -v "${PWD}/collector.yaml":/etc/collector.yaml:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --name otelcol otel/opentelemetry-collector-contrib:latest --config /etc/collector.yaml
curl -X POST localhost:9411/api/v2/spans -H"Content-Type: application/json" -d @trace.json
@rsrini7
rsrini7 / ssl
Created December 28, 2021 05:11
articles
https://moz.com/blog/traditional-vs-lets-encrypt-vs-cloudflare
@rsrini7
rsrini7 / keystore
Created December 24, 2021 13:51
jks java keystore links
https://github.com/LegacyOfKain/Private_Public_Encrypt_Decrypt_Keystore
https://gist.github.com/rsrini7/e157fbb0885096c1a5d629c6f31ab94e
https://gist.github.com/ilguzin/6606011
https://gist.github.com/sflanaga/4dadab11992295817374fd186bd65fda
https://gist.github.com/xkr47/920ffe94f6a4c171ee59
https://gist.github.com/nielsutrecht/855f3bef0cf559d8d23e94e2aecd4ede
https://gist.github.com/lenamuit/19606a5f458d3bda619b
https://gist.github.com/aelkz/20feacd531ea2d5084e55852164b3f43
@rsrini7
rsrini7 / wsl-dotfiles
Created December 22, 2021 06:02
dotfiles
Youtube:
https://www.youtube.com/watch?v=h509rn2xIyU
Tools:
https://www.autohotkey.com/
https://sourceforge.net/projects/vcxsrv/
https://github.com/microsoft/PowerToys (Powertoys app launcher)
http://www.dexpot.de/?lang=en
@rsrini7
rsrini7 / MySQL and spring challenges
Last active December 19, 2021 10:07
MySQL and spring challenges
the last packet sent successfully to the server was 0 milliseconds ago. the driver has not received any packets from the server.
add bind-address="0.0.0.0" to my.ini of root of the mysql folder
https://stackoverflow.com/questions/6865538/solving-a-communications-link-failure-with-jdbc-and-mysql
[mysqld]
# set basedir to your installation path
basedir=D:\DevTools\mysql-5.7.36-winx64
# set datadir to the location of your data directory
datadir=D:\DevTools\mysql-5.7.36-winx64\data