Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
Mr. Baps
Apr 16, 2008

Yo ho?

or if they have, why am I too stupid to find it?

*astronomy picture of the day

Adbot
ADBOT LOVES YOU

DamnCanadian
Jan 3, 2005

Perpetuating the stereotype since 1978.
NASA tried using Windows with a guidance system once, and welp

e: https://www.microsoft.com/en-us/p/astronomy-picture-of-the-day/9wzdncrfj1xh?activetab=pivot:overviewtab

DamnCanadian fucked around with this message at 09:59 on Apr 9, 2021

mediaphage
Mar 22, 2007

Excuse me, pardon me, sheer perfection coming through

Walrus Pete posted:

or if they have, why am I too stupid to find it?

*astronomy picture of the day

all that stuff is freely available, you should make one!

Mr. Baps
Apr 16, 2008

Yo ho?

mediaphage posted:

all that stuff is freely available, you should make one!

I've never coded anything in my life and wouldn't know where to begin, but if anything's gonna make me learn some basics it'll be something like this.


As far as I can tell this doesn't automatically change your wallpaper, which is all I'm really looking for. Thanks for looking out, though!
e: the "some features are only available in the pro version" on an app that, optimistically, would save me 30 seconds a day was good for a laugh though

Mr. Baps fucked around with this message at 12:34 on Apr 10, 2021

mediaphage
Mar 22, 2007

Excuse me, pardon me, sheer perfection coming through
this is another option, though it's old and who knows the extent to which it still functions

https://sites.google.com/site/apodwallpaper/downloads

Mr. Baps
Apr 16, 2008

Yo ho?

mediaphage posted:

this is another option, though it's old and who knows the extent to which it still functions

https://sites.google.com/site/apodwallpaper/downloads

Well I'll be damned, this appears to still work. Thank you for helping out! :)

Captain Melo
Mar 28, 2014
I am actually working on an alternative to this. Once it's done, I'll post it here with source for you guys to use and check out.

The Butcher
Apr 20, 2005

Well, at least we tried.
Nap Ghost
You can get widgets for it for both iOS and Android. At least on iOS it doesn't change the wallpaper, but you can set the widget pretty big on your home screen, takes up about 2/3rds at max size, 2 rows of icons remaining. Always makes me happy to unlock it in the morning and see what's new!

shame on an IGA
Apr 8, 2005

Install Windows 98, use Active Desktop, problem solved.

Many, many new problems created.

Adbot
ADBOT LOVES YOU

tjones
May 13, 2005
Quoted below is a simple bash script that will parse the main APOD page and attempt to download any linked image matching the regex. Curl required. Cheers.


code:
#!/bin/bash

apod_url="https://apod.nasa.gov/apod/"
apod_out="response.out"
image_name="apod"

echo "Requesting URL: $apod_url"
response="$(curl -s $apod_url)"

echo "Writing response to file: $apod_out"
echo "$response" > $apod_out

#response="$(<$apod_out)"

image_file="$(sed -n '1,//s/.*href=\"\(image.\+\..\{3\}\)\">/\1/p' <<< $response)"

echo "Image file: $image_file"

if [ "$image_file" != "" ]; then
    image_ext="$(sed -n 's/.*\(\..\{3\}\).*/\1/p' <<< $image_file)"
    image_out="$image_name$image_ext"
    image_download_url="$apod_url$image_file"

    echo "APOD image URL: $image_download_url"
    echo -n "Downloading to $image_out... "

    curl -s -o "$image_out" "$image_download_url"

    echo "Done."
else
    echo "APOD image URL not found"
    echo "Exiting."
fi

tjones fucked around with this message at 02:42 on Aug 25, 2021

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply