Skip to content

Instantly share code, notes, and snippets.

View sujitrulz's full-sized avatar
🎯
Focusing

Sujit mourya sujitrulz

🎯
Focusing
View GitHub Profile
@sujitrulz
sujitrulz / apache_solr_4_0_on_ubuntu_12_04.md
Created April 27, 2017 06:15 — forked from milanchheda/apache_solr_4_0_on_ubuntu_12_04.md
Installation of Apache solr 4.0 on Ubuntu 12.04 using Vagrant

Installation of Apache solr 4.0 on Ubuntu 12.04:

vagrant init hashicorp/precise64; vagrant up --provider virtualbox
vagrant up
vagrant ssh

Install Tomcat 6:

apt-get update
  • 🎨 when improving the format/structure of the code
  • 🚀 when improving performance
  • ✏️ when writing docs
  • 💡 new idea
  • 🚧 work in progress
  • ➕ when adding feature
  • ➖ when removing feature
  • 🔈 when adding logging
  • 🔇 when reducing logging
  • 🐛 when fixing a bug
@sujitrulz
sujitrulz / Vagrantfile
Created September 14, 2016 14:57 — forked from davisford/Vagrantfile
Vagrantfile with postgres
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
echo "-------------------- updating package lists"
apt-get update
@sujitrulz
sujitrulz / Artisan.php
Created August 31, 2016 10:35
Laravel Cheat Sheet
php artisan --help OR -h
php artisan --quiet OR -q
php artisan --version OR -V
php artisan --no-interaction OR -n
php artisan --ansi
php artisan --no-ansi
php artisan --env
// -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
php artisan --verbose