Weekly 25 .. you are married

This commit is contained in:
Michal Vanko 2022-06-26 22:39:20 +02:00
parent d54681d9ed
commit b5a96ee0af
6 changed files with 650 additions and 430 deletions

View File

@ -0,0 +1,42 @@
---
layout: blog
title: "Our attempt at Rusty game jam - Weekly #25-2022"
published: true
date: 2022-06-26T20:02:47.419Z
tags:
- News
- Weekly
- Development
notes: ""
---
Long time no see!
## We are married
![Our wedding day](/images/uploads/img_2591.jpg "Our wedding day")
I noticed that I haven't even posted about our wedding day.
It was the best day of my life. Very beautiful day. I cried almost the whole day because it was so beautiful. I love my wife!
## Rusty game jam
This week I've attended a [Rusty game jam #2](https://itch.io/jam/rusty-jam-2). It was a great experience for me as I have been able to **dive deeper into Rust and [bevy game-development engine](https://bevyengine.org/)**. Big thanks to [@silen-z](https://github.com/silen-z/), who joined my team and helped me get going at the start. We **didn't manage to finish the game** in time. As we only had a week and we also didn't code each day of the week. We have only been able to get some collision mechanics and map creation working. But I am very proud anyway. You can [check the source code for the game on my GitHub](https://github.com/michalvankodev/egg-fetcher/) and also [download binaries to try the game out](https://github.com/michalvankodev/egg-fetcher/releases/tag/v1.1) on any platform. Thanks to [@septum](https://github.com/septum) for providing [a good boilerplate for a bevy project](https://github.com/septum/rusty_jam_bevy_template). The whole process was **broadcasted on my stream**. I am very thankful for anyone who participated.
![Egg fetcher game preview](/images/uploads/screenshot-from-2022-06-26-22-37-16.png "Egg fetcher game preview")
## What's up with the weeklys
I have to admit something. I was not inspired or motivated to write weeklys for the last two months. For that, I feel a little bumped as there were many good thoughts worth sharing. I was not very comfortable writing as the last month was very tough. During that time I was focused on inner development and figuring out how my brain responds to different stimuli. I've been able to find a new project to work on. The onboarding story was one of the hardest I went through. I managed to move on and stop thinking about what could've I done better in the past and focus more on what can I do better now.
## Picks
I should have at least 10 recommendations, but I haven't accumulated any in my notes.
But here are some podcasts that made my days better:
* [Podcast Nevyhoreni (not burnt out)](https://open.spotify.com/show/0SvQ7orsdxIFhfEgEzcZuF) by Forbes Slovensko
* Definitively [check out Primeagen's last few videos](https://www.youtube.com/c/ThePrimeagen). He inspires me so much. Doesn't have a problem talking about his failures openly on the internet.
Another good resource I've been able to find is another Rust framework for building Web applications called [Sycamore](https://sycamore-rs.netlify.app/).
That's it. Let's jump into another week inspired after a very successful one and my plan is to get better with Rust. I will try to find a new project to work on. Something smaller that could improve my workflow.

990
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -16,9 +16,9 @@
"svgstore": "svgstore -o static/build/icons-sprite.svg src/svg/**.svg"
},
"dependencies": {
"@vanilla-extract/css": "^1.7.0",
"@vanilla-extract/sprinkles": "^1.4.0",
"@vanilla-extract/vite-plugin": "^3.1.4",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/sprinkles": "^1.4.1",
"@vanilla-extract/vite-plugin": "^3.2.1",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"feed": "^4.2.2",
@ -30,26 +30,26 @@
"ramda": "^0.28.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.29",
"@sveltejs/kit": "^1.0.0-next.316",
"@sveltejs/adapter-static": "^1.0.0-next.34",
"@sveltejs/kit": "^1.0.0-next.354",
"@tsconfig/svelte": "^3.0.0",
"@types/classnames": "^2.3.1",
"@types/node": "^16.11.26",
"@types/ramda": "^0.28.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"@types/node": "^18.0.0",
"@types/ramda": "^0.28.14",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"prettier": "~2.6.2",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "~2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.47.0",
"svelte-preprocess": "^4.10.6",
"svelte": "^3.48.0",
"svelte-preprocess": "^4.10.7",
"svgstore-cli": "^2.0.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vitest": "^0.9.3",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vitest": "^0.16.0",
"vitest-svelte-kit": "^0.0.6"
}
}

View File

@ -20,10 +20,10 @@
<link rel="icon" type="image/png" href="/m-logo-192.png" />
<!-- This contains the contents of the <svelte:head> component, if
the current page has one -->
%svelte.head%
%sveltekit.head%
</head>
<body>
%svelte.body%
%sveltekit.body%
</body>
</html>

BIN
static/images/uploads/img_2591.jpg (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.