Vitor
banner
vitorrr.bsky.social
Vitor
@vitorrr.bsky.social
coding...

profile pic by @hmolyneaux on ig
Reposted by Vitor
This hits so hard.
The struggle is real.
December 29, 2024 at 11:17 PM
Reposted by Vitor
Announcing Vite 6
Vite 6 Release Announcement
vite.dev
November 26, 2024 at 3:24 PM
Reposted by Vitor
This is a neat little app. Love seeing these utility app use cases built with @tauri.app.
I just keep having to make new GIFs for our Crashlands 2 page on Steam, so I tried out @tauri.app and managed to make a GUI version of the Steam GIFs Generator! Makes that little bit of #gamedev much easier.

Nothing fancy, but works great! Get it here: github.com/bscotch/stea...
November 26, 2024 at 3:53 AM
Reposted by Vitor
To all the new folks arriving, welcome!
- setup your profile
- find a few cool starter packs to follow
- check out settings (enforce ALT)
- choose your feeds

and then
- send a post saying hi
- write, like, repost, and reply abundantly. We'd like to hear from you
- respect others and enjoy the party
November 12, 2024 at 5:29 AM
Reposted by Vitor
We're all here
go.bsky.app/BXnjGPN
November 5, 2024 at 10:27 AM
Reposted by Vitor
For the app builders out there:
go.bsky.app/GRUDREY
November 4, 2024 at 5:40 PM
Reposted by Vitor
Nem os técnicos dos provedores e nem webdevs sabem mais como a internet funciona. www.youtube.com/watch?v=ApJz...
Nem os técnicos sabem mais como a internet funciona
YouTube video by Ayub
www.youtube.com
September 5, 2024 at 12:43 PM
Reposted by Vitor
Eu falo de muitos assuntos mas muito raramente eu falo sobre meu trabalho.

Eu e dois amigos fundamos a cumbuca.com em 2021. Desde então já ajudamos mais de 200 mil grupos a organizarem suas finanças.

Quer saber mais sobre o que fazemos? Segue o 🧵

(E me ajuda muito se vcs derem um RS)

👇
Cumbuca: Divisão de despesas, simples e fácil!
A Cumbuca oferece uma maneira revolucionária e simples de dividir e compartilhar despesas. Você podem criar grupos para diversas finalidades, como familiares, amigos, cônjuges ou prestadores de…
cumbuca.com
September 4, 2024 at 10:34 PM
Reposted by Vitor
July 9, 2023 at 8:42 AM
Reposted by Vitor
Solar System Cartogram xkcd.com/2439
July 16, 2023 at 11:29 PM
Reposted by Vitor
Like all the other "disclosure" people, the latest UFO guy has come with extraordinary claims and not a shred of documentation. I want to believe, but it would be nice if one of them actually had something to disclose beyond New York Times puff pieces about themselves
June 6, 2023 at 3:49 PM
Reposted by Vitor
The Overthinker, ink on digital canvas #art #mentalhealth
July 8, 2023 at 4:58 PM
Reposted by Vitor
the energy i’m trying to bring to the skyline
July 8, 2023 at 4:00 PM
Reposted by Vitor
Emotionally Intelligent, oil on digital canvas
July 8, 2023 at 1:20 AM
Reposted by Vitor
can anyone help me get this to the brazilian swiftie supercluster

alguém pode me ajudar a levar isso para o superaglomerado brasileiro swiftie
July 7, 2023 at 4:06 AM
Helloo
July 7, 2023 at 4:00 AM
TIL that '!' can be called 'bang'. I thought that it was one of Rust quirks, but no, it seems since the 50s it's called 'bang'

I find it amusing -bang -bang
July 2, 2023 at 5:40 AM
What were you up to before you started doomscrolling?
July 2, 2023 at 5:16 AM
Chang'e 3 lander in the distance

pic by Emily Lakdawalla
July 1, 2023 at 6:11 PM
I love this picture

__
Confidence (ca. 1902). Original from the Library of Congress. Digitally enhanced by rawpixel.
June 30, 2023 at 8:15 PM
[1] Five ways to write the same function in Rust:

fn multiply(num: Option) -> usize {
    if num.is_some() {
        return num.unwrap() * 10;
    }
    return 0;
}

fn multiply2(num: Option) -> usize {
    if let Some(x) = num {
        return x * 10;
    }
    return 0;
}
June 29, 2023 at 5:36 PM