Skip to content

Instantly share code, notes, and snippets.

View ricoputrap's full-sized avatar
💭
Actively looking for freelance projects

Rico Putra ricoputrap

💭
Actively looking for freelance projects
View GitHub Profile
@ricoputrap
ricoputrap / gist:35dc61924c05970011971e4c52680e77
Created November 27, 2023 11:20 — forked from levelsio/gist:5bc87fd1b1ffbf4a705047bebd9b4790
Secret of Monkey Island: Amsterdam (by @levelsio) or how to create your own ChatGPT image+text-based adventure game
2023-11-27 MIT LICENSE
Here's the open source version of my ChatGPT game MonkeyIslandAmsterdam.com.
It's an unofficial image+text-based adventure game edition of Monkey Island in Amsterdam, my home town.
Please use it however you want. It'd be nice to see more ChatGPT-based games appear from this.
It's much easier than you think and you'll be shocked by how relatively well it works with little work.
@ricoputrap
ricoputrap / CHANGELOG.md
Created May 4, 2023 07:39 — forked from juampynr/CHANGELOG.md
Sample CHANGELOG

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased] - yyyy-mm-dd

Here we write upgrading notes for brands. It's a team effort to make them as

@ricoputrap
ricoputrap / rfc-template.md
Created April 18, 2023 12:42 — forked from michaelcurry/rfc-template.md
RFC Template [Markdown]

RFC Template

Feature Name: (fill me in with a unique identity, myawesomefeature)

Type: (feature, enhancement)

Start Date: (fill me in with today's date, YYYY-MM-DD)

Author: (your names)

@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@500;700&display=swap');
/* css variables untuk warna */
:root {
--color-primary-1: #5BA4A4;
--color-primary-2: #7B8E8E;
--color-primary-3: #2C3A3A;
--color-gray-1: #EFFAFA;
--color-gray-2: #EEF6F6;
}
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@500;700&display=swap');
body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Spartan', sans-serif; /* jenis font */
font-size: 15px; /* ukuran font */
}