run.sh and .gitignore added
parent
4017a3e483
commit
3853e1544b
|
@ -0,0 +1,11 @@
|
||||||
|
*.flac
|
||||||
|
*.wav
|
||||||
|
*.mp3
|
||||||
|
*.ogg
|
||||||
|
*.gif
|
||||||
|
*.png
|
||||||
|
*.jpg
|
||||||
|
*.jpeg
|
||||||
|
|
||||||
|
*~
|
||||||
|
*#*
|
BIN
database/show.db
BIN
database/show.db
Binary file not shown.
|
@ -0,0 +1,20 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
from datetime import date, timedelta
|
||||||
|
|
||||||
|
month = 3; #start in march
|
||||||
|
|
||||||
|
def allsundays(year):
|
||||||
|
d = date(year, month, 1)
|
||||||
|
d += timedelta(days = 6 - d.weekday()) # First Sunday
|
||||||
|
while d.year == year:
|
||||||
|
yield d
|
||||||
|
d += timedelta(days = 7)
|
||||||
|
|
||||||
|
sundays = []
|
||||||
|
for d in allsundays(2024):
|
||||||
|
sundays.append(d)
|
||||||
|
print(d)
|
||||||
|
|
||||||
|
print(sundays[4:7]) # output only a slice of the year
|
|
@ -532,7 +532,7 @@ create_html_episode_from_template()
|
||||||
create_html_homepage_from_template()
|
create_html_homepage_from_template()
|
||||||
create_RSS_XML_from_template()
|
create_RSS_XML_from_template()
|
||||||
|
|
||||||
create_podcast(show_array)
|
#create_podcast(show_array)
|
||||||
|
|
||||||
|
|
||||||
#convert -delay 100 -loop 0 html/episode/2/img/show_cover_2024-01-12* animatedGIF.gif
|
#convert -delay 100 -loop 0 html/episode/2/img/show_cover_2024-01-12* animatedGIF.gif
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
|
|
||||||
perspektiva
|
make this title easy to remember
|
||||||
Sub Persona I
|
Tomaž Grom - Sam, za... - 05 G.V.
|
||||||
Domen Gnezda - Misnomer II - 04 Misnomer 26
|
Magie de la Pleine Lune
|
||||||
Oholo! - Mnogobolje - 01 Blind man's buff
|
|
||||||
My Sweet.Com
|
|
||||||
Vid Drašler - Kramljanja - 03 3.
|
|
||||||
Kolonija
|
|
||||||
The Oppressed 2 (SC)
|
|
||||||
Blue Waters Turn Black (P.C.M. remix)
|
|
||||||
Untold Truths
|
Untold Truths
|
||||||
Kampak
|
Ultrascan
|
||||||
|
1disrupt3violence1monopoly2
|
||||||
|
ejk
|
||||||
|
Zlatko Kaučič, Tomaž Grom - Torn Memories Of Folklore - Raztrgana folklora spomina - 05 With A Hole In The Sock
|
||||||
|
Action VI
|
||||||
|
Action XII
|
||||||
|
|
Loading…
Reference in New Issue