Skip to content

Instantly share code, notes, and snippets.

@devrkd
devrkd / docker-compose.yml
Last active August 1, 2019 15:03
Dockerise kafka and elasticsearch
version: '2'
services:
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka
ports:
- "9092:9092"
@devrkd
devrkd / laravel-tinker-example.sh
Last active June 1, 2021 08:04
Laravel tinker example to set password
Psy Shell v0.9.9 (PHP 7.2.16 — cli) by Justin Hileman
>>> $u = new App\User;
=> App\User {#2930}
>>> $u->all()
=> Illuminate\Database\Eloquent\Collection {#2938
all: [
App\User {#2939
id: 1,
name: "ramesh",
email: "[email protected]",