Skip to content

Instantly share code, notes, and snippets.

View robzlabz's full-sized avatar
🐳
Working from home

Robbyn Rahmandaru robzlabz

🐳
Working from home
  • RobzLabz Software Technology
  • Yogyakarta, Indonesia
View GitHub Profile
# ✅ The superior approach
version: '3.8'
services:
postgres:
image: postgres:15
ports:
- "5432:5432"
volumes:
- ./.temp/postgres:/var/lib/postgresql/data
environment:
# ❌ The traditional (problematic) way
version: '3.8'
services:
postgres:
image: postgres:15
volumes:
- postgres_data:/var/lib/postgresql/data # Where is this exactly?
environment:
POSTGRES_DB: myapp
POSTGRES_USER: admin
@robzlabz
robzlabz / install_laravel_svelte_inertia_vite.md
Last active December 15, 2024 14:47
Laravel + Svelte + Inertia + Vite

Install Laravel + Svelte + Inertia + Vite Right Way

Install Inertia Composer dependency

composer require inertiajs/inertia-laravel

Setup Middleware

php artisan inertia:middleware

@robzlabz
robzlabz / LivewireMedia.php
Created June 2, 2021 05:40
Spatie Media Library with Livewire Trait
<?php
namespace App\Traits;
trait LivewireMedia
{
public function addMediaTo($media, $collectionName)
{
$this->addMedia($media->getRealPath())
->usingName(pathinfo($media->getClientOriginalName(), PATHINFO_BASENAME))
const FunctionalComponent = () => {
React.useEffect(() => {
return () => {
console.log("dadaaaah");
};
}, []);
return <h1>Selamat tinggal</h1>;
};
import React from "react";
// di functional component menggunakan useEffect dengan argumen kedua [] array kosong
const FunctionalComponent = () => {
React.useEffect(() => {
console.log("Aku Dijalankan");
}, []);
return <h1>Halo, Selamat Pagi</h1>;
};
onClick={() =>
this.setState((state) => {
return {
...state,
count: state.count + 1
};
})
}
class CounterComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
count: 0
};
}
render() {
return (
@robzlabz
robzlabz / HandlingStateFunctionalComponent.jsx
Created January 7, 2021 05:36
Handling State di Functional Component
const CounterComponent = () => {
const [count, setCount] = React.useState(0);
return (
<div>
<p>Sudah di click: {count} kali</p>
<button onClick={() => setCount(count + 1)}>Click Saya</button>
</div>
);
};
class Card extends React.Component {
render() {
const { name } = this.props;
return <h1>Hello, { name }</h1>;
}
// atau 👇
render() {
return <h1>Hello, { this.props.name }</h1>;