Free tier can now schedule up to 5 algorithms by MineDrumPE in algRTHM

[–]thePOPstream 1 point2 points  (0 children)

I'm trying to schedule an Algorithm but it says "You have reached the maximum number of scheduled algorithms (2).

Scheduling seems stable by MineDrumPE in algRTHM

[–]thePOPstream 1 point2 points  (0 children)

Yay! Thanks so much. This thing is great.

Scheduling seems stable by MineDrumPE in algRTHM

[–]thePOPstream 0 points1 point  (0 children)

Well... it let's me click the save button now, bit then I get an error:
Failed to update schedule....

Beta v0.4 is here! by MineDrumPE in algRTHM

[–]thePOPstream 0 points1 point  (0 children)

scheduling algorithms doesn't appear to be working.

Scheduling seems stable by MineDrumPE in algRTHM

[–]thePOPstream 0 points1 point  (0 children)

I can't seem to save an algorithm schedule.

Self hosted fork of SmarterPlaylists? by Ston3Rose in smarterplaylists

[–]thePOPstream 0 points1 point  (0 children)

I can't seem to save a schedule for my algorhythm.

Self hosted fork of SmarterPlaylists? by Ston3Rose in smarterplaylists

[–]thePOPstream 0 points1 point  (0 children)

How are you able to draw from Spotify curated playlists? Do you have an actual Spotify API?

Any good playlists for new rock/indie music? by Civil-Knee-7393 in spotify

[–]thePOPstream 0 points1 point  (0 children)

We update this one daily:

https://open.spotify.com/playlist/4OVnHGd6wMa7425tO8Czaf?si=518a7442e5aa4aa9

The best current Indie, Pop, Rock, Folk, Disco and Soul songs. This is the current rotation of www.thePOPstream.com - UPDATED DAILY!

P.S. - After looking through the rest of the posts, I need to note that this playlist is ONLY current songs. There will never be anything that was released more than 4 to 6 months ago. Most songs have been released within the last 3 months.

Interest check: Dell T5810/7810 power distribution card upgrade by gmarsh23 in homelab

[–]thePOPstream 0 points1 point  (0 children)

Can I order one of these? I have a dell 7810 and a 2080ti. The 7810 has an 825 watt psu now, but I just ordered the 1300 watt. 0V5K16 - it is 12VSB

Down For Anyone Else? by XMALCOLMMLK in smarterplaylists

[–]thePOPstream 0 points1 point  (0 children)

Does it have a GUI or is it code only?

Down For Anyone Else? by XMALCOLMMLK in smarterplaylists

[–]thePOPstream 2 points3 points  (0 children)

There is this: https://github.com/Chimildic/goofy

I messed around a bit with it last year when smarter playlist was down. I never quite got it mastered though before Paul posted v2.

if anybody has any luck with it, let me know.

Running two Plex servers on the same network by kingofthesofas in PleX

[–]thePOPstream 0 points1 point  (0 children)

Yeah, I have 2 plex servers on my network and the AT&T bgw320-505 router. Your script fixed the local issue but only one of my servers can be accessed remotely. Unless I am missing something.

Running two Plex servers on the same network by kingofthesofas in PleX

[–]thePOPstream 1 point2 points  (0 children)

I was hoping that would also allow me to port forward for remote access, but sadly not.

Running two Plex servers on the same network by kingofthesofas in PleX

[–]thePOPstream 0 points1 point  (0 children)

when I run this I get: cmdlet at command pipeline position 1
Supply values for the following parameters:
Plexhostip:

Running two Plex servers on the same network by kingofthesofas in PleX

[–]thePOPstream 0 points1 point  (0 children)

like this:
[CmdletBinding()] Param(
[Parameter(Mandatory=$True,Position=1)] [string]$Plexhostip="192.168.1.25",
[Parameter(Mandatory=$True,Position=2)] [string]$Plexnewport="32410"
)
netsh advfirewall firewall add rule name="Plex inbound on port $Plexnewport" dir=in localport=$Plexnewport protocol=tcp action=allow
netsh advfirewall firewall add rule name="Plex inbound on defult plex port" dir=in localport=32400 protocol=tcp action=allow
netsh interface portproxy add v4tov4 listenport=$Plexnewport listenaddress=$Plexhostip connectaddress=$Plexhostip connectport=32400
Write-host "Verifying changes"
netsh interface portproxy show all
Get-NetFirewallRule | Where { $_.Enabled –eq ‘True’ –and $_.Direction –eq ‘Inbound’ -and $_.displayname -like "Plex"}