Skip to content

Instantly share code, notes, and snippets.

View lktslionel's full-sized avatar
👨‍💻

Lionel LONKAP TSAMBA lktslionel

👨‍💻
View GitHub Profile
@progrium
progrium / Dockerfile
Last active September 25, 2025 10:23
Minimal VSCode for Web deployment. This includes a minimal Dockerfile to build VSCode and then an HTML file to run it.
FROM node:22-alpine
ARG VSCODE_VERSION=1.103.2
RUN apk add -u krb5-dev libx11-dev libxkbfile-dev libsecret-dev git build-base python3
RUN git clone --depth 1 https://github.com/microsoft/vscode.git -b $VSCODE_VERSION
WORKDIR /vscode
RUN npm i
RUN npm run gulp vscode-web-min
@lktslionel
lktslionel / naming-conventions-aws-ssm.md
Last active November 12, 2025 14:49
Naming Convention for AWS SSM Parameter Store

Moi je partirait sur quelque chose du style: <namespace>/[<context>]/<component>/<module>/<item-path>/<item-property>

Si on part sur ça, ça signifierait qu'on ait par correspondance:

  • namespace: saws
  • context: shared | common | xxxxx
  • component: network
  • item-path: ${VpcName}-${Stage}/subnet/${SubnetName}-a
  • item-property : id
color:
interactive-color:
background-color:
text-color:
font:
family:
size:
line-height:
typography:
border:
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active December 6, 2025 07:50
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@StephanHoyer
StephanHoyer / gist:bddccd9e159828867d2a
Last active March 29, 2022 11:46
Isomorphic applications with mithril

Attention

This post described how to create an application with mithril 0.2.x. Now that ver 1.0 is out, some things are a little differnent.

The example is updated with the current version of mithril, though.

Isomorphic applications with mithril