sprig-dino emoji

Posts tagged with :sprig-dino:

TheTridentGuy
@TheTridentGuy0
Recreated the classic Chrome dino game for #sprig:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/862baa4c-2e20-4d38-a505-c97892fe5d40-dino-game.png
Cai
@Cai1
Sprig poster
https://scrapbook-into-the-redwoods.s3.amazonaws.com/4312cdcb-7299-4839-ba9a-8f58f6e8296f-img_2566.jpghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/31446676-8352-4926-b4e9-5c95ab447c1e-img_2565.jpghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/8cd3c171-0c65-455b-b709-8be2540298a9-img_2567.jpg
dav
@dav0
Day 10 of #10-days-in-public github release First of all, I want people to be able to play to game on their sprig without having to compile everything, so I created a github workflow to automate compiling the UF2. This was my first time creating a github release too! Next, I optimized the web version of the game by throttling performance because the game runs way too fast. (Darn it why can't rust be less blazingly fast!) Specifically, I had the renderer secretly draw 200 extra cubes just to slow the game down. More importantly, I added a flashy menu screen followed by a camera panning animation similar to the one in the actual subway surfers. (It doesn't actually look that great but I love it). And that's it! That was 10 days! WOOHOO!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/2057acf9-2d6f-4dff-9531-8f551c9c81a5-web.gifhttps://scrapbook-into-the-redwoods.s3.amazonaws.com/3a3c07e1-640f-4f9f-99cc-e4cb93d611ad-start.gifhttps://imgutil.s3.us-east-2.amazonaws.com/6b9497410588a12477eca893ce942b8a17bd4bfe49e2944b42def9cf53daa08d/9f7b8399-a43e-48ff-a118-98ea808c2772.png
10daysinpublic emoji
sprig-dino emoji
dav
@dav0
Day 9 of #10-days-in-public Loads of progress on the game today. Yesterday, I wanted to implement multicore rendering, but I was very disappointed to find that the sprig's rp2040 doesn't have an efficient way to pass messages between cores for rendering. Because of this, even if it was implemented, the performance improvement would probably be negligible. After cutting my losses, I actually began to play test my game (yay). I changed the colors of the game to make it less jarring to stare at and added some speed progression. Now, the game gradually increases in speed, and when you die, the game actually ends. I also spent an hour trying to get the web version of the game up. My highest score while was 12.5K. If you would like to attempt to beat my score, you can now play a web version <https://davnotdev.github.io/subwaysprigsters|here>, or if you have a sprig, you can install subway sprigsters from the github here._
https://scrapbook-into-the-redwoods.s3.amazonaws.com/7f81a75f-0e4e-4eb3-a211-76dfa5fc9e86-high_score.jpeghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/bd3db5fd-cfa0-4f37-bfcb-3a5ca20ca17f-sprig.gifhttps://imgutil.s3.us-east-2.amazonaws.com/2a46e50133b96b45fa04ee060b7df508652612a555a0832df46104a719f8c136/50fd8535-f93f-412a-a7ca-0484f48cb28e.png
dav
@dav0
Day 6 of #10-days-in-public You know how subway surfers is about... like... subway surfing, well that's what I implemented today. Most of the logic fine, but there are a slew of bugs that come from the fact that I don't use AABB collision detection. For example, its trivially easy to clip through trains. Also, there's a strange bug now where *whenever the game feels like it, collisions for certain obstacles simply won't work. I've never missed Unity/Godot more๐Ÿ˜ญ Anyway, I will be reworking the collision detection tomorrow, but here's some more sprig game footage for today. Shout out to my camera setup.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/fe0abac6-395f-4a5d-8b36-99646dd0b45a-cam.jpeghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/58049c0a-e251-4a70-ab66-482cda06ac1c-sprig.gif
dav
@dav0
Day 5 of #10-days-in-public A bit late tonight (shame), but got some good work done. First of all, I fixed the deterministic rng problem by having a seed screen that randomizes the seed using user inputs and time. I also implemented the obstacle rendering optimization I talked about on day 3. However, with all of this, there's one big problem! Text rendering and 3D rendering work separately. 3D rendering is done using a rasterizer that writes to a framebuffer. This framebuffer is then blit to the screen every frame. Text rendering is directly blitted to the screen directly using embedded_graphics . This causes major flickering when the framebuffer overlaps the text (only on hardware). The solution in my mind is to keep a small area of the screen for text and the rest for the framebuffer. In other words, I'm going to sweep this problem under the rug. Anyway, I'm very happy with how everything's turned out so far. Even with completely disregarding embedded performance, it runs just fine on hardware :tw_smile:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/72cea67d-a4fc-4d66-b877-24af9adb761b-rng_screen.gifhttps://scrapbook-into-the-redwoods.s3.amazonaws.com/410c1f99-6c79-44ec-89d9-88a09af9b820-o.gif
wom emoji
10daysinpublic emoji
hardware emoji
sprig-dino emoji
zrl
@zrl0
Day 3 of #10-days-in-public Today I had two big accomplishments. My goal is to program a receipt printer to print a receipt every time someone wins a Sprig, OnBoard, or Blot grant onto my desk so I can read about their project. The first accomplishment is that I added code to find OnBoard pull requests from GitHub usernames, download the project descriptions, and use tracespace to render SVG board previews onto the receipts. See below for a screenshot of what this looks like (itโ€™s a screenshot of a subset of a PDF that is sent to the receipt printer - this is all publicly accessible data from the OnBoard repo). The second accomplishment is that I flashed a Raspberry Pi to start getting this thing to run headless! This is my first โ€œrealโ€ project using Python, and Iโ€™m starting to feel a lot more comfortable using the language - which has felt awesome! I am so inspired reading about everyone elseโ€™s projects! github.com/hackclub/hack-club-grants-receipt-printer/commit/0030c42c7c0909a34ccb7ac2709b2f03ff374845
https://scrapbook-into-the-redwoods.s3.amazonaws.com/9e650419-7d0b-4276-a761-e61b56e47996-screenshot_2024-02-17_at_10.45.10_pm.pnghttps://imgutil.s3.us-east-2.amazonaws.com/e22d1273e4914e07fb817d8a36ef7d1e83dce24362bdef483d24eb7a51322e7e/4d292204-e60d-4478-8489-3d0344678049.png
sprig-dino emoji
wom emoji
goose-honk-technologist emoji
awesome emoji
hackclub emoji
neutral_ping_sock emoji
github emoji
pcb emoji
python emoji
10daysinpublic emoji
dav
@dav0
Day 3 of #10-days-in-public Experimented w/ the obstacle spawning logic in a way that 1. makes sense and 2. doesn't make the game impossible. The result is worse than what I had yesterday, but hey its progress! Added trains as well, but currently each cube is drawn individually which terrible for performance. Unfortunately, the sprig can only handle ~18 cubes with my crappy rasterizer. Ideally, I should treat each train as its own cube rather than a serious of cubes like I do now. Not only would be it more performant but also easier to reason about when it comes to spawning logic. But anyway, don't feel like working anymore so that's for tomorrow me :p
https://scrapbook-into-the-redwoods.s3.amazonaws.com/6d35cf59-900b-485c-a235-3579a37556e1-trains.gif
Tom
@Tom0
It's real
https://scrapbook-into-the-redwoods.s3.amazonaws.com/27737de1-cfce-4552-8662-7ab88113c442-img_20240213_150221.jpg
wom emoji
sprig-dino emoji
jdogcoder
@jdogcoder0
https://scrapbook-into-the-redwoods.s3.amazonaws.com/aee12e21-9ca2-4843-bfd8-3629c1e2aeab-cleanshot_2024-02-06_at_12.43.16_2x.pnghttps://imgutil.s3.us-east-2.amazonaws.com/e05c48f1970288c4d4291e878cb3f688814742a78d194a8c78c56075b82be43e/aeb64b4c-b0ec-4e2d-a914-4ba1b2a426d6.png
Kieran
@Kieran0
applied for #sprig review position!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/603570c4-4919-4d3c-b3f6-4c32acf83940-17787.png
BrightLi
@BrightLi0
got a sprig yeseterdy!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/4363c562-0fb8-4eab-8d74-3e012b1ee960-img_20240124_144342.jpeg
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Iโ€™m going to keep scrapbooking for my #100-days goals from last yearโ€ฆI think it actually helped :sprig-dino:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/cd24655f-e25d-4ac6-9fd4-9b236457cb67-img_1497.jpg
sprig-dino emoji
Doruk
@Doruk0
making myself install dependencies of react.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/623ac762-c7ea-484c-a66a-c51fee6f4e62-image.png
sprig-dino emoji
leom
@leom0
Some photos from recent times, including a "Dino Mart". Also last #100-days & #100-gord!!!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/d3a44173-1188-4e13-a9c8-dda37647d2b7-9528dc5d-e955-4f12-9e13-79f710083f38_1_105_c.jpeghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/f57a0215-4452-4308-9e7a-af072d55a9dd-fa29110c-eb9f-48e1-a7c1-59cb4af05771_1_105_c.jpeg
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
YAY! 100 day goal complete!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/cdffbc75-22be-42d9-a983-96545590fd45-file.jpg
angry-duo emoji
wom emoji
yay emoji
sprig-dino emoji
sprigdino emoji
duo emoji
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
100 day goal that I will actually complete ๐Ÿฅณ
https://scrapbook-into-the-redwoods.s3.amazonaws.com/396df2ad-d844-4b59-acbe-13c6188a0329-file.jpg
sprigdino emoji
duo emoji
yay emoji
sprig-dino emoji
leom
@leom0
Found an interesting book today (published 1984)
https://scrapbook-into-the-redwoods.s3.amazonaws.com/9f81e885-402b-4115-a0b2-48682e47aa9a-image.png
Kieran
@Kieran0
potential #sprig project
https://scrapbook-into-the-redwoods.s3.amazonaws.com/2a60541d-7384-4d4c-8f7a-c1cf3e73b8a9-image.png
leom
@leom0
Made a few minor but well past due updates to my solar website. Also upgraded some of the hardware so I can view the battery and solar panel stats on my phone! (not pictured)
https://scrapbook-into-the-redwoods.s3.amazonaws.com/3f8f434c-feb0-49f9-8edb-40cb659b9fa6-image.png
sprig-dino emoji
hardware emoji
zrl
@zrl0
check out what Iโ€™ve been working on tonight! receipt printer for every time someone wins a sprig or onboard grant!
ultrafastparrot emoji
pcb emoji
sprig-dino emoji
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Made a chocolate espresso torte that we ate before I could get a full picโ€ฆ this is definitely not one of my 100-day goals but those arenโ€™t going to happen lol
https://scrapbook-into-the-redwoods.s3.amazonaws.com/a7c4b8ef-c38a-46d3-b43a-6c3c98478397-img_1362.jpg
ShawnMalluwa-U04BBP8H9FA
@ShawnMalluwa-U04BBP8H9FA0
I BUILT SPADE (well a fork of spade) W/ @DevIos & @polypixeldev in #sdsprig! I forgot to take a picture so instead here's a picture of the #human-sized-microwave-oven
https://scrapbook-into-the-redwoods.s3.amazonaws.com/fd2fe7f5-9638-49ec-9abc-aef42d55c484-img20231219175623.jpg
micronesiaparrot emoji
microwave emoji
sprig-dino emoji
leom
@leom0
Too worried to open my email
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f01df520-9637-4b52-b123-9e9ad1f10a65-image.png
sprig-dino emoji
goodmorning emoji
BrightLi
@BrightLi0
working on a sprig solitare game!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/41cc3cf1-d836-4d91-b537-e847a306a1ae-screen_shot_2023-12-18_at_10.05.48_am.png
alialiwa2005
@alialiwa20050
Playing my Sprig :sprig-dino: game, Friendly Figures :friendlyfigures: Good times :dinosaur_waving: Play :tw_video_game: Friendly Figures :friendlyfigures: on Sprig :verified-sprig: sprig.hackclub.com/gallery/Friendly_Figures
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f55ce5ce-b740-4e52-9b80-e9a1841ed6cf-videocapture_20231215-225250.jpg
leom
@leom0
Watched an interesting video with interesting captions
https://scrapbook-into-the-redwoods.s3.amazonaws.com/0d3e6c8b-a5b8-4276-b5c2-ee78cd4737d7-image.png
sprig-dino emoji
ajs2
@ajs20
Finally, back on the scrapbook grind. Iโ€™ve been working on CADvent, which is a challenge someone on Chief Delphi has been putting on, to brush up on my :f360: skills. Here are my designs for the first four days! (Plus a bonus dog photo because yโ€™all deserve it :blobhaj_heart:)
https://scrapbook-into-the-redwoods.s3.amazonaws.com/63615d46-67ce-4e46-890f-a0112713bca4-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/3815bbe1-ed6a-4616-88e0-299700f401ae-dogs.jpeghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/d26b9e21-13a0-46c8-96ba-e4632cb018fc-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/42376ba7-ccb3-474a-ae2f-4b1db3271942-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/ee85f6d7-fbfc-4d53-9f68-d17d7b7c5e58-image.png
Aram
@Aram0
Got some Hack Club Stickers Today!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f608ff43-cb1b-41cf-b031-a0f20ac59db2-img_0414.jpg
Aram
@Aram0
Helped wire up some lights for school musical! Weโ€™re putting up blue light to help techs see better!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/45aa32a9-2912-4aa2-acd9-3fbe735b4c42-img_0397.jpg
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Welp guess Iโ€™m not getting a 100 in the classโ€ฆ
https://scrapbook-into-the-redwoods.s3.amazonaws.com/38c6ade1-9c04-4b87-bc6e-70f1ea24224c-img_1318.jpg
sprigdino emoji
sprig-dino emoji
leom
@leom0
Was gone here for the past week! #100-gord
https://scrapbook-into-the-redwoods.s3.amazonaws.com/4582cbe3-4c49-4dd7-adf1-3c25004767ba-047c2bba-32ea-4092-ab66-1fe9f653e0b6_1_201_a.jpeghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/dd096531-1cb9-4f93-9783-26c1af276d78-04618227-7e84-449e-986f-4fb5f281908e_1_201_a.jpeg
Aram
@Aram0
:sprig-dino: Ship! Made my first sprig game (after way too much procrastination) and got it approved! It's a maze game between two people to get through mazes and eventually to the end!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/16be6cec-b7e5-4e6b-b064-b3e5cc881317-screenshot_2023-12-08_at_5.44.53___pm.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/eadb70f2-58ed-4fd2-8cca-5464f659b0a3-screenshot_2023-12-08_at_5.44.46___pm.png
Aram
@Aram0
Most kids: plays games during class Me: makes games during class :sprig-dino:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/ed9ca601-7f21-4358-9170-4bc044d4f6bb-img_0380.jpg
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Last assignment before the final for this semester !!!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/ff938127-9863-4c59-863e-0e168d995e38-img_1308.jpg
sprig-dino emoji
Sean
@Sean0
This felt good lol (I purged a bunch of old git repositories) I managed to shrink from 129 repos to 34 repositories! It might of somewhat affected my contributions graph, but that doesn't really bother me too much Go Gord!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/c87c0e36-5a76-4907-8893-b1d0bad7c3d4-image.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/bcaf9099-74eb-4525-8387-a738f8cee4a8-image.png
sprig-dino emoji
Marios
@Marios0
Well well well, what do we have here, TAURI! I've started using tauri again (and rust!) and its honestly super great. My end goal for now is to try to run sinerider inside of a tauri application and see if the performance is better
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f19b8c29-f86b-4460-8a40-772b9cd5cb75-image.png
rustlang emoji
sprig-dino emoji
ultrafastparrot emoji
Sean
@Sean0
Let's get that scrapbook train rolling again (I got side-tracked by SO MANY THINGS) Today I'm working out how to use to-do lists for daily planning. and then I'll be working out what I'm going to do for Secret Santa, Go Gord!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/adb1ed22-9a3a-4330-a596-7eb633ee17b1-image.png
sprig-dino emoji
leom
@leom0
Did a speech here today #100-days #100-gord
https://scrapbook-into-the-redwoods.s3.amazonaws.com/5905c59a-d4ca-460d-9437-1ee57fc53f8c-img_3439.png
Doruk
@Doruk0
upgrading my laptop
https://scrapbook-into-the-redwoods.s3.amazonaws.com/81ff8bb8-52b4-4fa6-b4d9-3a7f598c90e0-image.png
sprig-dino emoji
polypixeldev
@polypixeldev0
working on sd card for spade (sprig firmware) here's a screenshot of sprig schematic since it looks better than the 10 CMakeLists.txt files I'm working with also because I need to find GPIO pins #100-days go picasso :picasso:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/d6999a22-0199-4c28-9993-bb161ce8fec1-image.png
leom
@leom0
Just another day with the laser cutter
https://scrapbook-into-the-redwoods.s3.amazonaws.com/283fc070-034c-4b2a-a7ba-0d5a1dceb9dd-4f616e28-c5ff-4369-bbdf-41d0b456c1ab_1_102_o.jpeg
monkey-laser emoji
sprig-dino emoji
vik
@vik0
getting started on hacking/upgrading the sprig!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/90113543-0ddd-4dac-97ac-d9eaff66b513-image.png
sprig-dino emoji
onboard emoji
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Didnโ€™t do much today but hereโ€™s my hw
https://scrapbook-into-the-redwoods.s3.amazonaws.com/7ec77daa-d983-40fd-8f62-b9fb99aa187e-img_1270.jpg
V205
@V2050
I accidentally made this:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/061b0d30-09b4-495a-a846-3c6f9662f6e7-new_note.jpeg
polypixeldev
@polypixeldev0
i heard you like rust so i forked a repo that uses rust to make your sprig rusty and made my sprig rusty: github.com/polypixeldev/trowel also did some stuff in #nest like setting up a new server go check it out go picasso #100-picasso :picasso:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/14f081f8-6e28-4ea4-b927-f6b3bbfde2ad-sprigrust.jpg
AnahitaaMalhotra-U04K99Y0CKX
@AnahitaaMalhotra-U04K99Y0CKX0
Yay! I finished my driving course! Aceable 100-day goal done!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/9adbebde-e8ba-4850-be20-d3253727c732-img_1269.png
leom
@leom0
Worked on a fun project! (Coming 2024)
https://scrapbook-into-the-redwoods.s3.amazonaws.com/5092d1c7-3bfb-4ef9-999a-4935b01954e7-image.png