Skip to content

Instantly share code, notes, and snippets.

View arisng's full-sized avatar

Aris Nguyen arisng

  • Nha Trang, Vietnam
View GitHub Profile
@ruvnet
ruvnet / memory.md
Last active October 30, 2025 21:10
Claude Memory Template

Claude Memory Template

Copy-Paste Instructions for Optimal AI Interaction

1. Core Identity and Objective

I am [Your Name/Role], focused on:

@mahkassem
mahkassem / k8s-commands.md
Last active December 25, 2022 03:22
k8s

K8s

kubeconfig

  • kubectl commands:
# View the current context:
kubectl config current-context
@delibytes
delibytes / react-cheatsheet.md
Last active February 19, 2024 18:06
React & JSX Cheatsheet

React & JSX Cheatsheet

Overview
JSX HTML <div>...</div>
JSX Component <Component property={javascript} />
<Component property='string' />
JSX Component with Children <Component>{children}</Component>
reference: props.children
Escaping JavaScript {...}
require statements const React = require('react');
const ReactDOM = require('react-dom');
npm modules react, react-dom