putz u in dhe washing machin and spins ur bsky pofile pictuer !!! :D
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

move print

did:plc:73gqgbnvpx5syidcponjri… cd4b8174 2d486f26

verified
+2 -1
+2 -1
src/main.rs
··· 155 155 }); 156 156 157 157 let angle = compute_angle(); 158 - println!("rotating image by {} degrees", angle); 159 158 let rotated = rotate_image(image, angle); 160 159 rotated.save(&output).unwrap_or_else(|e| { 161 160 eprintln!("failed to save '{}': {}", output.to_string(), e); 162 161 }); 163 162 164 163 update_avatar(rotated, &agent, &mime_type).await; 164 + 165 + println!("rotated profile picture by {} degrees", angle); 165 166 }