Skip to content

Instantly share code, notes, and snippets.

View xshyamx's full-sized avatar
🎯
Life before death, strength before weakness, journey before destination

shyam xshyamx

🎯
Life before death, strength before weakness, journey before destination
View GitHub Profile
@xshyamx
xshyamx / image.resize.in.github.flavored.markdown.md
Last active March 7, 2017 10:35 — forked from uupaa/image.resize.in.github.flavored.markdown.md
image resize in github flavored markdown.

Image source

https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png

Try resize it!

  • ![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png | width=50)
@xshyamx
xshyamx / gav.sh
Created January 22, 2018 05:17
Shell script to generate a maven pom.xml from a list of jars
#!/bin/sh
lib_dir="$1"
if [ "$lib_dir" == "" ]; then
echo Please specifiy the directory for the jars
exit 1
fi
cat <<EOF | tee pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
@xshyamx
xshyamx / tmux-cheatsheet.markdown
Created February 15, 2018 05:06 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@xshyamx
xshyamx / Makefile
Created December 2, 2023 03:52
simple-plantuml-mode elpaca bugfix
.PHONY: emacs clean
EMACS ?= emacs
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
mkfile_dir := $(dir $(mkfile_path))
emacs:
$(EMACS) --init-directory=$(mkfile_dir)
clean:
rm -fr eln-cache elpaca auto-save-list *~ *.png