Compare commits

..

No commits in common. "main" and "articles/graphics-pipeline" have entirely different histories.

3 changed files with 33 additions and 33 deletions

View file

@ -1,35 +1,13 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: deploy_dev name: default
node:
environment: ryali
trigger:
branch:
- main
steps: steps:
- name: build and deploy - name: build_deploy
image: node:latest privileged: true
commands: image: node:latest
- npm install commands:
- npm run build - rm -rf ./node_modules
- rm -rf /dazzle_dev/* - npm install
- mv ./build/* /dazzle_dev/ - npm run build
--- - cp -r ./build/* /dazzle/
kind: pipeline
type: docker
name: deploy_prod
node:
environment: ryali
trigger:
event:
- tag
steps:
- name: build and deploy
image: node:latest
commands:
- npm install
- npm run build
- rm -rf /dazzle/*
- mv ./build/* /dazzle/

View file

@ -13,9 +13,10 @@
Dazzle is an effort to <strong>solidify</strong> my understading of the complex world of Dazzle is an effort to <strong>solidify</strong> my understading of the complex world of
computers. and to give back to the <strong>community</strong> 💖. computers. and to give back to the <strong>community</strong> 💖.
<br />
Please enjoy ;)
</p> </p>
<br />
<h2 style:padding="0">The Graphics Pipeline</h2> <h2 style:padding="0">The Graphics Pipeline</h2>
<Note type="none" flow="true"> <Note type="none" flow="true">
<p> <p>

View file

@ -2,3 +2,24 @@
title: C++ Technical Debt title: C++ Technical Debt
date: "April 20 - 2025" date: "April 20 - 2025"
--- ---
<script>
import Paragraph from '../Paragraph.svelte';
import HorizontalBreak from '../HorizontalBreak.svelte';
</script>
<HorizontalBreak/>
<Paragraph>
Have you ever had your project grow too messy that the idea of **total-rewrite** started haunting your
dreams? In this article I'll teach you how to avoid that state forever :)
</Paragraph>
## Technical Debt
<Paragraph>
What causes such a state?
</Paragraph>