Skip to content

Instantly share code, notes, and snippets.

View anantajitjg's full-sized avatar

Anantajit JG anantajitjg

View GitHub Profile
@anantajitjg
anantajitjg / blade.json
Last active April 25, 2019 10:30
Blade VS Code snippets for building form
{
"Laravel: Form": {
"prefix": "l:form",
"body": [
"{{ Form::open(['route' => '$1', 'method' => '$2']) }}",
"\t$3",
"{{ Form::close() }}"
]
},
"Laravel: Form Group": {
@anantajitjg
anantajitjg / README.md
Last active March 5, 2019 05:33
Git Commit Message Emojis
  • 🎉 - :tada: Initial commit / 🎉 Initial commit
  • ➕ - :heavy_plus_sign: ADD: <message> / ➕ ADD: <message> / :memo: ADD: <doc related message> / 📝 ADD: <doc related message>
  • 👌 - :ok_hand: UPDATE: <message> / 👌 UPDATE: <message> / :memo: UPDATE: <doc related message> / 📝 UPDATE: <doc related message>
  • 💚 - :green_heart: IMPROVE: <message> / 💚 IMPROVE: <message>
  • 🔧 - :wrench: FIX: <message> / 🔧 FIX: <message>
  • 🚀 - :rocket: RELEASE: <message> / 🚀 RELEASE: <message>
  • ✅ - :white_check_mark: TEST: <message> / ✅ TEST: <message>

Inspired from EMOJI-LOG and gitmoji

@anantajitjg
anantajitjg / docker-compose-wp-old.yml
Last active February 14, 2019 06:37
WordPress Latest and Older version - Docker Compose file
version: "3.3"
services:
mysql:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: root