Compare commits
No commits in common. "main" and "articles/graphics-pipeline" have entirely different histories.
main
...
articles/g
3 changed files with 33 additions and 33 deletions
40
.drone.yml
40
.drone.yml
|
@ -1,35 +1,13 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: deploy_dev
|
||||
node:
|
||||
environment: ryali
|
||||
trigger:
|
||||
branch:
|
||||
- main
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build and deploy
|
||||
image: node:latest
|
||||
commands:
|
||||
- npm install
|
||||
- npm run build
|
||||
- rm -rf /dazzle_dev/*
|
||||
- mv ./build/* /dazzle_dev/
|
||||
---
|
||||
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/
|
||||
- name: build_deploy
|
||||
privileged: true
|
||||
image: node:latest
|
||||
commands:
|
||||
- rm -rf ./node_modules
|
||||
- npm install
|
||||
- npm run build
|
||||
- cp -r ./build/* /dazzle/
|
||||
|
|
|
@ -13,9 +13,10 @@
|
|||
|
||||
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> 💖.
|
||||
<br />
|
||||
Please enjoy ;)
|
||||
</p>
|
||||
|
||||
<br />
|
||||
<h2 style:padding="0">The Graphics Pipeline</h2>
|
||||
<Note type="none" flow="true">
|
||||
<p>
|
||||
|
|
|
@ -2,3 +2,24 @@
|
|||
title: C++ Technical Debt
|
||||
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>
|
||||
|
|
Loading…
Add table
Reference in a new issue