Skip to content

Instantly share code, notes, and snippets.

View WarFox's full-sized avatar
🦊
⭐️ ⭐️ ⭐️ ⭐️ ⭐️

Deepu Mohan Puthrote WarFox

🦊
⭐️ ⭐️ ⭐️ ⭐️ ⭐️
View GitHub Profile
@WarFox
WarFox / 0_reuse_code.js
Created April 3, 2014 04:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@WarFox
WarFox / setup-ruby.sh
Created October 4, 2014 21:52
Inital setup of Ruby using rbenv and ruby-build
#!/bin/bash
# https://gorails.com/deploy/ubuntu/14.04
cd
git clone git://github.com/sstephenson/rbenv.git .rbenv &
wait # wait for cloning to finish
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
@WarFox
WarFox / git-author-rewrite.sh
Last active October 14, 2015 09:50 — forked from octocat/git-author-rewrite.sh
Rewrite author information in commits
#!/usr/bin/env bash
git filter-branch --env-filter '
OLD_EMAIL=$1
CORRECT_NAME=$2
CORRECT_EMAIL=$3
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
@WarFox
WarFox / install-kibana-on-multiple-nodes.sh
Last active October 14, 2016 14:46
Install Kibana on multiple remote servers.
#!/usr/bin/env bash
kibana_nodes=(server1 server2 server3)
elasticsearch_url=http://myelasticsearch.com
function install_kibana {
echo "install kibana"
sudo rpm -i https://download.elastic.co/kibana/kibana/kibana-4.6.1-x86_64.rpm
}
@WarFox
WarFox / scala-sbt-project-structure.sh
Last active June 1, 2018 16:15
Script to create Scala SBT project directory structure
#!/usr/bin/env bash
touch build.sbt ; touch README.md; mkdir -p project; touch project/plugins.sbt; mkdir -p src/{main/{scala,resources,java},test/{scala,resources,java}}/
sample gist from emacs gist.el
`SPC g g b`
@WarFox
WarFox / keybase.md
Created November 8, 2017 15:49
keybase verification

Keybase proof

I hereby claim:

  • I am warfox on github.
  • I am warfox (https://keybase.io/warfox) on keybase.
  • I have a public key ASC2qFxzXcPpH1Uu3xyJGINTfjwJ7LqXj5geqOFgZAVW3wo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am warfox on github.
  • I am deepu (https://keybase.io/deepu) on keybase.
  • I have a public key ASCrBcADwFjYASFkJKpn0GksuDURXbLCLf0cFVLohhxcxwo

To claim this, I am signing this object:

@WarFox
WarFox / spark-submit.el
Last active June 5, 2021 17:26
Submit a apache spark job from Emacs. I use this with Spacemacs to run spark jobs locally
;; Change these
(setq project-name "project-name"
main-class-name "canonical.name.of.main.class"
version "0.0.0"
project-root (projectile-project-root)
log4j-configuration (s-lex-format "file://${project-root}/log4j.properties")
config-file (concat project-root "app.conf"))
(defun spark-submit-command(class-name java-options jar-location)
(let ((command (s-lex-format
@WarFox
WarFox / date-sequence.clj
Created August 19, 2019 23:22
Generate infinite date sequences
(ns warfox.date
(:import [java.time LocalDate]
[java.time.temporal ChronoUnit]))
(defn date-seq
"Returns lazy sequence of dates starting from `start`"
[^LocalDate start]
(lazy-seq
(cons start
(date-seq (.plusDays start 1)))))