Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand All @@ -28,7 +28,7 @@ jobs:
npm run build

- name: Upload Artifacts
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: 'dist/'

Expand All @@ -47,4 +47,4 @@ jobs:
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
Binary file added src/assets/projects/tiny-creature/image1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/projects/tiny-creature/image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/projects/tiny-creature/image3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/projects/tiny-creature/image4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/projects/tiny-creature/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Hero/3D/Planet.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

let presets = ['forest', 'beach', 'snowForest'];

let planet = new Planet(planetPresets['snowForest']);
let planet = new Planet(planetPresets['forest']);
let planetMesh = suspend(planet.create());

export const redo = async () => {
Expand Down
6 changes: 6 additions & 0 deletions src/components/Learning/Learning.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
}

const learnings: Learning[] = [
{
title: "local first and crdts",
description:
"working with roomy.chat and the stuff its built on.",
date: "2025-04",
},
{
title: "bluesky api and at protocol",
description:
Expand Down
34 changes: 34 additions & 0 deletions src/content/projects/tiny-creature.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: 'tiny creature'
date: '2025-02-28'
featured: true

thumbnail: '/src/assets/projects/tiny-creature/thumbnail.png'
video: '/src/assets/projects/tiny-creature/video-thumbnail.mp4'

aspect: 'aspect-[9/10]'
projectUrl: 'https://flo-bit.dev/tiny-creature/'
codeUrl: 'https://github.com/flo-bit/tiny-creature'

tags:
- 'svelte'
- '3d'
- 'threlte'

mainTags:
- 'threlte'
- 'prototype'

images:
- '/src/assets/projects/tiny-creature/image1.png'
- '/src/assets/projects/tiny-creature/image2.png'
- '/src/assets/projects/tiny-creature/image3.png'
- '/src/assets/projects/tiny-creature/image4.png'
---
import ProjectGrid from "$components/ProjectPages/ProjectGrid.astro";

<ProjectGrid project={frontmatter}>
My submission for the [#16 threejs-journey challenge](https://threejs-journey.com/challenges/016-tamagotchi).

Playing around a bit with render targets, mixing three.js and pixi.js and TSL.
</ProjectGrid>