2022-08-05 17:44:58 -04:00
<!--% PROCESS 'shared-episode-summary.tpl.html' %-->
2025-04-03 07:22:35 +01:00
<!--% PROCESS "queries-episodes.tpl.html" %-->
2026-01-31 14:16:44 -05:00
<!--% page_title = "HPR ~ All the shows" %-->
2025-07-24 22:18:56 -04:00
< h1 > Complete Archive of Shows.</ h1 >
2022-08-05 17:44:58 -04:00
< p >
All this information is available to the public. Scrape if you wish but if we can format the data for you then we're happy to help.
</ p >
2025-10-16 23:41:18 -04:00
< div class = "lane stack" >
2025-04-03 07:22:35 +01:00
<!--% USE DBI(constants.driver) %-->
2022-11-27 14:04:12 -05:00
<!--% FOREACH episodes IN DBI.query(query_episodes)
2022-08-05 17:44:58 -04:00
%-->
2025-07-24 22:18:56 -04:00
< article >
2022-08-05 17:44:58 -04:00
<!--% show_summary(episodes) %-->
2023-04-02 07:24:43 -04:00
< p class = "listen-in" > <!--% display_listen_in(episodes.id) %--> </ p >
2025-07-24 22:18:56 -04:00
</ article >
2022-08-05 17:44:58 -04:00
<!--% END %-->
2025-07-24 22:18:56 -04:00
</ div >
2025-01-21 23:59:23 -05:00
< h2 id = "twt_episodes" > Today With a Techie Archived Shows</ h2 >
2022-09-17 17:28:39 -04:00
< p >
<!-- Creative Commons License -->
2023-09-03 17:51:03 +02:00
< a rel = "license" href = "https://creativecommons.org/licenses/by-nc-sa/2.5/" >< img alt = "Creative Commons License" border = "0" src = "https://creativecommons.org/images/public/somerights20.png" width = "88" height = "31" /></ a >< br > The following work is licensed under a < a rel = "license" href = "https://creativecommons.org/licenses/by-nc-sa/2.5/" > Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License</ a > .</ p >
2024-05-30 17:08:16 +02:00
< p > Today With a Techie Radio was brought to you by < a href = "https://en.wikipedia.org/wiki/Infonomicon" > The Infonomicon Computer Club</ a ></ p >
2025-10-16 23:41:18 -04:00
< div class = "lane stack" >
2025-11-02 00:58:51 -04:00
<!--% FOREACH twt_episode IN DBI.query('
2022-09-17 17:28:39 -04:00
SELECT
eps.id,
eps.explicit,
eps.date, eps.license, eps.title, eps.summary,
eps.duration, eps.notes, eps.tags,
hosts.hostid,
hosts.host, hosts.email, hosts.local_image,
miniseries.name AS series, miniseries.id AS seriesid
2025-11-22 19:30:53 -05:00
FROM twt_eps as eps
2022-09-17 17:28:39 -04:00
INNER JOIN hosts ON eps.hostid = hosts.hostid
INNER JOIN miniseries ON eps.series = miniseries.id
2022-10-21 19:52:53 -04:00
ORDER BY eps.id DESC
2022-09-17 17:28:39 -04:00
')
%-->
2025-07-24 22:18:56 -04:00
< article >
2025-11-02 00:58:51 -04:00
<!--% twt_show_summary(twt_episode) %-->
2025-07-24 22:18:56 -04:00
</ article >
2022-09-17 17:28:39 -04:00
<!--% END %-->
2025-10-17 00:03:28 -04:00
</ div >
2022-09-17 17:28:39 -04:00