Skip to content

Instantly share code, notes, and snippets.

View anvie's full-sized avatar

Robin Syihab anvie

View GitHub Profile
@anvie
anvie / kanban-task-creation-procedure.md
Created June 1, 2026 03:58
Evonic Kanban Task Creation Procedure
description Kanban task creation standards, read this first before creating kanban task

Kanban Task Creation Procedure

Principles

  1. Stateless agents: Agents working from kanban tasks have no memory of prior conversations. Every task description must be self-contained with the full project context.
  2. Dependencies must be explicit: Always set the dependencies parameter when creating tasks that depend on others.
@anvie
anvie / BENCHMARK-COMPARISON.md
Last active February 10, 2026 13:40
RLM Memory Extraction - LFM 1.2B vs SahabatAI 8B Comparison

RLM Memory Extraction: Model Comparison

LFM 1.2B vs SahabatAI 8B

Generated: 2026-02-10


Executive Summary

@anvie
anvie / BENCHMARK-REPORT-sahabatai-8b.md
Last active February 10, 2026 13:40
RLM Memory Extraction Benchmark - SahabatAI 8B

Recursive Memory Extraction Benchmark Report

Generated: 2026-02-10 18:13:44 Model: csalab/sahabatai1:llama3_instruct_Q4_K_M Total Runs: 27 (27 successful)


Summary Table

@anvie
anvie / BENCHMARK-REPORT-lfm-1.2b.md
Last active February 10, 2026 13:40
RLM Memory Extraction Benchmark - LFM 1.2B

Recursive Memory Extraction Benchmark Report

Generated: 2026-02-10 17:55:42 Model: hf.co/LiquidAI/LFM2.5-1.2B-Instruct-GGUF:latest Total Runs: 27 (27 successful)


Summary Table

@anvie
anvie / BENCHMARK-REPORT-qwen2.5-0.5b.md
Last active February 10, 2026 13:35
RLM Memory Extraction Benchmark - Qwen 2.5 0.5B

Recursive Memory Extraction Benchmark Report

Generated: 2026-02-10 19:37:31 Model: qwen2.5:0.5b Total Runs: 27 (27 successful)


Summary Table

@anvie
anvie / .gitignore
Last active November 29, 2023 07:10
Common .gitignore file
dist/
build/
# Rust
target/
Cargo.lock
*.rs.bk
# Node.js
node_modules/
@anvie
anvie / Dockerfile
Created September 27, 2023 06:26
Base docker image for multiple service in one container settings, contains: cron, python3, and supervisor.
FROM node:bullseye-slim
# Install cron
RUN apt-get update && apt-get install -y cron && which cron && \
rm -rf /etc/cron.*/*
# Install Python3
RUN apt-get install -y python3
# Install Supervisord
@anvie
anvie / nextjs.conf
Created December 22, 2022 15:41
Nginx config for static web build with Nextjs
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
location ~ /.+ {
try_files $uri $uri.html $uri =404;
}
@anvie
anvie / FallbackAndSelfDestructExample.sol
Created August 14, 2022 14:52
Fallback and self destruct Solidity example.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract FallbackAndSelfDestructExample is Ownable {
function destroy(address _addr) external onlyOwner {
address payable addr = payable(address(_addr));
@anvie
anvie / mongodb.service
Last active December 21, 2022 05:50
Systemd untuk mongodb
[Unit]
Description=Mongodb Service Container
After=docker.service
Requires=docker.service
[Service]
Type=simple
Restart=always
RestartSec=5
StartLimitBurst=5