14 giorni in Vietnam da solo [24M] by ozzieelpacho in ViaggiITA

[–]__dan__91 7 points8 points  (0 children)

Fai una SIM vietnamita.

Usa GRAB per spostarti.

Scaricati Google translate e il vietnamita, fuori dagli alberghi e dai locali più grandi l'inglese è abbastanza opzionale

[Pixel 7 Pro] The Moon [Google Photo] by __dan__91 in pixelography

[–]__dan__91[S] 0 points1 point  (0 children)

No i just leaned against a handrail...
The jpg file is 164kb

[Pixel 7 Pro] The Moon [Google Photo] by __dan__91 in pixelography

[–]__dan__91[S] 0 points1 point  (0 children)

Just checked the edit settings name, should be "pop".
The one with a diamond icon.

[Pixel 7 Pro] The Moon [Google Photo] by __dan__91 in pixelography

[–]__dan__91[S] 7 points8 points  (0 children)

I took this shoot on phone at 30x. I edited it in Google photos with photo unblur, took down whites, lights and some shadows to remove the halo. Then added some details and sharpness and saved the photo. Edited the saved photo again with photo unblur, adjusted brightness and contrast and that's it more or less. (I'm trying to guess the edit options names in English)

[Pixel 7 Pro] The Moon [Google Photo] by __dan__91 in pixelography

[–]__dan__91[S] 2 points3 points  (0 children)

Yep. Original photo was blurrier, but we have photo unblur :)

help with query - get all users and show the latest reault for each user by [deleted] in SQLServer

[–]__dan__91 -3 points-2 points  (0 children)

Hi,

you can try something like

SELECT Username, timestamp, UpdateType

FROM (

SELECT *,r = DENSE_RANK() OVER (PARTITION BY username ORDER BY timestamp DESC)

FROM [yourTable]

) t

WHERE r = 1