Skip to content

Instantly share code, notes, and snippets.

View tvprasad's full-sized avatar
💭
I may be slow to respond.

Prasad Thiriveedi tvprasad

💭
I may be slow to respond.
View GitHub Profile
@pavgup
pavgup / frontendDevlopmentBookmarks.md
Last active November 1, 2019 13:03 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@robsonke
robsonke / checkDockerDisks.sh
Last active February 18, 2024 12:44
This Bash script will loop through all running docker containers on a host and list the disk usage per mount. In case it's breaching the 65%, it will email you.
#!/bin/bash
# get all running docker container names
containers=$(sudo docker ps | awk '{if(NR>1) print $NF}')
host=$(hostname)
# loop through all containers
for container in $containers
do
echo "Container: $container"
@pavgup
pavgup / commands.sh
Last active October 21, 2023 20:29
Install Python 2.7.13 on Debian Wheezy
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz
sudo tar -xzf Python-2.7.13.tgz -C /usr/src
cd /usr/src/Python-2.7.3
sudo ./configure
sudo make
sudo make altinstall
@deepu105
deepu105 / jhipster-demo-registry.jdl
Last active September 14, 2019 01:25
Devoxx MA JHipster demo JDL
application {
config {
baseName store
applicationType gateway
packageName com.jhipster.demo.store
serviceDiscoveryType eureka
authenticationType jwt
prodDatabaseType mysql
cacheProvider hazelcast
buildTool gradle
@deepu105
deepu105 / VSCode-extensions
Created June 16, 2019 14:49
VSCode plugins I use
code --install-extension QassimFarid.ejs-language-support
code --install-extension SirTori.indenticator
code --install-extension TimonVS.ReactSnippetsStandard
code --install-extension TwentyChung.jsx
code --install-extension abusaidm.html-snippets
code --install-extension asvetliakov.move-imports
code --install-extension aws-scripting-guy.cform
code --install-extension bierner.markdown-preview-github-styles
code --install-extension ccitiriga.TSMethodCreator
code --install-extension christian-kohler.npm-intellisense