Skip to content

Instantly share code, notes, and snippets.

View wayanjimmy's full-sized avatar
🏠
Working from home

Wayan jimmy wayanjimmy

🏠
Working from home
View GitHub Profile
{
"providers": {
"cpa": {
"baseUrl": "http://127.0.0.1:8317/v1",
"apiKey": "CLI_PROXY_API_KEY",
"api": "openai-completions",
"models": [
{
"id": "step-3.5-flash",
"name": "StepFun Step 3.5 Flash (Free)",
@wayanjimmy
wayanjimmy / memos-api-documentation.md
Created February 18, 2026 01:16
Comprehensive Memos REST API Documentation - How to interact with the usememos/memos API
@wayanjimmy
wayanjimmy / dozzle.container
Created November 14, 2024 01:05
Running Dozzle with Podman Quadlet
[Container]
Image=docker.io/amir20/dozzle:v8.4.3
PublishPort=18080:8080
Volume=/run/user/1000/podman/podman.sock:/var/run/docker.sock
Environment=DOZZLE_REMOTE_AGENT=
[Service]
Restart=always
[Install]
@wayanjimmy
wayanjimmy / mutagen.yml
Created May 30, 2024 13:13
mutagen project example
forward:
tilt:
source: "tcp:localhost:10350"
destination: "ser4:tcp:localhost:10350"
pathfinder:
source: "tcp:localhost:3000"
destination: "ser4:tcp:localhost:3000"
elastic:
source: "tcp:localhost:9200"
destination: "ser4:tcp:localhost:9200"
@wayanjimmy
wayanjimmy / settings.json
Last active January 21, 2024 04:54
Vscode Settings
{
"workbench.colorTheme": "Default Light Modern",
"remote.SSH.remotePlatform": {
"ser4": "linux"
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-p>"
],
@wayanjimmy
wayanjimmy / Dockerfile
Created November 13, 2023 03:24
Temporalite Docker Image
FROM curlimages/curl as builder
WORKDIR /
RUN curl -sSf https://temporal.download/cli.sh | sh
FROM gcr.io/distroless/base-debian11
COPY --from=builder /home/curl_user/.temporalio/bin/temporal /bin/temporal
EXPOSE 7233
EXPOSE 8233
@wayanjimmy
wayanjimmy / Dockerfile
Created September 2, 2023 02:00
Laravel Unit Docker Example
FROM unit:1.31.0-php8.2
EXPOSE 8080
WORKDIR /var/www/html
COPY . .
COPY config.json /docker-entrypoint.d/config.json
@wayanjimmy
wayanjimmy / cat_breeds.json
Last active January 15, 2023 12:00
Cat Breeds
[
{
"id": "1",
"name": "Garfield",
"breed": "Balinese",
"age": 7,
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eget. "
},
{
"id": "2",
@wayanjimmy
wayanjimmy / gist:a853ad89fc1fd46652ba4b6d283e3195
Last active December 10, 2022 01:34
install-nuc-server-1.sh
nix-env -iA \
nixpkgs.ansible \
nixpkgs.direnv \
nixpkgs.ripgrep \
nixpkgs.bat \
nixpkgs.tmux
@wayanjimmy
wayanjimmy / git-worktree.md
Last active July 23, 2020 04:01
git worktree

Git worktree

Apa itu Git worktree?

  • git worktree adalah sebuah fitur untuk mengatur beberapa worktree dalam 1 project git

  • apa itu worktree?

    • isi keseluruhan project git anda adalah worktree
  • mengapa memerlukan beberapa worktree dalam 1 project?