Skip to content

Instantly share code, notes, and snippets.

View Timures's full-sized avatar
🎯
Focusing

Timur Yessentayev Timures

🎯
Focusing
View GitHub Profile
@Timures
Timures / Dockerfile
Created October 21, 2024 16:32 — forked from Maxim-Kolmogorov/Dockerfile
Nuxt 3 Docker example
FROM node:18.16.0
ENV APP_ROOT /web
WORKDIR ${APP_ROOT}
ADD . ${APP_ROOT}
RUN npm ci
RUN npm run build
@Timures
Timures / index.htm
Created October 15, 2018 15:12 — forked from AllThingsSmitty/index.htm
Simple responsive table in CSS (no JS)
<table>
<thead>
<tr>
<th>Payment</th>
<th>Issue Date</th>
<th>Amount</th>
<th>Period</th>
</tr>
</thead>
<tbody>