pure functional programmers on their way to cut out all of their family, friends and responsibilities to have zero side effects on their life (it ensures nothing unexpected will happen throughout their lifetime): it just makes it so predictable, i know i can just go to sleep with no interruptions
12.08.2025 23:34 β π 0 π 0 π¬ 0 π 0
question: you say that it's like a progressive enhancement thing where the comments don't work without javascript. but why does it need client side javascript in the first place? can't it just get ssred without any client side javascript?
06.08.2025 13:22 β π 0 π 0 π¬ 1 π 0
the bluesky post above styled like a deltarune text box: * This hud design is so good i could lick it
30.07.2025 12:35 β π 5 π 2 π¬ 0 π 0
Jakiter eating trans ice cream that makes you trans:
28.07.2025 10:24 β π 23 π 0 π¬ 0 π 0
tenna whispering (You can do Alot with a single seagull.) in a cursive font. In the background is an imageof a seagull
i needed the font to make it be as accurate as possible. i ended up using garamond italic, rendering it at 15px, and then resizing it with near neighbour to get it to have that kind of pixely look, then i tilted it out a bit additionally with this result.
I know it's not the same font and that's sad
22.07.2025 00:06 β π 2 π 0 π¬ 0 π 0
@shapemover.bsky.social Hey, I'm terribly sorry for contacting you like this, but, would it be possible for you to reveal the name of the font used for the little cursive whispery word art sections used by tenna? I was making an image edit out of an out of context line in my friend group and
22.07.2025 00:06 β π 2 π 0 π¬ 1 π 0
I really appreciate the commitment to pixel correctness.
Correct rendering doesn't seem to be the top priority for most rust gui libraries and it's really disappointing, someone needs to get them in front of a 1024x768 screen so they can see what they have done.
( Amazing release btw β€οΈβ€οΈβ€οΈ )
11.07.2025 15:55 β π 2 π 0 π¬ 1 π 0
Waiter! Waiter! More PS1 styled horror games!
besides that this looks really good, great job
06.07.2025 10:32 β π 1 π 0 π¬ 1 π 0
Hate social media and hate people on there
16.06.2025 09:39 β π 3 π 0 π¬ 1 π 0
apple liquid glass design system
11.06.2025 00:47 β π 0 π 0 π¬ 0 π 0
[1] - web-frameworks-benchmark.netlify.app/result?f=fas...
11.06.2025 00:40 β π 0 π 0 π¬ 0 π 0
I find it to be pretty hard to estimate just how good or fast swift is as a language considering all of this stuff.
Feel free to nitpick this thread because I'm not an expert but personally, I'd let it sit and cook in the oven for a bit.
I like the language itself but.. idk about everything else.
11.06.2025 00:40 β π 1 π 0 π¬ 2 π 0
Web Frameworks Benchmark
Web Frameworks Benchmark. There are many frameworks, each one comes with its own advantages and drawbacks. The purpose of this project is to identify them and attempt to measure their differences (per...
benchmarks show anything realistic (considering the fact the nodejs examples use node magic to run the frameworks in parallel on all cores which is usually not something people tend to do in javascript) but honestly I find it to be pretty dissapointing.
11.06.2025 00:40 β π 1 π 0 π¬ 1 π 0
Source code of the hono benchmark which runs on nodejs.
It shows that if you GET the index page it returns nothing, if you GET the '/user/:id' route it returns just the id, and if you POST to the '/user' route it also returns nothing.
an empty space and also get out an id with a router, I would expect a language with "incredible performance" to perform a little bit better.
It's not that these numbers are bad or anything, and I have absolutely nothing against the developers of either framework, nor do I think that these
11.06.2025 00:40 β π 1 π 0 π¬ 1 π 0
Table, showing different frameworks. In order:
axum 0.8 (rust) - 125217 requests per second.
hono 4.7 (node) - 68382 requests per second.
fastify 5.3 (node) - 62100 requests per second.
vapor 4.114 (swift) - 39601 requests per second.
hummingbird 2 (swift) - 34647 requests per second.
express 5.1 (node) - 22026 requests per second.
sinatra 4.1 (ruby) - 16634 requests per second.
rails 8 (ruby) - 10153 requests per second.
flask 3.1 (python) - 2028 requests per second.
The square highlights the fact the swift frameworks are in the middle of the cherrypicked examples, which shows that while it's not slow at all, it still manages to lose out to nodejs based frameworks.
In addition to this i would like to complain that in synthetic benchmarks[1] all swift frameworks lose out to heck of a lot of other different frameworks even the ones using nodejs.
I understand that these numbers are still pretty good, but considering all this benchmark does is basically return
11.06.2025 00:40 β π 1 π 0 π¬ 1 π 0
swilvester binary built with static linux sdk, 176 megabytes in size. image also shows it's not a dynamic executable
swilvester binary built with static linux sdk and stripped, 63 megabytes in size.
If we build the same project with release mode, thin lto and the static linux swift sdk we get a whopping 176 MB binary, (63MB stripped).
11.06.2025 00:40 β π 0 π 0 π¬ 1 π 0
Terminal, shows that the binary links to hella shared objects.
terminal output, swilvester binary (sample project), 39 megabytes size of binary while unstripped.
swilvester sample project binary, size is 8.9 megabytes.
Here's a release build with thin lto, without stripping. It links to hella stuff and it's 39MB in size unstripped and 8.9MB stripped (which isn't too bad but it links to a lot of stuff)
11.06.2025 00:40 β π 1 π 0 π¬ 1 π 0
Swift source code.
```swift
import AsyncHTTPClient
import FoundationEssentials
let request = HTTPClientRequest(url: "https://example.com")
let response = try await HTTPClient.shared.execute(request, timeout: .seconds(5))
let body = try await response.body.collect(upTo: 1024 * 1024)
let bodyString = String(buffer: body)
print(bodyString)
print(UUID().uuidString)
```
It looks pretty nice on paper but the linux story is pretty sad, i tried to make a small, basically hello world executable (had to use AsyncHTTPClient because the one in the std library didn't seem to work with the linux static sdk) and it resulted in huge binaries. Here's the source code:
11.06.2025 00:40 β π 1 π 0 π¬ 1 π 0
*in an angry videogame nerd voice*
LIQUID ASS?? MORE LIKE LIQUID SHIT
10.06.2025 13:42 β π 0 π 0 π¬ 1 π 0
repeatedly every time you're doing literally anything in the game.
(500 characters is not enough space for literally any kind of semi complex thought AAAAAAAA)
01.06.2025 15:21 β π 0 π 0 π¬ 1 π 0
i think that game developers who create popular games should take a look at the mods people make for their games and port some of the ones which improve the game without distorting the vision too much.
Like the lethal company mod which allows you to hold down right click instead of having to do it
01.06.2025 15:21 β π 2 π 0 π¬ 2 π 0
It would be nice if this could get out to a wider audience of people, please share this.
Twitch is _not_ slowing down with AI art. Do not let them get more comfortable.
Have fun streaming in the art category! :^)
#twitch #streaming #stopaiart #gaming
21.05.2025 05:55 β π 8 π 0 π¬ 0 π 0
Clancy is your average creepy CEO, who is trying to extract money out of people, and no amount of PR sanewashing will actually change that.
The use of AI art clearly showcases how much he actually cares. He does not, and absolutely nothing in this post is defensible.
Get him out.
21.05.2025 05:55 β π 3 π 0 π¬ 1 π 0
In addition to the weird creepy showoff of his new TWITCH SHORTS (π€’) feature, with his feed consisting mostly of young female streamers, it is obvious that Dan Clancy is an embarrassing CEO and needs to be replaced.
He is not like you, he is not your average streamer, he is not your friend.
21.05.2025 05:55 β π 3 π 0 π¬ 1 π 0
This shows a clear issue. Twitch is using AI to generate art. Why?
The first thing the current CEO of Twitch did when he got hired was to fire half of the staff, which might have included artists and anyone who would actually care about this.
21.05.2025 05:55 β π 4 π 0 π¬ 1 π 0
Ai generated twitch FOOD AND DRINK poster, stylised as an old US poster showing an orange jelly on a plate with celery sticking in and out, as well as a fork which turns into a sausage, and weird sausages which morph into the jelly.
3. The recent controversy, the new art for the food and drink category, also clearly AI generated. You may notice the orange tint and weird nonsense on the plate if you look closer.
A little bit harder to spot, potentially generated by a smarter model, but still AI.
Changed on May 20, 2025.
21.05.2025 05:55 β π 5 π 0 π¬ 1 π 0
AI generated image of ginger cat with open mouth and santa hat
2. The CatintheChat emote. This is AI generated (classic smoothness + shininess).
Added on Dec 7, 2024.
21.05.2025 05:55 β π 2 π 0 π¬ 1 π 0
twitchcon 2024 san diego badge, showing weird lines and mixels. bad/fake pixel art.
1. First example I can think of, the Twitch Con 2024 San Diego badge.
You may notice the mixels, the bigger problem is the weird random lines no real person would leave. It doesn't align to any kind of grid.
Occam's razor.
Added on May 28, 2024.
21.05.2025 05:55 β π 4 π 0 π¬ 1 π 0
I don't have the reach for this but here we go.
Let's point out the fact that twitch is getting _really_ comfortable with using AI to generate art!
They have been doing it, they will continue doing it, allow me to point out some big obvious examples.
π§΅
21.05.2025 05:55 β π 9 π 3 π¬ 1 π 0
people who make google docs for drama are pussies, if your drama doc isn't made using latex or typst i'm NOT reading it.
01.05.2025 18:13 β π 5 π 0 π¬ 1 π 0
Swift is a general-purpose programming language that's fast, modern, safe, and a joy to write. Designed for all, developed in the open.
A modern runtime for JavaScript and TypeScript
https://deno.com
I build simple and fast things. Part of Preact team.
Open Source Multimedia Framework
Website: https://gstreamer.freedesktop.org
Forum: https://discourse.gstreamer.org/
Matrix chat: https://discourse.gstreamer.org/t/new-gstreamer-matrix-chat-space/675
https://tangled.sh is a git collaboration platform built on atproto. Social coding, but for real this time!
Discord: chat.tangled.sh
IRC: #tangled @ libera.chat
Founded by @oppi.li & @icyphox.sh
#CSS ex-Google Chrome DevRel, CSSWG, co-host The CSS Podcast, host @ GUI Challenges, co-host Bad@CSS Podcast.
Creator of VisBug, open-props.style, gradient.style, transition.style & more
UI, UX, CSS, HTML, JS
https://nerdy.dev
I created a TV show called Gravity Falls. Currently cooking up new mischief at Netflix
https://rescript-lang.org/
Ship great products!
Always fighting for the people.
Wife, Momala, Auntie. She/her.
107 Days, my behind-the-scenes account of the shortest campaign in history, is available for pre-order now.
A programming language empowering everyone to build reliable and efficient software.
Website: https://rust-lang.org/
Blog: https://blog.rust-lang.org/
Mastodon: https://social.rust-lang.org/@rust
// 22, he/him, π·πΈ
// certified bus & truck driver lightbulb
// pfp: @copithecat.bsky.social & banner: @mayabon.bsky.social
// socials: brokenphilip.carrd.co
The Open Source, Cross Platform Stack for RTC. Pure Go implementations of WebRTC, TURN, DTLS and more. http://github.com/pion/awesome-pion
Join our Discord: https://discord.gg/PngbdqpFbt Slack Channel: https://pion.ly/slack
"the maintainer is a legitimate communist. i will not be supporting this language"
- some yt guy, 2024
I made @gleam.run and I do gymnastics (badly)
they/them or he/him. end fossil fuels. genocide is bad. ride a bike.
π Understanding the Odin Programming Language: https://odinbook.com/
π± CAT & ONION: https://store.steampowered.com/app/2781210/
π¬ YouTube: https://youtube.com/@karl_zylinski
π¬ Discord: https://discord.gg/4FsHgtBmFK
π Blog: https://zylinski.se/
Your favorite game developer's favorite game developers.
DUSK, AMID EVIL, ULTRAKILL, Gloomwood, Fallen Aces, Blood West, SGS, FAITH and TENEBRIS SOMNIA π©Έ
http://Waste.Money http://WeHate.money
Epistle 3 in Unreal Engine 5: https://projectborealis.com - https://discord.gg/Rkz95GS - info@projectborealis.com
A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once.
Our website: https://prismlauncher.org
Mastodon: https://floss.social/@PrismLauncher
Email: contact@prismlauncher.org
Rust coder, creator of egui.rs, CTO of Rerun.io