Recent content by pvini07BR

  1. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    Oh well, this is a good opportunity to tell my motivations for this project. Maybe I should've told it from the start, but anyways... I admit it, not even myself uses Bluesky that much, and I don't expect this client will be used a lot either. However, my main motivations for the project is...
  2. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    I'm currently working on the post view. That means, when you click a post, will be able to see the post text but bigger, and also the replies. And hopefully, the attached image as well, might even make so you can only see a post's image when you open it, so it is more optimized, by loading only...
  3. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    You can already test the project any time you want! You just need to compile it, if you can... I haven't made any pre compiled binaries yet due to the ever-changing nature of the project. And, in fact, I do need more people testing my project. I only own a Nintendo 3DS XL and I also test it on...
  4. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    Hello, sorry for taking a long time to bring any updates. I kind of was on a hiatus from the project. Sometimes I get tired of working on the project, and wanting to work on other stuff, or just taking a break, but at the same time I don't want to abandon this project, so I will keep trying to...
  5. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    hello, here are some new updates on the app: - the bottom nav buttons now finally do something - added new profile page (still need to add the profile posts) - the scroll will be saved between pages - when you try to exit the app it will wait for threads to finish (to avoid crashes)
  6. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    I've implemented the image loading for the pfps. However, as the 3DS has incredibly slow download speeds, it takes a while to download all of them, even if it's only 128x128 images. And actually, they could be even smaller, like 32x32. But Bluesky doesn't have a way of resizing images from the...
  7. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    sure, you're welcome, you can post them here.
  8. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    It's a bearer token login. According to the Bluesky API, you create a session by providing the handle and password, and it will generate a token that is used for any other HTTPS request that requires authentication. 1745110689 I just got the timeline loading working. It's threaded, works well...
  9. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    UPDATE: I rewrote the program from scratch and I replaced the codebase on Github. All it does for now is the login. I'm starting to work on the UI for the main app now. Here's what it looks so far:
  10. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    it is totally possible, i've done the tests myself. all it needs is a system to do the UI and a way to make requests to the API (by using curl). threading is also possible, which will be important to do background loading and downloading. 1744735605 sorry, couldn't post it here due to not have...
  11. pvini07BR

    Homebrew Homebrew app An (Unfinished) Bluesky client for the Nintendo 3DS

    Hello, I would like to present an idea I've tried to do it myself: a Bluesky client for the Nintendo 3DS. I've managed to do quite some progress, I could create some UI and successfully connects to the Bluesky API and loads posts and images, however it's not finished. I encountered several...
  12. pvini07BR

    Homebrew Post Homebrew ideas, suggestion, requests here

    Hello, I would like to present an idea I've tried to do it myself: a Bluesky client for the Nintendo 3DS. I've managed to do quite some progress, I could create some UI and successfully connects to the Bluesky API and loads posts and images, however it's not finished. I encountered several...
  13. pvini07BR

    Homebrew C2D_GetTextDimensions is not getting the text height properly

    I'm trying to code a BlueSky client for the Nintendo 3DS. Currently I'm dealing with the UI. Currently, I'm making a feed, where there is several posts you can scroll through and see their contents. Each post has its own text. The text is fetched from the web from a public API using libcurl...