├── .github └── workflows │ ├── ci.yml │ └── scrape.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── dev-requirements.txt ├── docs ├── coder-radio │ ├── 2013 │ │ ├── episode-055.md │ │ ├── episode-056.md │ │ ├── episode-057.md │ │ ├── episode-058.md │ │ ├── episode-059.md │ │ ├── episode-060.md │ │ ├── episode-061.md │ │ ├── episode-062.md │ │ ├── episode-063.md │ │ ├── episode-064.md │ │ ├── episode-065.md │ │ ├── episode-066.md │ │ ├── episode-067.md │ │ ├── episode-068.md │ │ ├── episode-069.md │ │ ├── episode-070.md │ │ ├── episode-071.md │ │ ├── episode-072.md │ │ ├── episode-073.md │ │ ├── episode-074.md │ │ ├── episode-075.md │ │ ├── episode-076.md │ │ ├── episode-077.md │ │ ├── episode-078.md │ │ ├── episode-079.md │ │ ├── episode-080.md │ │ ├── episode-081.md │ │ └── episode-082.md │ ├── 2014 │ │ ├── episode-083.md │ │ ├── episode-084.md │ │ ├── episode-085.md │ │ ├── episode-086.md │ │ ├── episode-087.md │ │ ├── episode-088.md │ │ ├── episode-089.md │ │ ├── episode-090.md │ │ ├── episode-091.md │ │ ├── episode-092.md │ │ ├── episode-093.md │ │ ├── episode-094.md │ │ ├── episode-095.md │ │ ├── episode-096.md │ │ ├── episode-097.md │ │ ├── episode-098.md │ │ ├── episode-099.md │ │ ├── episode-100.md │ │ ├── episode-101.md │ │ ├── episode-102.md │ │ ├── episode-103.md │ │ ├── episode-104.md │ │ ├── episode-105.md │ │ ├── episode-106.md │ │ ├── episode-107.md │ │ ├── episode-108.md │ │ ├── episode-109.md │ │ ├── episode-110.md │ │ ├── episode-111.md │ │ ├── episode-112.md │ │ ├── episode-113.md │ │ ├── episode-114.md │ │ ├── episode-115.md │ │ ├── episode-116.md │ │ ├── episode-117.md │ │ ├── episode-118.md │ │ ├── episode-119.md │ │ ├── episode-120.md │ │ ├── episode-121.md │ │ ├── episode-122.md │ │ ├── episode-123.md │ │ ├── episode-124.md │ │ ├── episode-125.md │ │ ├── episode-126.md │ │ ├── episode-127.md │ │ ├── episode-128.md │ │ ├── episode-129.md │ │ ├── episode-130.md │ │ ├── episode-131.md │ │ ├── episode-132.md │ │ ├── episode-133.md │ │ └── episode-134.md │ ├── 2015 │ │ ├── episode-135.md │ │ ├── episode-136.md │ │ ├── episode-137.md │ │ ├── episode-138.md │ │ ├── episode-139.md │ │ ├── episode-140.md │ │ ├── episode-141.md │ │ ├── episode-142.md │ │ ├── episode-143.md │ │ ├── episode-144.md │ │ ├── episode-145.md │ │ ├── episode-146.md │ │ ├── episode-147.md │ │ ├── episode-148.md │ │ ├── episode-149.md │ │ ├── episode-150.md │ │ ├── episode-151.md │ │ ├── episode-152.md │ │ ├── episode-153.md │ │ ├── episode-154.md │ │ ├── episode-155.md │ │ ├── episode-156.md │ │ ├── episode-157.md │ │ ├── episode-158.md │ │ ├── episode-159.md │ │ ├── episode-160.md │ │ ├── episode-161.md │ │ ├── episode-162.md │ │ ├── episode-163.md │ │ ├── episode-164.md │ │ ├── episode-165.md │ │ ├── episode-166.md │ │ ├── episode-167.md │ │ ├── episode-168.md │ │ ├── episode-169.md │ │ ├── episode-170.md │ │ ├── episode-171.md │ │ ├── episode-172.md │ │ ├── episode-173.md │ │ ├── episode-174.md │ │ ├── episode-175.md │ │ ├── episode-176.md │ │ ├── episode-177.md │ │ ├── episode-178.md │ │ ├── episode-179.md │ │ ├── episode-180.md │ │ ├── episode-181.md │ │ ├── episode-182.md │ │ ├── episode-183.md │ │ ├── episode-184.md │ │ └── episode-185.md │ ├── 2016 │ │ ├── episode-186.md │ │ ├── episode-187.md │ │ ├── episode-188.md │ │ ├── episode-189.md │ │ ├── episode-190.md │ │ ├── episode-191.md │ │ ├── episode-192.md │ │ ├── episode-193.md │ │ ├── episode-194.md │ │ ├── episode-195.md │ │ ├── episode-196.md │ │ ├── episode-197.md │ │ ├── episode-198.md │ │ ├── episode-199.md │ │ ├── episode-200.md │ │ ├── episode-201.md │ │ ├── episode-202.md │ │ ├── episode-203.md │ │ ├── episode-204.md │ │ ├── episode-205.md │ │ ├── episode-206.md │ │ ├── episode-207.md │ │ ├── episode-208.md │ │ ├── episode-209.md │ │ ├── episode-210.md │ │ ├── episode-211.md │ │ ├── episode-212.md │ │ ├── episode-213.md │ │ ├── episode-214.md │ │ ├── episode-215.md │ │ ├── episode-216.md │ │ ├── episode-217.md │ │ ├── episode-218.md │ │ ├── episode-219.md │ │ ├── episode-220.md │ │ ├── episode-221.md │ │ ├── episode-222.md │ │ ├── episode-223.md │ │ ├── episode-224.md │ │ ├── episode-225.md │ │ ├── episode-226.md │ │ ├── episode-227.md │ │ ├── episode-228.md │ │ ├── episode-229.md │ │ ├── episode-230.md │ │ ├── episode-231.md │ │ ├── episode-232.md │ │ ├── episode-233.md │ │ ├── episode-234.md │ │ ├── episode-235.md │ │ ├── episode-236.md │ │ └── episode-237.md │ ├── 2017 │ │ ├── episode-238.md │ │ ├── episode-239.md │ │ ├── episode-240.md │ │ ├── episode-241.md │ │ ├── episode-242.md │ │ ├── episode-243.md │ │ ├── episode-244.md │ │ ├── episode-245.md │ │ ├── episode-246.md │ │ ├── episode-247.md │ │ ├── episode-248.md │ │ ├── episode-249.md │ │ ├── episode-250.md │ │ ├── episode-251.md │ │ ├── episode-252.md │ │ ├── episode-253.md │ │ ├── episode-254.md │ │ ├── episode-255.md │ │ ├── episode-256.md │ │ ├── episode-257.md │ │ ├── episode-258.md │ │ ├── episode-259.md │ │ ├── episode-260.md │ │ ├── episode-261.md │ │ ├── episode-262.md │ │ ├── episode-263.md │ │ ├── episode-264.md │ │ ├── episode-265.md │ │ ├── episode-266.md │ │ ├── episode-267.md │ │ ├── episode-268.md │ │ ├── episode-269.md │ │ ├── episode-270.md │ │ ├── episode-271.md │ │ ├── episode-272.md │ │ ├── episode-273.md │ │ ├── episode-274.md │ │ ├── episode-275.md │ │ ├── episode-276.md │ │ ├── episode-277.md │ │ ├── episode-278.md │ │ ├── episode-279.md │ │ ├── episode-280.md │ │ ├── episode-281.md │ │ ├── episode-282.md │ │ ├── episode-283.md │ │ ├── episode-284.md │ │ ├── episode-285.md │ │ ├── episode-286.md │ │ ├── episode-287.md │ │ ├── episode-288.md │ │ └── episode-289.md │ ├── 2018 │ │ ├── episode-290.md │ │ ├── episode-291.md │ │ ├── episode-292.md │ │ ├── episode-293.md │ │ ├── episode-294.md │ │ ├── episode-295.md │ │ ├── episode-296.md │ │ ├── episode-297.md │ │ ├── episode-298.md │ │ ├── episode-299.md │ │ ├── episode-300.md │ │ ├── episode-301.md │ │ ├── episode-302.md │ │ ├── episode-303.md │ │ ├── episode-304.md │ │ ├── episode-305.md │ │ ├── episode-306.md │ │ ├── episode-307.md │ │ ├── episode-308.md │ │ ├── episode-309.md │ │ ├── episode-310.md │ │ ├── episode-311.md │ │ ├── episode-312.md │ │ ├── episode-313.md │ │ ├── episode-314.md │ │ ├── episode-315.md │ │ ├── episode-316.md │ │ ├── episode-317.md │ │ ├── episode-318.md │ │ ├── episode-319.md │ │ ├── episode-320.md │ │ ├── episode-321.md │ │ ├── episode-322.md │ │ ├── episode-323.md │ │ ├── episode-324.md │ │ ├── episode-325.md │ │ ├── episode-326.md │ │ ├── episode-327.md │ │ ├── episode-328.md │ │ ├── episode-329.md │ │ ├── episode-330.md │ │ ├── episode-331.md │ │ ├── episode-332.md │ │ ├── episode-333.md │ │ ├── episode-334.md │ │ ├── episode-335.md │ │ ├── episode-336.md │ │ └── episode-337.md │ ├── 2019 │ │ ├── episode-338.md │ │ ├── episode-339.md │ │ ├── episode-340.md │ │ ├── episode-341.md │ │ ├── episode-342.md │ │ ├── episode-343.md │ │ ├── episode-344.md │ │ ├── episode-345.md │ │ ├── episode-346.md │ │ ├── episode-347.md │ │ ├── episode-348.md │ │ ├── episode-349.md │ │ ├── episode-350.md │ │ ├── episode-351.md │ │ ├── episode-352.md │ │ ├── episode-353.md │ │ ├── episode-354.md │ │ ├── episode-355.md │ │ ├── episode-356.md │ │ ├── episode-357.md │ │ ├── episode-358.md │ │ ├── episode-359.md │ │ ├── episode-360.md │ │ ├── episode-361.md │ │ ├── episode-362.md │ │ ├── episode-363.md │ │ ├── episode-364.md │ │ ├── episode-365.md │ │ ├── episode-366.md │ │ ├── episode-367.md │ │ ├── episode-368.md │ │ ├── episode-369.md │ │ ├── episode-370.md │ │ ├── episode-371.md │ │ ├── episode-372.md │ │ ├── episode-373.md │ │ ├── episode-374.md │ │ └── episode-375.md │ ├── 2020 │ │ ├── episode-376.md │ │ ├── episode-377.md │ │ ├── episode-378.md │ │ ├── episode-379.md │ │ ├── episode-380.md │ │ ├── episode-381.md │ │ ├── episode-382.md │ │ ├── episode-383.md │ │ ├── episode-384.md │ │ ├── episode-385.md │ │ ├── episode-386.md │ │ ├── episode-387.md │ │ ├── episode-388.md │ │ ├── episode-389.md │ │ ├── episode-390.md │ │ ├── episode-391.md │ │ ├── episode-392.md │ │ ├── episode-393.md │ │ └── episode-394.md │ ├── 2021 │ │ ├── episode-395.md │ │ ├── episode-396.md │ │ ├── episode-397.md │ │ ├── episode-398.md │ │ ├── episode-399.md │ │ ├── episode-400.md │ │ ├── episode-401.md │ │ ├── episode-402.md │ │ ├── episode-403.md │ │ ├── episode-404.md │ │ ├── episode-405.md │ │ ├── episode-406.md │ │ ├── episode-407.md │ │ ├── episode-408.md │ │ ├── episode-409.md │ │ ├── episode-410.md │ │ ├── episode-411.md │ │ ├── episode-412.md │ │ ├── episode-413.md │ │ ├── episode-414.md │ │ ├── episode-415.md │ │ ├── episode-416.md │ │ ├── episode-417.md │ │ ├── episode-418.md │ │ ├── episode-419.md │ │ ├── episode-420.md │ │ ├── episode-421.md │ │ ├── episode-422.md │ │ ├── episode-423.md │ │ ├── episode-424.md │ │ ├── episode-425.md │ │ ├── episode-426.md │ │ ├── episode-427.md │ │ ├── episode-428.md │ │ ├── episode-429.md │ │ ├── episode-430.md │ │ ├── episode-431.md │ │ ├── episode-432.md │ │ ├── episode-433.md │ │ ├── episode-434.md │ │ ├── episode-435.md │ │ ├── episode-436.md │ │ ├── episode-437.md │ │ ├── episode-438.md │ │ ├── episode-439.md │ │ ├── episode-440.md │ │ ├── episode-441.md │ │ ├── episode-442.md │ │ ├── episode-443.md │ │ ├── episode-444.md │ │ ├── episode-445.md │ │ └── episode-446.md │ ├── 2022 │ │ ├── episode-447.md │ │ ├── episode-448.md │ │ ├── episode-449.md │ │ ├── episode-450.md │ │ ├── episode-451.md │ │ ├── episode-452.md │ │ ├── episode-453.md │ │ ├── episode-454.md │ │ ├── episode-455.md │ │ ├── episode-456.md │ │ ├── episode-457.md │ │ ├── episode-458.md │ │ ├── episode-459.md │ │ ├── episode-460.md │ │ ├── episode-461.md │ │ ├── episode-462.md │ │ ├── episode-463.md │ │ ├── episode-464.md │ │ ├── episode-465.md │ │ ├── episode-466.md │ │ ├── episode-467.md │ │ ├── episode-468.md │ │ ├── episode-469.md │ │ ├── episode-470.md │ │ ├── episode-471.md │ │ ├── episode-472.md │ │ ├── episode-473.md │ │ ├── episode-474.md │ │ ├── episode-475.md │ │ ├── episode-476.md │ │ ├── episode-477.md │ │ ├── episode-478.md │ │ ├── episode-479.md │ │ ├── episode-480.md │ │ ├── episode-481.md │ │ ├── episode-482.md │ │ ├── episode-483.md │ │ ├── episode-484.md │ │ ├── episode-485.md │ │ ├── episode-486.md │ │ ├── episode-487.md │ │ ├── episode-488.md │ │ ├── episode-489.md │ │ ├── episode-490.md │ │ ├── episode-491.md │ │ ├── episode-492.md │ │ ├── episode-493.md │ │ ├── episode-494.md │ │ ├── episode-495.md │ │ ├── episode-496.md │ │ ├── episode-497.md │ │ ├── episode-498.md │ │ └── episode-gamer.md │ ├── 2023 │ │ ├── episode-499.md │ │ ├── episode-500.md │ │ ├── episode-501.md │ │ ├── episode-502.md │ │ ├── episode-503.md │ │ ├── episode-504.md │ │ ├── episode-505.md │ │ ├── episode-506.md │ │ ├── episode-507.md │ │ ├── episode-508.md │ │ ├── episode-509.md │ │ ├── episode-510.md │ │ ├── episode-511.md │ │ ├── episode-512.md │ │ ├── episode-513.md │ │ ├── episode-514.md │ │ ├── episode-515.md │ │ ├── episode-516.md │ │ ├── episode-517.md │ │ ├── episode-518.md │ │ ├── episode-519.md │ │ ├── episode-520.md │ │ ├── episode-521.md │ │ ├── episode-522.md │ │ ├── episode-523.md │ │ ├── episode-524.md │ │ ├── episode-525.md │ │ ├── episode-526.md │ │ ├── episode-527.md │ │ ├── episode-528.md │ │ ├── episode-529.md │ │ ├── episode-530.md │ │ ├── episode-531.md │ │ ├── episode-532.md │ │ ├── episode-533.md │ │ ├── episode-534.md │ │ ├── episode-535.md │ │ ├── episode-536.md │ │ ├── episode-537.md │ │ ├── episode-538.md │ │ ├── episode-539.md │ │ ├── episode-540.md │ │ ├── episode-541.md │ │ ├── episode-542.md │ │ ├── episode-543.md │ │ ├── episode-544.md │ │ ├── episode-545.md │ │ ├── episode-546.md │ │ ├── episode-547.md │ │ ├── episode-548.md │ │ ├── episode-549.md │ │ └── episode-550.md │ ├── 2024 │ │ ├── episode-551.md │ │ ├── episode-552.md │ │ ├── episode-553.md │ │ ├── episode-554.md │ │ ├── episode-555.md │ │ ├── episode-556.md │ │ ├── episode-557.md │ │ ├── episode-558.md │ │ ├── episode-559.md │ │ ├── episode-560.md │ │ ├── episode-561.md │ │ ├── episode-562.md │ │ ├── episode-563.md │ │ ├── episode-564.md │ │ ├── episode-565.md │ │ ├── episode-566.md │ │ ├── episode-567.md │ │ ├── episode-568.md │ │ ├── episode-569.md │ │ ├── episode-570.md │ │ ├── episode-571.md │ │ ├── episode-572.md │ │ ├── episode-573.md │ │ ├── episode-574.md │ │ ├── episode-575.md │ │ ├── episode-576.md │ │ ├── episode-577.md │ │ ├── episode-578.md │ │ ├── episode-579.md │ │ ├── episode-580.md │ │ ├── episode-581.md │ │ ├── episode-582.md │ │ ├── episode-583.md │ │ ├── episode-584.md │ │ ├── episode-585.md │ │ ├── episode-586.md │ │ ├── episode-587.md │ │ ├── episode-588.md │ │ ├── episode-589.md │ │ ├── episode-590.md │ │ ├── episode-591.md │ │ ├── episode-592.md │ │ ├── episode-593.md │ │ ├── episode-594.md │ │ ├── episode-595.md │ │ ├── episode-596.md │ │ ├── episode-597.md │ │ ├── episode-598.md │ │ ├── episode-599.md │ │ ├── episode-600.md │ │ └── episode-hurricanehelene.md │ ├── 2025 │ │ ├── episode-601.md │ │ ├── episode-602.md │ │ ├── episode-603.md │ │ ├── episode-604.md │ │ ├── episode-605.md │ │ ├── episode-606.md │ │ ├── episode-607.md │ │ ├── episode-608.md │ │ ├── episode-609.md │ │ ├── episode-610.md │ │ ├── episode-611.md │ │ ├── episode-612.md │ │ ├── episode-613.md │ │ ├── episode-614.md │ │ ├── episode-615.md │ │ ├── episode-616.md │ │ ├── episode-617.md │ │ ├── episode-618.md │ │ └── episode-619.md │ └── index.md ├── images │ ├── coder-header.jpg │ ├── extras-header.jpg │ ├── jb-header.jpg │ ├── lan-header.jpg │ ├── lup-header.jpg │ ├── office-hours-header.jpg │ └── ssh-header.jpeg ├── index.md ├── jupiter-extras │ ├── 2019 │ │ ├── episode-001.md │ │ ├── episode-002.md │ │ ├── episode-003.md │ │ ├── episode-004.md │ │ ├── episode-005.md │ │ ├── episode-006.md │ │ ├── episode-007.md │ │ ├── episode-008.md │ │ ├── episode-009.md │ │ ├── episode-010.md │ │ ├── episode-011.md │ │ ├── episode-012.md │ │ ├── episode-013.md │ │ ├── episode-014.md │ │ ├── episode-015.md │ │ ├── episode-016.md │ │ ├── episode-017.md │ │ ├── episode-018.md │ │ ├── episode-019.md │ │ ├── episode-020.md │ │ ├── episode-021.md │ │ ├── episode-022.md │ │ ├── episode-023.md │ │ ├── episode-024.md │ │ ├── episode-025.md │ │ ├── episode-026.md │ │ ├── episode-027.md │ │ ├── episode-028.md │ │ ├── episode-029.md │ │ ├── episode-030.md │ │ ├── episode-031.md │ │ ├── episode-032.md │ │ ├── episode-033.md │ │ ├── episode-034.md │ │ ├── episode-035.md │ │ ├── episode-036.md │ │ ├── episode-037.md │ │ ├── episode-038.md │ │ ├── episode-039.md │ │ ├── episode-040.md │ │ ├── episode-041.md │ │ ├── episode-042.md │ │ └── episode-043.md │ ├── 2020 │ │ ├── episode-044.md │ │ ├── episode-045.md │ │ ├── episode-046.md │ │ ├── episode-047.md │ │ ├── episode-048.md │ │ ├── episode-049.md │ │ ├── episode-050.md │ │ ├── episode-051.md │ │ ├── episode-052.md │ │ ├── episode-053.md │ │ ├── episode-054.md │ │ ├── episode-055.md │ │ ├── episode-056.md │ │ ├── episode-057.md │ │ ├── episode-058.md │ │ ├── episode-059.md │ │ ├── episode-060.md │ │ ├── episode-061.md │ │ ├── episode-062.md │ │ ├── episode-063.md │ │ ├── episode-064.md │ │ ├── episode-065.md │ │ ├── episode-066.md │ │ ├── episode-067.md │ │ ├── episode-068.md │ │ ├── episode-069.md │ │ ├── episode-070.md │ │ ├── episode-071.md │ │ ├── episode-072.md │ │ ├── episode-073.md │ │ ├── episode-074.md │ │ └── episode-075.md │ ├── 2021 │ │ ├── episode-076.md │ │ ├── episode-077.md │ │ └── episode-078.md │ ├── 2022 │ │ ├── episode-079.md │ │ ├── episode-080.md │ │ ├── episode-081.md │ │ ├── episode-082.md │ │ ├── episode-083.md │ │ ├── episode-084.md │ │ ├── episode-085.md │ │ ├── episode-086.md │ │ └── episode-087.md │ ├── 2024 │ │ ├── episode-088.md │ │ ├── episode-089.md │ │ ├── episode-090.md │ │ ├── episode-091.md │ │ └── episode-092.md │ ├── 2025 │ │ └── episode-093.md │ └── index.md ├── linux-action-news │ ├── 2017 │ │ ├── episode-000.md │ │ ├── episode-001.md │ │ ├── episode-002.md │ │ ├── episode-003.md │ │ ├── episode-004.md │ │ ├── episode-005.md │ │ ├── episode-006.md │ │ ├── episode-007.md │ │ ├── episode-008.md │ │ ├── episode-009.md │ │ ├── episode-010.md │ │ ├── episode-011.md │ │ ├── episode-012.md │ │ ├── episode-013.md │ │ ├── episode-014.md │ │ ├── episode-015.md │ │ ├── episode-016.md │ │ ├── episode-017.md │ │ ├── episode-018.md │ │ ├── episode-019.md │ │ ├── episode-020.md │ │ ├── episode-021.md │ │ ├── episode-022.md │ │ ├── episode-023.md │ │ ├── episode-024.md │ │ ├── episode-025.md │ │ ├── episode-026.md │ │ ├── episode-027.md │ │ ├── episode-028.md │ │ ├── episode-029.md │ │ ├── episode-030.md │ │ ├── episode-031.md │ │ ├── episode-032.md │ │ ├── episode-033.md │ │ └── episode-034.md │ ├── 2018 │ │ ├── episode-035.md │ │ ├── episode-036.md │ │ ├── episode-037.md │ │ ├── episode-038.md │ │ ├── episode-039.md │ │ ├── episode-040.md │ │ ├── episode-041.md │ │ ├── episode-042.md │ │ ├── episode-043.md │ │ ├── episode-044.md │ │ ├── episode-045.md │ │ ├── episode-046.md │ │ ├── episode-047.md │ │ ├── episode-048.md │ │ ├── episode-049.md │ │ ├── episode-050.md │ │ ├── episode-051.md │ │ ├── episode-052.md │ │ ├── episode-053.md │ │ ├── episode-054.md │ │ ├── episode-055.md │ │ ├── episode-056.md │ │ ├── episode-057.md │ │ ├── episode-058.md │ │ ├── episode-059.md │ │ ├── episode-060.md │ │ ├── episode-061.md │ │ ├── episode-062.md │ │ ├── episode-063.md │ │ ├── episode-064.md │ │ ├── episode-065.md │ │ ├── episode-066.md │ │ ├── episode-067.md │ │ ├── episode-068.md │ │ ├── episode-069.md │ │ ├── episode-070.md │ │ ├── episode-071.md │ │ ├── episode-072.md │ │ ├── episode-073.md │ │ ├── episode-074.md │ │ ├── episode-075.md │ │ ├── episode-076.md │ │ ├── episode-077.md │ │ ├── episode-078.md │ │ ├── episode-079.md │ │ ├── episode-080.md │ │ ├── episode-081.md │ │ ├── episode-082.md │ │ ├── episode-083.md │ │ ├── episode-084.md │ │ ├── episode-085.md │ │ └── episode-086.md │ ├── 2019 │ │ ├── episode-087.md │ │ ├── episode-088.md │ │ ├── episode-089.md │ │ ├── episode-090.md │ │ ├── episode-091.md │ │ ├── episode-092.md │ │ ├── episode-093.md │ │ ├── episode-094.md │ │ ├── episode-095.md │ │ ├── episode-096.md │ │ ├── episode-097.md │ │ ├── episode-098.md │ │ ├── episode-099.md │ │ ├── episode-100.md │ │ ├── episode-101.md │ │ ├── episode-102.md │ │ ├── episode-103.md │ │ ├── episode-104.md │ │ ├── episode-105.md │ │ ├── episode-106.md │ │ ├── episode-107.md │ │ ├── episode-108.md │ │ ├── episode-109.md │ │ ├── episode-110.md │ │ ├── episode-111.md │ │ ├── episode-112.md │ │ ├── episode-113.md │ │ ├── episode-114.md │ │ ├── episode-115.md │ │ ├── episode-116.md │ │ ├── episode-117.md │ │ ├── episode-118.md │ │ ├── episode-119.md │ │ ├── episode-120.md │ │ ├── episode-121.md │ │ ├── episode-122.md │ │ ├── episode-123.md │ │ ├── episode-124.md │ │ ├── episode-125.md │ │ ├── episode-126.md │ │ ├── episode-127.md │ │ ├── episode-128.md │ │ ├── episode-129.md │ │ ├── episode-130.md │ │ ├── episode-131.md │ │ ├── episode-132.md │ │ ├── episode-133.md │ │ ├── episode-134.md │ │ ├── episode-135.md │ │ ├── episode-136.md │ │ ├── episode-137.md │ │ └── episode-138.md │ ├── 2020 │ │ ├── episode-139.md │ │ ├── episode-140.md │ │ ├── episode-141.md │ │ ├── episode-142.md │ │ ├── episode-143.md │ │ ├── episode-144.md │ │ ├── episode-145.md │ │ ├── episode-146.md │ │ ├── episode-147.md │ │ ├── episode-148.md │ │ ├── episode-149.md │ │ ├── episode-150.md │ │ ├── episode-151.md │ │ ├── episode-152.md │ │ ├── episode-153.md │ │ ├── episode-154.md │ │ ├── episode-155.md │ │ ├── episode-156.md │ │ ├── episode-157.md │ │ ├── episode-158.md │ │ ├── episode-159.md │ │ ├── episode-160.md │ │ ├── episode-161.md │ │ ├── episode-162.md │ │ ├── episode-163.md │ │ ├── episode-164.md │ │ ├── episode-165.md │ │ ├── episode-166.md │ │ ├── episode-167.md │ │ ├── episode-168.md │ │ └── episode-169.md │ ├── 2021 │ │ ├── episode-170.md │ │ ├── episode-171.md │ │ ├── episode-172.md │ │ ├── episode-173.md │ │ ├── episode-174.md │ │ ├── episode-175.md │ │ ├── episode-176.md │ │ ├── episode-177.md │ │ ├── episode-178.md │ │ ├── episode-179.md │ │ ├── episode-180.md │ │ ├── episode-181.md │ │ ├── episode-182.md │ │ ├── episode-183.md │ │ ├── episode-184.md │ │ ├── episode-185.md │ │ ├── episode-186.md │ │ ├── episode-187.md │ │ ├── episode-188.md │ │ ├── episode-189.md │ │ ├── episode-190.md │ │ ├── episode-191.md │ │ ├── episode-192.md │ │ ├── episode-193.md │ │ ├── episode-194.md │ │ ├── episode-195.md │ │ ├── episode-196.md │ │ ├── episode-197.md │ │ ├── episode-198.md │ │ ├── episode-199.md │ │ ├── episode-200.md │ │ ├── episode-201.md │ │ ├── episode-202.md │ │ ├── episode-203.md │ │ ├── episode-204.md │ │ ├── episode-205.md │ │ ├── episode-206.md │ │ ├── episode-207.md │ │ ├── episode-208.md │ │ ├── episode-209.md │ │ ├── episode-210.md │ │ ├── episode-211.md │ │ ├── episode-212.md │ │ ├── episode-213.md │ │ ├── episode-214.md │ │ ├── episode-215.md │ │ ├── episode-216.md │ │ ├── episode-217.md │ │ ├── episode-218.md │ │ ├── episode-219.md │ │ ├── episode-220.md │ │ └── episode-221.md │ ├── 2022 │ │ ├── episode-222.md │ │ ├── episode-223.md │ │ ├── episode-224.md │ │ ├── episode-225.md │ │ ├── episode-226.md │ │ ├── episode-227.md │ │ ├── episode-228.md │ │ ├── episode-229.md │ │ ├── episode-230.md │ │ ├── episode-231.md │ │ ├── episode-232.md │ │ ├── episode-233.md │ │ ├── episode-234.md │ │ ├── episode-235.md │ │ ├── episode-236.md │ │ ├── episode-237.md │ │ ├── episode-238.md │ │ ├── episode-239.md │ │ ├── episode-240.md │ │ ├── episode-241.md │ │ ├── episode-242.md │ │ ├── episode-243.md │ │ ├── episode-244.md │ │ ├── episode-245.md │ │ ├── episode-246.md │ │ ├── episode-247.md │ │ ├── episode-248.md │ │ ├── episode-249.md │ │ ├── episode-250.md │ │ ├── episode-251.md │ │ ├── episode-252.md │ │ ├── episode-253.md │ │ ├── episode-254.md │ │ ├── episode-255.md │ │ ├── episode-256.md │ │ ├── episode-257.md │ │ ├── episode-258.md │ │ ├── episode-259.md │ │ ├── episode-260.md │ │ ├── episode-261.md │ │ ├── episode-262.md │ │ ├── episode-263.md │ │ ├── episode-264.md │ │ ├── episode-265.md │ │ ├── episode-266.md │ │ ├── episode-267.md │ │ ├── episode-268.md │ │ ├── episode-269.md │ │ ├── episode-270.md │ │ ├── episode-271.md │ │ ├── episode-272.md │ │ └── episode-273.md │ ├── 2023 │ │ ├── episode-274.md │ │ ├── episode-275.md │ │ ├── episode-276.md │ │ ├── episode-277.md │ │ ├── episode-278.md │ │ ├── episode-279.md │ │ ├── episode-280.md │ │ ├── episode-281.md │ │ ├── episode-282.md │ │ ├── episode-283.md │ │ ├── episode-284.md │ │ ├── episode-285.md │ │ ├── episode-286.md │ │ ├── episode-287.md │ │ ├── episode-288.md │ │ ├── episode-289.md │ │ ├── episode-290.md │ │ ├── episode-291.md │ │ ├── episode-292.md │ │ ├── episode-293.md │ │ ├── episode-294.md │ │ ├── episode-295.md │ │ ├── episode-296.md │ │ ├── episode-297.md │ │ ├── episode-298.md │ │ └── episode-299.md │ └── index.md ├── linux-unplugged │ ├── 2013 │ │ ├── episode-001.md │ │ ├── episode-002.md │ │ ├── episode-003.md │ │ ├── episode-004.md │ │ ├── episode-005.md │ │ ├── episode-006.md │ │ ├── episode-007.md │ │ ├── episode-008.md │ │ ├── episode-009.md │ │ ├── episode-010.md │ │ ├── episode-011.md │ │ ├── episode-012.md │ │ ├── episode-013.md │ │ ├── episode-014.md │ │ ├── episode-015.md │ │ ├── episode-016.md │ │ ├── episode-017.md │ │ ├── episode-018.md │ │ ├── episode-019.md │ │ ├── episode-020.md │ │ └── episode-021.md │ ├── 2014 │ │ ├── episode-022.md │ │ ├── episode-023.md │ │ ├── episode-024.md │ │ ├── episode-025.md │ │ ├── episode-026.md │ │ ├── episode-027.md │ │ ├── episode-028.md │ │ ├── episode-029.md │ │ ├── episode-030.md │ │ ├── episode-031.md │ │ ├── episode-032.md │ │ ├── episode-033.md │ │ ├── episode-034.md │ │ ├── episode-035.md │ │ ├── episode-036.md │ │ ├── episode-037.md │ │ ├── episode-038.md │ │ ├── episode-039.md │ │ ├── episode-040.md │ │ ├── episode-041.md │ │ ├── episode-042.md │ │ ├── episode-043.md │ │ ├── episode-044.md │ │ ├── episode-045.md │ │ ├── episode-046.md │ │ ├── episode-047.md │ │ ├── episode-048.md │ │ ├── episode-049.md │ │ ├── episode-050.md │ │ ├── episode-051.md │ │ ├── episode-052.md │ │ ├── episode-053.md │ │ ├── episode-054.md │ │ ├── episode-055.md │ │ ├── episode-056.md │ │ ├── episode-057.md │ │ ├── episode-058.md │ │ ├── episode-059.md │ │ ├── episode-060.md │ │ ├── episode-061.md │ │ ├── episode-062.md │ │ ├── episode-063.md │ │ ├── episode-064.md │ │ ├── episode-065.md │ │ ├── episode-066.md │ │ ├── episode-067.md │ │ ├── episode-068.md │ │ ├── episode-069.md │ │ ├── episode-070.md │ │ ├── episode-071.md │ │ ├── episode-072.md │ │ └── episode-073.md │ ├── 2015 │ │ ├── episode-074.md │ │ ├── episode-075.md │ │ ├── episode-076.md │ │ ├── episode-077.md │ │ ├── episode-078.md │ │ ├── episode-079.md │ │ ├── episode-080.md │ │ ├── episode-081.md │ │ ├── episode-082.md │ │ ├── episode-083.md │ │ ├── episode-084.md │ │ ├── episode-085.md │ │ ├── episode-086.md │ │ ├── episode-087.md │ │ ├── episode-088.md │ │ ├── episode-089.md │ │ ├── episode-090.md │ │ ├── episode-091.md │ │ ├── episode-092.md │ │ ├── episode-093.md │ │ ├── episode-094.md │ │ ├── episode-095.md │ │ ├── episode-096.md │ │ ├── episode-097.md │ │ ├── episode-098.md │ │ ├── episode-099.md │ │ ├── episode-100.md │ │ ├── episode-101.md │ │ ├── episode-102.md │ │ ├── episode-103.md │ │ ├── episode-104.md │ │ ├── episode-105.md │ │ ├── episode-106.md │ │ ├── episode-107.md │ │ ├── episode-108.md │ │ ├── episode-109.md │ │ ├── episode-110.md │ │ ├── episode-111.md │ │ ├── episode-112.md │ │ ├── episode-113.md │ │ ├── episode-114.md │ │ ├── episode-115.md │ │ ├── episode-116.md │ │ ├── episode-117.md │ │ ├── episode-118.md │ │ ├── episode-119.md │ │ ├── episode-120.md │ │ ├── episode-121.md │ │ ├── episode-122.md │ │ ├── episode-123.md │ │ ├── episode-124.md │ │ └── episode-125.md │ ├── 2016 │ │ ├── episode-126.md │ │ ├── episode-127.md │ │ ├── episode-128.md │ │ ├── episode-129.md │ │ ├── episode-130.md │ │ ├── episode-131.md │ │ ├── episode-132.md │ │ ├── episode-133.md │ │ ├── episode-134.md │ │ ├── episode-135.md │ │ ├── episode-136.md │ │ ├── episode-137.md │ │ ├── episode-138.md │ │ ├── episode-139.md │ │ ├── episode-140.md │ │ ├── episode-141.md │ │ ├── episode-142.md │ │ ├── episode-143.md │ │ ├── episode-144.md │ │ ├── episode-145.md │ │ ├── episode-146.md │ │ ├── episode-147.md │ │ ├── episode-148.md │ │ ├── episode-149.md │ │ ├── episode-150.md │ │ ├── episode-151.md │ │ ├── episode-152.md │ │ ├── episode-153.md │ │ ├── episode-154.md │ │ ├── episode-155.md │ │ ├── episode-156.md │ │ ├── episode-157.md │ │ ├── episode-158.md │ │ ├── episode-159.md │ │ ├── episode-160.md │ │ ├── episode-161.md │ │ ├── episode-162.md │ │ ├── episode-163.md │ │ ├── episode-164.md │ │ ├── episode-165.md │ │ ├── episode-166.md │ │ ├── episode-167.md │ │ ├── episode-168.md │ │ ├── episode-169.md │ │ ├── episode-170.md │ │ ├── episode-171.md │ │ ├── episode-172.md │ │ ├── episode-173.md │ │ ├── episode-174.md │ │ ├── episode-175.md │ │ ├── episode-176.md │ │ └── episode-177.md │ ├── 2017 │ │ ├── episode-178.md │ │ ├── episode-179.md │ │ ├── episode-180.md │ │ ├── episode-181.md │ │ ├── episode-182.md │ │ ├── episode-183.md │ │ ├── episode-184.md │ │ ├── episode-185.md │ │ ├── episode-186.md │ │ ├── episode-187.md │ │ ├── episode-188.md │ │ ├── episode-189.md │ │ ├── episode-190.md │ │ ├── episode-191.md │ │ ├── episode-192.md │ │ ├── episode-193.md │ │ ├── episode-194.md │ │ ├── episode-195.md │ │ ├── episode-196.md │ │ ├── episode-197.md │ │ ├── episode-198.md │ │ ├── episode-199.md │ │ ├── episode-200.md │ │ ├── episode-201.md │ │ ├── episode-202.md │ │ ├── episode-203.md │ │ ├── episode-204.md │ │ ├── episode-205.md │ │ ├── episode-206.md │ │ ├── episode-207.md │ │ ├── episode-208.md │ │ ├── episode-209.md │ │ ├── episode-210.md │ │ ├── episode-211.md │ │ ├── episode-212.md │ │ ├── episode-213.md │ │ ├── episode-214.md │ │ ├── episode-215.md │ │ ├── episode-216.md │ │ ├── episode-217.md │ │ ├── episode-218.md │ │ ├── episode-219.md │ │ ├── episode-220.md │ │ ├── episode-221.md │ │ ├── episode-222.md │ │ ├── episode-223.md │ │ ├── episode-224.md │ │ ├── episode-225.md │ │ ├── episode-226.md │ │ ├── episode-227.md │ │ ├── episode-228.md │ │ └── episode-229.md │ ├── 2018 │ │ ├── episode-230.md │ │ ├── episode-231.md │ │ ├── episode-232.md │ │ ├── episode-233.md │ │ ├── episode-234.md │ │ ├── episode-235.md │ │ ├── episode-236.md │ │ ├── episode-237.md │ │ ├── episode-238.md │ │ ├── episode-239.md │ │ ├── episode-240.md │ │ ├── episode-241.md │ │ ├── episode-242.md │ │ ├── episode-243.md │ │ ├── episode-244.md │ │ ├── episode-245.md │ │ ├── episode-246.md │ │ ├── episode-247.md │ │ ├── episode-248.md │ │ ├── episode-249.md │ │ ├── episode-250.md │ │ ├── episode-251.md │ │ ├── episode-252.md │ │ ├── episode-253.md │ │ ├── episode-254.md │ │ ├── episode-255.md │ │ ├── episode-256.md │ │ ├── episode-257.md │ │ ├── episode-258.md │ │ ├── episode-259.md │ │ ├── episode-260.md │ │ ├── episode-261.md │ │ ├── episode-262.md │ │ ├── episode-263.md │ │ ├── episode-264.md │ │ ├── episode-265.md │ │ ├── episode-266.md │ │ ├── episode-267.md │ │ ├── episode-268.md │ │ ├── episode-269.md │ │ ├── episode-270.md │ │ ├── episode-271.md │ │ ├── episode-272.md │ │ ├── episode-273.md │ │ ├── episode-274.md │ │ ├── episode-275.md │ │ ├── episode-276.md │ │ ├── episode-277.md │ │ ├── episode-278.md │ │ ├── episode-279.md │ │ ├── episode-280.md │ │ └── episode-281.md │ ├── 2019 │ │ ├── episode-282.md │ │ ├── episode-283.md │ │ ├── episode-284.md │ │ ├── episode-285.md │ │ ├── episode-286.md │ │ ├── episode-287.md │ │ ├── episode-288.md │ │ ├── episode-289.md │ │ ├── episode-290.md │ │ ├── episode-291.md │ │ ├── episode-292.md │ │ ├── episode-293.md │ │ ├── episode-294.md │ │ ├── episode-295.md │ │ ├── episode-296.md │ │ ├── episode-297.md │ │ ├── episode-298.md │ │ ├── episode-299.md │ │ ├── episode-300.md │ │ ├── episode-301.md │ │ ├── episode-302.md │ │ ├── episode-303.md │ │ ├── episode-304.md │ │ ├── episode-305.md │ │ ├── episode-306.md │ │ ├── episode-307.md │ │ ├── episode-308.md │ │ ├── episode-309.md │ │ ├── episode-310.md │ │ ├── episode-311.md │ │ ├── episode-312.md │ │ ├── episode-313.md │ │ ├── episode-314.md │ │ ├── episode-315.md │ │ ├── episode-316.md │ │ ├── episode-317.md │ │ ├── episode-318.md │ │ ├── episode-319.md │ │ ├── episode-320.md │ │ ├── episode-321.md │ │ ├── episode-322.md │ │ ├── episode-323.md │ │ ├── episode-324.md │ │ ├── episode-325.md │ │ ├── episode-326.md │ │ ├── episode-327.md │ │ ├── episode-328.md │ │ ├── episode-329.md │ │ ├── episode-330.md │ │ ├── episode-331.md │ │ ├── episode-332.md │ │ ├── episode-333.md │ │ └── episode-334.md │ ├── 2020 │ │ ├── episode-335.md │ │ ├── episode-336.md │ │ ├── episode-337.md │ │ ├── episode-338.md │ │ ├── episode-339.md │ │ ├── episode-340.md │ │ ├── episode-341.md │ │ ├── episode-342.md │ │ ├── episode-343.md │ │ ├── episode-344.md │ │ ├── episode-345.md │ │ ├── episode-346.md │ │ ├── episode-347.md │ │ ├── episode-348.md │ │ ├── episode-349.md │ │ ├── episode-350.md │ │ ├── episode-351.md │ │ ├── episode-352.md │ │ ├── episode-353.md │ │ ├── episode-354.md │ │ ├── episode-355.md │ │ ├── episode-356.md │ │ ├── episode-357.md │ │ ├── episode-358.md │ │ ├── episode-359.md │ │ ├── episode-360.md │ │ ├── episode-361.md │ │ ├── episode-362.md │ │ ├── episode-363.md │ │ ├── episode-364.md │ │ ├── episode-365.md │ │ ├── episode-366.md │ │ ├── episode-367.md │ │ ├── episode-368.md │ │ ├── episode-369.md │ │ ├── episode-370.md │ │ ├── episode-371.md │ │ ├── episode-372.md │ │ ├── episode-373.md │ │ ├── episode-374.md │ │ ├── episode-375.md │ │ ├── episode-376.md │ │ ├── episode-377.md │ │ ├── episode-378.md │ │ ├── episode-379.md │ │ ├── episode-380.md │ │ ├── episode-381.md │ │ ├── episode-382.md │ │ ├── episode-383.md │ │ ├── episode-384.md │ │ ├── episode-385.md │ │ └── episode-386.md │ ├── 2021 │ │ ├── episode-387.md │ │ ├── episode-388.md │ │ ├── episode-389.md │ │ ├── episode-390.md │ │ ├── episode-391.md │ │ ├── episode-392.md │ │ ├── episode-393.md │ │ ├── episode-394.md │ │ ├── episode-395.md │ │ ├── episode-396.md │ │ ├── episode-397.md │ │ ├── episode-398.md │ │ ├── episode-399.md │ │ ├── episode-400.md │ │ ├── episode-401.md │ │ ├── episode-402.md │ │ ├── episode-403.md │ │ ├── episode-404.md │ │ ├── episode-405.md │ │ ├── episode-406.md │ │ ├── episode-407.md │ │ ├── episode-408.md │ │ ├── episode-409.md │ │ ├── episode-410.md │ │ ├── episode-411.md │ │ ├── episode-412.md │ │ ├── episode-413.md │ │ ├── episode-414.md │ │ ├── episode-415.md │ │ ├── episode-416.md │ │ ├── episode-417.md │ │ ├── episode-418.md │ │ ├── episode-419.md │ │ ├── episode-420.md │ │ ├── episode-421.md │ │ ├── episode-422.md │ │ ├── episode-423.md │ │ ├── episode-424.md │ │ ├── episode-425.md │ │ ├── episode-426.md │ │ ├── episode-427.md │ │ ├── episode-428.md │ │ ├── episode-429.md │ │ ├── episode-430.md │ │ ├── episode-431.md │ │ ├── episode-432.md │ │ ├── episode-433.md │ │ ├── episode-434.md │ │ ├── episode-435.md │ │ ├── episode-436.md │ │ ├── episode-437.md │ │ └── episode-438.md │ ├── 2022 │ │ ├── episode-439.md │ │ ├── episode-440.md │ │ ├── episode-441.md │ │ ├── episode-442.md │ │ ├── episode-443.md │ │ ├── episode-444.md │ │ ├── episode-445.md │ │ ├── episode-446.md │ │ ├── episode-447.md │ │ ├── episode-448.md │ │ ├── episode-449.md │ │ ├── episode-450.md │ │ ├── episode-451.md │ │ ├── episode-452.md │ │ ├── episode-453.md │ │ ├── episode-454.md │ │ ├── episode-455.md │ │ ├── episode-456.md │ │ ├── episode-457.md │ │ ├── episode-458.md │ │ ├── episode-459.md │ │ ├── episode-460.md │ │ ├── episode-461.md │ │ ├── episode-462.md │ │ ├── episode-463.md │ │ ├── episode-464.md │ │ ├── episode-465.md │ │ ├── episode-466.md │ │ ├── episode-467.md │ │ ├── episode-468.md │ │ ├── episode-469.md │ │ ├── episode-470.md │ │ ├── episode-471.md │ │ ├── episode-472.md │ │ ├── episode-473.md │ │ ├── episode-474.md │ │ ├── episode-475.md │ │ ├── episode-476.md │ │ ├── episode-477.md │ │ ├── episode-478.md │ │ ├── episode-479.md │ │ ├── episode-480.md │ │ ├── episode-481.md │ │ ├── episode-482.md │ │ ├── episode-483.md │ │ ├── episode-484.md │ │ ├── episode-485.md │ │ ├── episode-486.md │ │ ├── episode-487.md │ │ ├── episode-488.md │ │ ├── episode-489.md │ │ └── episode-490.md │ ├── 2023 │ │ ├── episode-491.md │ │ ├── episode-492.md │ │ ├── episode-493.md │ │ ├── episode-494.md │ │ ├── episode-495.md │ │ ├── episode-496.md │ │ ├── episode-497.md │ │ ├── episode-498.md │ │ ├── episode-499.md │ │ ├── episode-500.md │ │ ├── episode-501.md │ │ ├── episode-502.md │ │ ├── episode-503.md │ │ ├── episode-504.md │ │ ├── episode-505.md │ │ ├── episode-506.md │ │ ├── episode-507.md │ │ ├── episode-508.md │ │ ├── episode-509.md │ │ ├── episode-510.md │ │ ├── episode-511.md │ │ ├── episode-512.md │ │ ├── episode-513.md │ │ ├── episode-514.md │ │ ├── episode-515.md │ │ ├── episode-516.md │ │ ├── episode-517.md │ │ ├── episode-518.md │ │ ├── episode-519.md │ │ ├── episode-520.md │ │ ├── episode-521.md │ │ ├── episode-522.md │ │ ├── episode-523.md │ │ ├── episode-524.md │ │ ├── episode-525.md │ │ ├── episode-526.md │ │ ├── episode-527.md │ │ ├── episode-528.md │ │ ├── episode-529.md │ │ ├── episode-530.md │ │ ├── episode-531.md │ │ ├── episode-532.md │ │ ├── episode-533.md │ │ ├── episode-534.md │ │ ├── episode-535.md │ │ ├── episode-536.md │ │ ├── episode-537.md │ │ ├── episode-538.md │ │ ├── episode-539.md │ │ ├── episode-540.md │ │ ├── episode-541.md │ │ ├── episode-542.md │ │ └── episode-543.md │ ├── 2024 │ │ ├── episode-544.md │ │ ├── episode-545.md │ │ ├── episode-546.md │ │ ├── episode-547.md │ │ ├── episode-548.md │ │ ├── episode-549.md │ │ ├── episode-550.md │ │ ├── episode-551.md │ │ ├── episode-552.md │ │ ├── episode-553.md │ │ ├── episode-554.md │ │ ├── episode-555.md │ │ ├── episode-556.md │ │ ├── episode-557.md │ │ ├── episode-558.md │ │ ├── episode-559.md │ │ ├── episode-560.md │ │ ├── episode-561.md │ │ ├── episode-562.md │ │ ├── episode-563.md │ │ ├── episode-564.md │ │ ├── episode-565.md │ │ ├── episode-566.md │ │ ├── episode-567.md │ │ ├── episode-568.md │ │ ├── episode-569.md │ │ ├── episode-570.md │ │ ├── episode-571.md │ │ ├── episode-572.md │ │ ├── episode-573.md │ │ ├── episode-574.md │ │ ├── episode-575.md │ │ ├── episode-576.md │ │ ├── episode-577.md │ │ ├── episode-578.md │ │ ├── episode-579.md │ │ ├── episode-580.md │ │ ├── episode-581.md │ │ ├── episode-582.md │ │ ├── episode-583.md │ │ ├── episode-584.md │ │ ├── episode-585.md │ │ ├── episode-586.md │ │ ├── episode-587.md │ │ ├── episode-588.md │ │ ├── episode-589.md │ │ ├── episode-590.md │ │ ├── episode-591.md │ │ ├── episode-592.md │ │ ├── episode-593.md │ │ ├── episode-594.md │ │ └── episode-595.md │ ├── 2025 │ │ ├── episode-596.md │ │ ├── episode-597.md │ │ ├── episode-598.md │ │ ├── episode-599.md │ │ ├── episode-600.md │ │ ├── episode-601.md │ │ ├── episode-602.md │ │ ├── episode-603.md │ │ ├── episode-604.md │ │ ├── episode-605.md │ │ ├── episode-606.md │ │ ├── episode-607.md │ │ ├── episode-608.md │ │ ├── episode-609.md │ │ ├── episode-610.md │ │ ├── episode-611.md │ │ ├── episode-612.md │ │ ├── episode-613.md │ │ ├── episode-614.md │ │ ├── episode-615.md │ │ ├── episode-616.md │ │ └── episode-617.md │ └── index.md ├── office-hours │ ├── 2022 │ │ ├── episode-001.md │ │ ├── episode-002.md │ │ ├── episode-003.md │ │ ├── episode-004.md │ │ ├── episode-005.md │ │ ├── episode-006.md │ │ ├── episode-007.md │ │ ├── episode-008.md │ │ ├── episode-009.md │ │ ├── episode-010.md │ │ ├── episode-011.md │ │ ├── episode-012.md │ │ ├── episode-013.md │ │ ├── episode-014.md │ │ ├── episode-015.md │ │ ├── episode-016.md │ │ ├── episode-017.md │ │ ├── episode-018.md │ │ └── episode-019.md │ ├── 2023 │ │ ├── episode-020.md │ │ ├── episode-021.md │ │ ├── episode-022.md │ │ ├── episode-023.md │ │ ├── episode-024.md │ │ ├── episode-025.md │ │ ├── episode-026.md │ │ ├── episode-027.md │ │ ├── episode-028.md │ │ ├── episode-029.md │ │ ├── episode-030.md │ │ ├── episode-031.md │ │ ├── episode-032.md │ │ ├── episode-033.md │ │ ├── episode-034.md │ │ ├── episode-035.md │ │ ├── episode-036.md │ │ ├── episode-p01.md │ │ ├── episode-p02.md │ │ └── episode-p03.md │ └── index.md └── self-hosted │ ├── 2019 │ ├── episode-000.md │ ├── episode-001.md │ ├── episode-002.md │ ├── episode-003.md │ ├── episode-004.md │ ├── episode-005.md │ ├── episode-006.md │ ├── episode-007.md │ └── episode-008.md │ ├── 2020 │ ├── episode-009.md │ ├── episode-010.md │ ├── episode-011.md │ ├── episode-012.md │ ├── episode-013.md │ ├── episode-014.md │ ├── episode-015.md │ ├── episode-016.md │ ├── episode-017.md │ ├── episode-018.md │ ├── episode-019.md │ ├── episode-020.md │ ├── episode-021.md │ ├── episode-022.md │ ├── episode-023.md │ ├── episode-024.md │ ├── episode-025.md │ ├── episode-026.md │ ├── episode-027.md │ ├── episode-028.md │ ├── episode-029.md │ ├── episode-030.md │ ├── episode-031.md │ ├── episode-032.md │ ├── episode-033.md │ └── episode-034.md │ ├── 2021 │ ├── episode-035.md │ ├── episode-036.md │ ├── episode-037.md │ ├── episode-038.md │ ├── episode-039.md │ ├── episode-040.md │ ├── episode-041.md │ ├── episode-042.md │ ├── episode-043.md │ ├── episode-044.md │ ├── episode-045.md │ ├── episode-046.md │ ├── episode-047.md │ ├── episode-048.md │ ├── episode-049.md │ ├── episode-050.md │ ├── episode-051.md │ ├── episode-052.md │ ├── episode-053.md │ ├── episode-054.md │ ├── episode-055.md │ ├── episode-056.md │ ├── episode-057.md │ ├── episode-058.md │ ├── episode-059.md │ ├── episode-060.md │ └── episode-061.md │ ├── 2022 │ ├── episode-062.md │ ├── episode-063.md │ ├── episode-064.md │ ├── episode-065.md │ ├── episode-066.md │ ├── episode-067.md │ ├── episode-068.md │ ├── episode-069.md │ ├── episode-070.md │ ├── episode-071.md │ ├── episode-072.md │ ├── episode-073.md │ ├── episode-074.md │ ├── episode-075.md │ ├── episode-076.md │ ├── episode-077.md │ ├── episode-078.md │ ├── episode-079.md │ ├── episode-080.md │ ├── episode-081.md │ ├── episode-082.md │ ├── episode-083.md │ ├── episode-084.md │ ├── episode-085.md │ ├── episode-086.md │ └── episode-087.md │ ├── 2023 │ ├── episode-088.md │ ├── episode-089.md │ ├── episode-090.md │ ├── episode-091.md │ ├── episode-092.md │ ├── episode-093.md │ ├── episode-094.md │ ├── episode-095.md │ ├── episode-096.md │ ├── episode-097.md │ ├── episode-098.md │ ├── episode-099.md │ ├── episode-100.md │ ├── episode-101.md │ ├── episode-102.md │ ├── episode-103.md │ ├── episode-104.md │ ├── episode-105.md │ ├── episode-106.md │ ├── episode-107.md │ ├── episode-108.md │ ├── episode-109.md │ ├── episode-110.md │ ├── episode-111.md │ ├── episode-112.md │ └── episode-113.md │ ├── 2024 │ ├── episode-114.md │ ├── episode-115.md │ ├── episode-116.md │ ├── episode-117.md │ ├── episode-118.md │ ├── episode-119.md │ ├── episode-120.md │ ├── episode-121.md │ ├── episode-122.md │ ├── episode-123.md │ ├── episode-124.md │ ├── episode-125.md │ ├── episode-126.md │ ├── episode-127.md │ ├── episode-128.md │ ├── episode-129.md │ ├── episode-130.md │ ├── episode-131.md │ ├── episode-132.md │ ├── episode-133.md │ ├── episode-134.md │ ├── episode-135.md │ ├── episode-136.md │ ├── episode-137.md │ ├── episode-138.md │ └── episode-139.md │ ├── 2025 │ ├── episode-140.md │ ├── episode-141.md │ ├── episode-142.md │ ├── episode-143.md │ ├── episode-144.md │ ├── episode-145.md │ ├── episode-146.md │ ├── episode-147.md │ ├── episode-148.md │ ├── episode-149.md │ └── episode-150.md │ └── index.md ├── mkdocs.yml ├── requirements.txt ├── scrape.py ├── setup.cfg ├── templates └── episode.md.j2 └── theme ├── main.html ├── show-themes.css └── theme-switcher.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - name: Set up Python 3.9 11 | uses: actions/setup-python@v1 12 | with: 13 | python-version: 3.9 14 | - name: Install dependencies 15 | run: pip install -r dev-requirements.txt 16 | - name: Lint scraper 17 | run: flake8 scrape.py 18 | - name: Scrape data 19 | run: python3 scrape.py 20 | - name: Build site 21 | run: mkdocs build --verbose 22 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM squidfunk/mkdocs-material:7.2.8 2 | 3 | COPY requirements.txt /docs/requirements.txt 4 | RUN pip install -U -r /docs/requirements.txt 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JB Show Notes 2 | 3 | ![CI](https://github.com/selfhostedshow/show-notes/workflows/CI/badge.svg) 4 | 5 | ## Usage 6 | 7 | ``` 8 | pip3 install -U -r requirements.txt 9 | 10 | mkdocs build 11 | 12 | mkdocs serve 13 | ``` -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | 3 | flake8==3.9.2 4 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-055.md: -------------------------------------------------------------------------------- 1 | # CR 055: Software Exorcism 2 | 3 | 4 | 5 | * Air Date: 2013-06-24 6 | * Duration: 61 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | Even when you know better, you sometimes find yourself contributing to the problem, just to get the job done. This week the guys bare it all and discuss how they’ve ended up making things worse when they were hired to make it all better. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-056.md: -------------------------------------------------------------------------------- 1 | # CR 056: Microsoft’s in a Funk 2 | 3 | 4 | 5 | * Air Date: 2013-07-01 6 | * Duration: 64 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | Stinging from a Build conference hangover, the guys focus on their current disappoints with Microsoft. 11 | 12 | Then Mike gets a new OYUA box and has a few surprises, plus your emails, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-057.md: -------------------------------------------------------------------------------- 1 | # CR 057: The Dev Jungle 2 | 3 | 4 | 5 | * Air Date: 2013-07-08 6 | * Duration: 59 mins 45 secs 7 | 8 | ## About this episode 9 | 10 | The guys bust some myths around outsourcing, and insourcing development work. Striking a balance when trying to codify better practices in the workplace, sticking with good old tech for bad reasons… 11 | 12 | Plus a big batch of your feedback! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-058.md: -------------------------------------------------------------------------------- 1 | # CR 058: The 56k Solution 2 | 3 | 4 | 5 | * Air Date: 2013-07-15 6 | * Duration: 66 mins 52 secs 7 | 8 | ## About this episode 9 | 10 | Data protection in the cloud can mean a lot of different things. But what about in the context of software development? The guys tackle that question, and cover a great batch of your feedback. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-059.md: -------------------------------------------------------------------------------- 1 | # CR 059: Sour Apple 2 | 3 | 4 | 5 | * Air Date: 2013-07-22 6 | * Duration: 65 mins 51 secs 7 | 8 | ## About this episode 9 | 10 | A compromise at Apple turns Mike’s week upside down. Reeling from the setback we dig into Mike’s concerns with Canonical’s crowd sourced Ubuntu Edge phone. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-060.md: -------------------------------------------------------------------------------- 1 | # CR 060: Call In 2.0 2 | 3 | 4 | 5 | * Air Date: 2013-07-29 6 | * Duration: 70 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | Celebrating 60 episodes we take live calls from our audience and chat about the topics are their minds. Then we follow up on the indie developer Xbox One situation, read your feedback, and more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-061.md: -------------------------------------------------------------------------------- 1 | # CR 061: Office Hours 2 | 3 | 4 | 5 | * Air Date: 2013-08-05 6 | * Duration: 61 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris bare it all on their classic work/life balance struggles. Dealing with the unique circumstances of working at home, why it’s not the dream 9-to-5 types picture. 11 | 12 | Plus your feedback, a few follow ups and much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-063.md: -------------------------------------------------------------------------------- 1 | # CR 063: Mozilla Persona 2 | 3 | 4 | 5 | * Air Date: 2013-08-19 6 | * Duration: 95 mins 21 secs 7 | 8 | ## About this episode 9 | 10 | We chat with Dan at the Mozilla about his work on the Persona project, and how Mozilla offers developers a neutral platform for effective authentication. 11 | 12 | Plus our thoughts on what’s troubling the Ubuntu Edge project. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-064.md: -------------------------------------------------------------------------------- 1 | # CR 064: Bye Bye Ballmer 2 | 3 | 4 | 5 | * Air Date: 2013-08-26 6 | * Duration: 68 mins 56 secs 7 | 8 | ## About this episode 9 | 10 | Steve Ballmer’s legacy at Microsoft is controversial. We look over the long list of big and quiet successes and failures under his watch as CEO. Plus what we think the big problem facing Microsoft is going to be long term. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-065.md: -------------------------------------------------------------------------------- 1 | # CR 065: Love’s Labor Lost 2 | 3 | 4 | 5 | * Air Date: 2013-09-02 6 | * Duration: 62 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | It’s a Monday holiday episode of the Coder Radio show, so we opened up the Skype lines and officially declare this episode a grab bag of topics! 11 | 12 | From the death of JavaScript to Android vs iOS we touch on a list of favorite topics. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-066.md: -------------------------------------------------------------------------------- 1 | # CR 066: Docker All The Things 2 | 3 | 4 | 5 | * Air Date: 2013-09-09 6 | * Duration: 45 mins 45 secs 7 | 8 | ## About this episode 9 | 10 | We’re joined by two gentlemen from dotCloud, the folks behind Docker. We chat about what Docker is best at, how far out the 1.0 release is, the projects use of Go, the future of Docker, and much more. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-067.md: -------------------------------------------------------------------------------- 1 | # CR 067: Blazing 7 2 | 3 | 4 | 5 | * Air Date: 2013-09-16 6 | * Duration: 94 mins 10 secs 7 | 8 | ## About this episode 9 | 10 | iOS 7 is landing and Mike and Chris discuss what’s in store for developers, and the real reason to put a 64bit CPU in a cell phone. 11 | 12 | Plus the core of what’s wrong with Microsoft, practicing security from the start, your emails and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-068.md: -------------------------------------------------------------------------------- 1 | # CR 068: ASP.Magic 2 | 3 | 4 | 5 | * Air Date: 2013-09-23 6 | * Duration: 78 mins 42 secs 7 | 8 | ## About this episode 9 | 10 | Mike discusses the culture clash between the ASP.Net framework diehards, and the recent converts. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-070.md: -------------------------------------------------------------------------------- 1 | # CR 070: Toolchain Transitions 2 | 3 | 4 | 5 | * Air Date: 2013-10-07 6 | * Duration: 77 mins 21 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s making some big changes to his workflow, and sharing the tools in his box. We’ll look at the transition to Ubuntu Linux for Mike and his dev team, and the productivity advantages they see. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-071.md: -------------------------------------------------------------------------------- 1 | # CR 071: Betting on Linux 2 | 3 | 4 | 5 | * Air Date: 2013-10-14 6 | * Duration: 73 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | When targeting Linux, developers have to face some tough choices. Mike’s spent a year planning his move and discusses the opportunity and the risk of supporting Linux, how much effort should be put into targeting Ubuntu. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-073.md: -------------------------------------------------------------------------------- 1 | # CR 073: Baby Got Backend 2 | 3 | 4 | 5 | * Air Date: 2013-10-28 6 | * Duration: 69 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | From backups to deployment, we go back to the backend! The new solutions giving us the opportunity to reconsider the infrastructure around our projects. 11 | 12 | Plus gearing up for 64bit development, and much more. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-074.md: -------------------------------------------------------------------------------- 1 | # CR 074: Justifying Java 2 | 3 | 4 | 5 | * Air Date: 2013-11-04 6 | * Duration: 60 mins 10 secs 7 | 8 | ## About this episode 9 | 10 | After discussing recent hardware gadget purchases, and why, the guys jump into the case of Java. Mike’s ready to justify his love, for Java. 11 | 12 | Plus a little dev world hoopla, your feedback, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-075.md: -------------------------------------------------------------------------------- 1 | # CR 075: Deploying the Haterade 2 | 3 | 4 | 5 | * Air Date: 2013-11-11 6 | * Duration: 71 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | A recent snafu has left Mike in a bit of a bind with a client, and technical glitches nearly threatened to toss Chris out on the side of the road. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-076.md: -------------------------------------------------------------------------------- 1 | # CR 076: Burned by Agile 2 | 3 | 4 | 5 | * Air Date: 2013-11-18 6 | * Duration: 79 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | Burnout kills your productivity, creativity, and ability to get things done. The worst part? It can sneak up in different ways. Mike and Chris share how to recognize burnout, a quick fix to get you through, and their personal long term fixes. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-077.md: -------------------------------------------------------------------------------- 1 | # CR 077: The Big Xbone 2 | 3 | 4 | 5 | * Air Date: 2013-11-25 6 | * Duration: 66 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | Is the Xbox One the next big App platform? We’ll share theories. Plus where to books fit in for self education? Are they too slow, or is there a place for the printed medium in a rapidly developing industry? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-078.md: -------------------------------------------------------------------------------- 1 | # CR 078: Code Your Enthusiasm 2 | 3 | 4 | 5 | * Air Date: 2013-12-02 6 | * Duration: 104 mins 52 secs 7 | 8 | ## About this episode 9 | 10 | It’s a mailbag special with a hidden message. Mike and Chris discuss burnout a bit more, the pitfalls of bad Q&A, automated UI testing, and the open source projects we’re thankful for this year. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-080.md: -------------------------------------------------------------------------------- 1 | # CR 080: The SteamOS Conspiracy 2 | 3 | 4 | 5 | * Air Date: 2013-12-16 6 | * Duration: 72 mins 29 secs 7 | 8 | ## About this episode 9 | 10 | Early builds of SteamOS have landed, and we wonder what the larger implications are. Plus our thoughts on Microsoft's clear challenges, the problem with Qt Creator, and betting on the future. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2013/episode-082.md: -------------------------------------------------------------------------------- 1 | # CR 082: Coding Transitions 2 | 3 | 4 | 5 | * Air Date: 2013-12-30 6 | * Duration: 63 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | With a little reflection on the years big moments, the guys look ahead to 2014. We’ll debate what’s going to be the big stories of 2014 for developers, and the tech industry at large. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-083.md: -------------------------------------------------------------------------------- 1 | # CR 083: It’s Java’s Year 2 | 3 | 4 | 5 | * Air Date: 2014-01-06 6 | * Duration: 63 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | We’ll bust some java myths with Mark Heckler, a software engineer at Oracle. Plus the status of Duke, java on embedded systems, and what the future holds. 11 | 12 | Plus your feedback and some of Mike’s 2014 bets. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-084.md: -------------------------------------------------------------------------------- 1 | # CR 084: Ops vs Dev 2 | 3 | 4 | 5 | * Air Date: 2014-01-13 6 | * Duration: 60 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | The classic battle flairs up this week, and the guys discuss how an over controlling sysadmin can slow down an important project, and why that problem seems to be so much worse in business. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-085.md: -------------------------------------------------------------------------------- 1 | # CR 085: Backend Lockin 2 | 3 | 4 | 5 | * Air Date: 2014-01-20 6 | * Duration: 67 mins 50 secs 7 | 8 | ## About this episode 9 | 10 | Back-end services are really helping developers focus on their core competency, but how quickly will you need to go outside the box? What about vendor lock-in? 11 | 12 | Plus: A ton of great feedback, resisting the urge to hate change, and much more. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-087.md: -------------------------------------------------------------------------------- 1 | # CR 087: Waning Windows 2 | 3 | 4 | 5 | * Air Date: 2014-02-03 6 | * Duration: 68 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris address a number of topics this week, from open source project’s properly communicating with the media, Google selling Motorola to Lenovo, and a debate about Microsoft’s rumored CEO choice. 11 | 12 | Plus your feedback, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-088.md: -------------------------------------------------------------------------------- 1 | # CR 088: Paper Cuts Deep 2 | 3 | 4 | 5 | * Air Date: 2014-02-10 6 | * Duration: 72 mins 55 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris use the recent drama around Paper and Flappy Bird to have a wider discussion about the forces against Indie developers. And our reactions to the CEO change at Microsoft. 11 | 12 | Plus some great feedback, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-089.md: -------------------------------------------------------------------------------- 1 | # CR 089: The Cost of Comments 2 | 3 | 4 | 5 | * Air Date: 2014-02-17 6 | * Duration: 75 mins 28 secs 7 | 8 | ## About this episode 9 | 10 | Responding to criticism for an open source project, or a closed commercial project can be a very tricky things. Mike and Chris share their thoughts on how you can properly set expectations and respond to negative feedback. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-090.md: -------------------------------------------------------------------------------- 1 | # CR 090: Get Yourself Tested 2 | 3 | 4 | 5 | * Air Date: 2014-02-24 6 | * Duration: 57 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | Florian Motlik from Codeship joins us to discuss how Codeship’s hosted continuous integration and continuous deployment platform is bringing much needed relief. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-092.md: -------------------------------------------------------------------------------- 1 | # CR 092: Persona Non Grata 2 | 3 | 4 | 5 | * Air Date: 2014-03-10 6 | * Duration: 49 mins 14 secs 7 | 8 | ## About this episode 9 | 10 | We embrace Daylight saving time with a special call-in edition of Coder Radio. We discuss DRM, feedback, Mozilla’s Persona being put out to pasture and much more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-093.md: -------------------------------------------------------------------------------- 1 | # CR 093: Ruby off the Rails 2 | 3 | 4 | 5 | * Air Date: 2014-03-17 6 | * Duration: 59 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | The Rails community was blasted by a distinguished, and disgruntled member. But does his criticism hold up? And is there a larger problem at play here? Plus our thoughts on Amazon’s rumored new console, and a great batch of your feedback! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-094.md: -------------------------------------------------------------------------------- 1 | # CR 094: Paranoid Android Developers 2 | 3 | 4 | 5 | * Air Date: 2014-03-24 6 | * Duration: 59 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Android growth is exploding, and showing no signs of slowing down… So why are big players still avoiding the platform? We’ll challenge some common misconceptions on why developers avoid Android. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-095.md: -------------------------------------------------------------------------------- 1 | # CR 095: The Blame Game 2 | 3 | 4 | 5 | * Air Date: 2014-03-31 6 | * Duration: 60 mins 12 secs 7 | 8 | ## About this episode 9 | 10 | Are your projects cursed with knowledge of the present? Mike and Chris discuss the tendency to blame the last guy, and in some cases even scapegoat the absent. And why its only human to see all the mistakes of those who came before you. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-096.md: -------------------------------------------------------------------------------- 1 | # CR 096: MS Gadget 2.0 2 | 3 | 4 | 5 | * Air Date: 2014-04-07 6 | * Duration: 59 mins 8 secs 7 | 8 | ## About this episode 9 | 10 | Microsoft shocks the developer community by open sourcing some of their crown .Net jewels. Mike and Chris discuss the ramifications for Java, and the overall strategy Microsoft could be shifting too. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-097.md: -------------------------------------------------------------------------------- 1 | # CR 097: Open Source, Closed Wallets 2 | 3 | 4 | 5 | * Air Date: 2014-04-14 6 | * Duration: 59 mins 5 secs 7 | 8 | ## About this episode 9 | 10 | The Heartbleed bug has ignited a new round of open source doubters, but are the renewed concerns about the open source development model unfounded? And what can be done to avoid catastrophes like this in the future? We discuss. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-099.md: -------------------------------------------------------------------------------- 1 | # CR 099: Is That a Weave? 2 | 3 | 4 | 5 | * Air Date: 2014-04-28 6 | * Duration: 66 mins 45 secs 7 | 8 | ## About this episode 9 | 10 | We double down on your follow up. Working remotely, scratching your itch while at your current job, why we missed Heartbleed, and the video that will make you never again complain about how hard something is. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-100.md: -------------------------------------------------------------------------------- 1 | # CR 100: 0×64 2 | 3 | 4 | 5 | * Air Date: 2014-05-05 6 | * Duration: 60 mins 41 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris celebrate 100 weeks of Coder Radio by reading some great feedback, discussing new hardware choices, and why the future of desktop Linux is a little worrying. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-104.md: -------------------------------------------------------------------------------- 1 | # CR 104: Swift exit for Obj-C 2 | 3 | 4 | 5 | * Air Date: 2014-06-02 6 | * Duration: 27 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris share their raw reactions from Apple’s WWDC Keynote, including Mike’s big concerns about Swift. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-107.md: -------------------------------------------------------------------------------- 1 | # CR 107: New Hotness Exhaustion 2 | 3 | 4 | 5 | * Air Date: 2014-06-23 6 | * Duration: 52 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | Mike ponders if we can trust ourselves to walk the line between comfort, laziness and experience? 11 | 12 | Plus you great feedback, a few more I/O thoughts and a framework you can take home to mom. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-111.md: -------------------------------------------------------------------------------- 1 | # CR 111: Microsoft's Culture Anchor 2 | 3 | 4 | 5 | * Air Date: 2014-07-21 6 | * Duration: 44 mins 28 secs 7 | 8 | ## About this episode 9 | 10 | Chris makes the case for splitting Microsoft up into a consumer and services split, and why that would be the best possible outcome for developers. 11 | 12 | Plus some great feedback, more on selling free software and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-112.md: -------------------------------------------------------------------------------- 1 | # CR 112: The Xamarin Solution 2 | 3 | 4 | 5 | * Air Date: 2014-08-04 6 | * Duration: 63 mins 23 secs 7 | 8 | ## About this episode 9 | 10 | Mike discusses what his business has noted after using Xamarin and Xamarin.Forms. Plus we bust some myths, discuss use cases and advantages, the disadvantages. 11 | 12 | Plus you great feedback, some follow up and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-117.md: -------------------------------------------------------------------------------- 1 | # CR 117: Fools Aren't Protected 2 | 3 | 4 | 5 | * Air Date: 2014-09-02 6 | * Duration: 59 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | We take live calls, and discuss why .Net rules a Linux Admins life, learning OOP. Then, in light of the recent celebrity photo hacks, do developers have a moral obligation to protect the uninformed public? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-118.md: -------------------------------------------------------------------------------- 1 | # CR 118: Privacy is a Myth 2 | 3 | 4 | 5 | * Air Date: 2014-09-08 6 | * Duration: 48 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | The debate over whose responsibility it is to protect your cloud data heats up, we discuss how to get your confidence back & some Vala feedback. 11 | 12 | Plus the recent Markdown drama, the systemd hater club & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-119.md: -------------------------------------------------------------------------------- 1 | # CR 119: Notch Escapes 2 | 3 | 4 | 5 | * Air Date: 2014-09-15 6 | * Duration: 45 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | Did Microsoft buying Mojang come around because Notch was burned out? Is the problem systemic to independent developers who just love to code? 11 | 12 | Plus we respond to your strong feedback regarding privacy & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-120.md: -------------------------------------------------------------------------------- 1 | # CR 120: Xamarin Sham 2 | 3 | 4 | 5 | * Air Date: 2014-09-22 6 | * Duration: 46 mins 3 secs 7 | 8 | ## About this episode 9 | 10 | Developers all over the web are chiming in on the short comings (or lack there of) of Xamarin’s tools. Have developers been sold a hope and a lie? 11 | 12 | Plus why Android continues to come in second for developers, your feedback & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-123.md: -------------------------------------------------------------------------------- 1 | # CR 123: Coder Inquisition 2 | 3 | 4 | 5 | * Air Date: 2014-10-13 6 | * Duration: 45 mins 22 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris battle wits to expose the ridiculous nature of arguing about technology on the Internet. Plus our take on working on open source in your spare time, an update on teaching students to code & a software pick that will make you hungry! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-124.md: -------------------------------------------------------------------------------- 1 | # CR 124: Underwhelming Apple 2 | 3 | 4 | 5 | * Air Date: 2014-10-20 6 | * Duration: 60 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | We have a bunch of great feedback that keeps getting interrupted by Chris and Mike jumping into deep discussion about vendor lock in, Apple’s new hardware, balancing work and life & much more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-126.md: -------------------------------------------------------------------------------- 1 | # CR 126: HTML5: Back To The Future 2 | 3 | 4 | 5 | * Air Date: 2014-11-03 6 | * Duration: 53 mins 48 secs 7 | 8 | ## About this episode 9 | 10 | Is the need to save money & time by developers forcing end users into less than acceptable application experiences? Have we all been oversold on HTML5? 11 | 12 | Plus getting into QA, a cloud based IDE, some great feedback & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-127.md: -------------------------------------------------------------------------------- 1 | # CR 127: The Gorilla in the Stack 2 | 3 | 4 | 5 | * Air Date: 2014-11-10 6 | * Duration: 51 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris respond to feedback on lackluster HTML5 apps, then how developers can leverage social media to stay up to date & avoid drama. 11 | 12 | Then we blow apart the “Full Stack Developer” myth and the evolution of the term. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-128.md: -------------------------------------------------------------------------------- 1 | # CR 128: .NET’s Open Future 2 | 3 | 4 | 5 | * Air Date: 2014-11-17 6 | * Duration: 55 mins 45 secs 7 | 8 | ## About this episode 9 | 10 | Microsoft made headlines and has generated a lot of buzz around the open sourcing of .NET. So what does the future hold & what changes now? 11 | 12 | Plus some great feedback, how to find a developer, what to expect to pay & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-132.md: -------------------------------------------------------------------------------- 1 | # CR 132: Git your Pizza 2 | 3 | 4 | 5 | * Air Date: 2014-12-15 6 | * Duration: 58 mins 5 secs 7 | 8 | ## About this episode 9 | 10 | It’s the birth of ab open source project on this week’s Coder Radio. Plus it’s an open mic edition & we discuss a range of topics from Microsoft’s big mobile strategy that nobody is noticing, the best Linux dev environment, setting expectations & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-133.md: -------------------------------------------------------------------------------- 1 | # CR 133: Best Of Coder Radio 2014 2 | 3 | 4 | 5 | * Air Date: 2014-12-22 6 | * Duration: 67 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | We peer into the past of the show to pull out the amazing clips you guys suggested to us and fondly remember how funny it is to listen to Chris get trolled. Sit back, relax & enjoy the fun in this look back at best of Coder Radio! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2014/episode-134.md: -------------------------------------------------------------------------------- 1 | # CR 134: Fair And Balanced 2 | 3 | 4 | 5 | * Air Date: 2014-12-29 6 | * Duration: 50 mins 56 secs 7 | 8 | ## About this episode 9 | 10 | Mike is fired up by a topic that has been on fire over all of 2014. 11 | 12 | Is it finally time to let the other 95% of great programmers in? 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-135.md: -------------------------------------------------------------------------------- 1 | # CR 135: Macs Exodus 2 | 3 | 4 | 5 | * Air Date: 2015-01-05 6 | * Duration: 53 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | Is the quality of Apple’s desktop and mobile software causing a slow bleeding of developers? Chris & Mike debate what developers will do over 2015. 11 | 12 | Plus we read some great follow up, feature a community project & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-136.md: -------------------------------------------------------------------------------- 1 | # CR 136: Ruby is not Perl 2 | 3 | 4 | 5 | * Air Date: 2015-01-12 6 | * Duration: 56 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | Chris shares what’s prevented him from getting started with development & shares the three languages that are at the top of his list to try. 11 | 12 | Plus we get passionate after some feedback to the Mac Exodus topic & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-137.md: -------------------------------------------------------------------------------- 1 | # CR 137: Monumental Android Failure 2 | 3 | 4 | 5 | * Air Date: 2015-01-19 6 | * Duration: 49 mins 36 secs 7 | 8 | ## About this episode 9 | 10 | Well known developers have recently gone public with how much they make & where they make it from. Mike & Chris chew on the numbers & discuss the raw reality. 11 | 12 | Plus great feedback on Chris’ first development language & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-138.md: -------------------------------------------------------------------------------- 1 | # CR 138: Deploy Like an Animal 2 | 3 | 4 | 5 | * Air Date: 2015-01-26 6 | * Duration: 46 mins 42 secs 7 | 8 | ## About this episode 9 | 10 | It’s a tip show edition of Coder Radio. Mike shares a great way to get some Heroku features without the bill. 11 | 12 | Plus the annoying honeymoon period, your feedback & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-140.md: -------------------------------------------------------------------------------- 1 | # CR 140: NOde 2 | 3 | 4 | 5 | * Air Date: 2015-02-09 6 | * Duration: 55 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Can’t we all just settle down & focus? Mike’s just about had it with javascript framework madness. Plus could Microsoft be uniquely positioned to take advantage of the eventual die off of some frameworks? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-141.md: -------------------------------------------------------------------------------- 1 | # CR 141: Retro Extravaganza 2 | 3 | 4 | 5 | * Air Date: 2015-02-16 6 | * Duration: 69 mins 23 secs 7 | 8 | ## About this episode 9 | 10 | Join us as we hop in our time machine and revisit some past topics on the coder radio program. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-142.md: -------------------------------------------------------------------------------- 1 | # CR 142: Accounts Percievable 2 | 3 | 4 | 5 | * Air Date: 2015-02-23 6 | * Duration: 46 mins 10 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris start the show by sharing some hard learned advice, and discussing the events of the last two weeks. 11 | 12 | Then we touch on SuperFish, Ubuntu Touch, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-145.md: -------------------------------------------------------------------------------- 1 | # CR 145: Why Mike's Disgusted by Android 2 | 3 | 4 | 5 | * Air Date: 2015-03-16 6 | * Duration: 58 mins 21 secs 7 | 8 | ## About this episode 9 | 10 | Chris shares what he’s loving about Android from a users perspective & Mike goes into what is driving him crazy from a developer's standpoint. 11 | 12 | Plus redefining DevOps, starting a multi-user database & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-148.md: -------------------------------------------------------------------------------- 1 | # CR 148: Magical Contract Bids 2 | 3 | 4 | 5 | * Air Date: 2015-04-06 6 | * Duration: 61 mins 1 secs 7 | 8 | ## About this episode 9 | 10 | Mike had a dream & that dream didn’t work out. Today we discuss how fixed contracts lead to fixed death & with perfect hindsight we debate what we might have done differently. 11 | 12 | Plus some great feedback, a little nostalgia & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-149.md: -------------------------------------------------------------------------------- 1 | # CR 149: The Sociopath Code 2 | 3 | 4 | 5 | * Air Date: 2015-04-13 6 | * Duration: 49 mins 56 secs 7 | 8 | ## About this episode 9 | 10 | We discuss the top stories submitted by the audience this week. From the ultimate bridge burn to Stack Overflow’s developer survey & being ok with a little sociopathy. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-151.md: -------------------------------------------------------------------------------- 1 | # CR 151: Compromising Virtual Clouds 2 | 3 | 4 | 5 | * Air Date: 2015-04-28 6 | * Duration: 61 mins 49 secs 7 | 8 | ## About this episode 9 | 10 | Is Microsoft confusing the container market & blowing the implementation? 11 | 12 | Plus Apple gets caught rejecting Pebble compatible apps, we may have finally found the perfect Linux dev laptop & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-152.md: -------------------------------------------------------------------------------- 1 | # CR 152: The Open Pivot 2 | 3 | 4 | 5 | * Air Date: 2015-05-04 6 | * Duration: 52 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris reflect on Microsoft’s Build 2015 conference & discuss the shift to open industry wide. Mike also announces his new business with a focus on open source. 11 | 12 | Plus we discuss Visual Studio Code a bit, bad app ports, & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-161.md: -------------------------------------------------------------------------------- 1 | # CR 161: Good Guy Mike 2 | 3 | 4 | 5 | * Air Date: 2015-07-06 6 | * Duration: 53 mins 38 secs 7 | 8 | ## About this episode 9 | 10 | Mike is recovering from a weekend you wouldn't believe. Plus we revisit the web vs native topic with a vengeance & discuss the sun-setting of ActiveX. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-162.md: -------------------------------------------------------------------------------- 1 | # CR 162: Wandering in the Woods 2 | 3 | 4 | 5 | * Air Date: 2015-07-13 6 | * Duration: 40 mins 54 secs 7 | 8 | ## About this episode 9 | 10 | We look at the tough spot developers are finding themselves in, the huge changes in backend infrastructure over the years, some Swift surprises & the big topics Mike’s been chewing on during his “down time”. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-165.md: -------------------------------------------------------------------------------- 1 | # CR 165: .Net or .Not? 2 | 3 | 4 | 5 | * Air Date: 2015-08-03 6 | * Duration: 65 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Still smarting from his burn, Mike shares his hard learned lessons after flying too close to the sun. What really pushes us to move to the next big thing & becoming and staying employable by focusing on the right market. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-166.md: -------------------------------------------------------------------------------- 1 | # CR 166: Hamburger Non-Helper 2 | 3 | 4 | 5 | * Air Date: 2015-08-10 6 | * Duration: 44 mins 48 secs 7 | 8 | ## About this episode 9 | 10 | The big debate over today’s biggest UI compromise comes to life, Microsoft open sources its iOS-apps-on-Windows compatibility layer, the process of evaluating a new language, plus a book recommendation & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-168.md: -------------------------------------------------------------------------------- 1 | # CR 168: Template Driven Design 2 | 3 | 4 | 5 | * Air Date: 2015-08-24 6 | * Duration: 48 mins 51 secs 7 | 8 | ## About this episode 9 | 10 | Is Amazon another paradise of brogrammer culture? We have reason to suspect the recent reports may be overblown. Then meet Gigster, the VC backed service that wants to commoditize development. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-169.md: -------------------------------------------------------------------------------- 1 | # CR 169: Subscription Lock-in 2 | 3 | 4 | 5 | * Air Date: 2015-09-04 6 | * Duration: 33 mins 43 secs 7 | 8 | ## About this episode 9 | 10 | With Mike’s move to Florida in progress he joins us via phone for a run through of the major JetBrains subscription hoopla, transitioning from a tester to a developer & that big poaching scandal comes to an expensive close! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-170.md: -------------------------------------------------------------------------------- 1 | # CR 170: Apple Strokes The Tip 2 | 3 | 4 | 5 | * Air Date: 2015-09-14 6 | * Duration: 48 mins 1 secs 7 | 8 | ## About this episode 9 | 10 | Is the new iPad a capable developer machine? We discuss 3D Touch, the impact on developers, the release of the iPad Pro & some quick tips for finding a local development job. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-171.md: -------------------------------------------------------------------------------- 1 | # CR 171: Coder Craftsmen 2 | 3 | 4 | 5 | * Air Date: 2015-09-18 6 | * Duration: 55 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | Mike shares his excitement for Ionic, an advanced HTML5 hybrid mobile app Framework. Then Chris asks if the tools used to make the product, as long as the end result is good, really matter? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-173.md: -------------------------------------------------------------------------------- 1 | # CR 173: Sun Setting on Java 2 | 3 | 4 | 5 | * Air Date: 2015-10-05 6 | * Duration: 52 mins 22 secs 7 | 8 | ## About this episode 9 | 10 | A really simple mistake that many of us have made in the past, led to the Patreon hack. We discuss the situation & the bigger picture. 11 | 12 | Plus our take on the rumors that Oracle is planning the “obsolescence” of Java. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-174.md: -------------------------------------------------------------------------------- 1 | # CR 174: Below the Surface 2 | 3 | 4 | 5 | * Air Date: 2015-10-12 6 | * Duration: 56 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | The cultural challenges of living too far out of a “tech hotzone” hit home today. And our reactions and lessons learned from LastPass selling & if Microsoft has nailed convergence. 11 | 12 | Plus a quick chat about Chef & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-176.md: -------------------------------------------------------------------------------- 1 | # CR 176: Material Matters 2 | 3 | 4 | 5 | * Air Date: 2015-10-26 6 | * Duration: 63 mins 9 secs 7 | 8 | ## About this episode 9 | 10 | The guys admit there is a growing amount of evidence pointing to going your own way. What the Linux desktop has finally gotten right, why Mike is ready to can his wearable project. 11 | 12 | Plus a Android BuildConfig pro tip, feedback & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-178.md: -------------------------------------------------------------------------------- 1 | # CR 178: Windows XP of the Net 2 | 3 | 4 | 5 | * Air Date: 2015-11-09 6 | * Duration: 53 mins 33 secs 7 | 8 | ## About this episode 9 | 10 | Is open source software immoral in some market conditions? The guys debate. Plus Google’s impressive new open source project, standing while you work is going out of style & how to adapt to the changing need of your users gracefully & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-179.md: -------------------------------------------------------------------------------- 1 | # CR 179: I Came, I Saw, Ionic 2 | 3 | 4 | 5 | * Air Date: 2015-11-16 6 | * Duration: 58 mins 52 secs 7 | 8 | ## About this episode 9 | 10 | Microsoft kills a major Windows development initiative & becomes one of the top contributors to Go. 11 | 12 | Mike has a new love & gets a bit ironic about Ionic. 13 | 14 | Plus some great feedback & we bask in the dawn of the age of utility. 15 | 16 | ## Your hosts 17 | * [Chris Fisher](https://coder.show/hosts/chrislas) 18 | * [Michael Dominick](https://coder.show/hosts/michael) 19 | 20 | ## Sponsored by 21 | 22 | None 23 | 24 | 25 | 26 | ## Episode links 27 | 28 | None 29 | 30 | 31 | 32 | ## Tags 33 | 34 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-180.md: -------------------------------------------------------------------------------- 1 | # CR 180: Barkeep, Ionic, Please 2 | 3 | 4 | 5 | * Air Date: 2015-11-23 6 | * Duration: 54 mins 41 secs 7 | 8 | ## About this episode 9 | 10 | Mike has a big announcement! Plus why Chris is a bit offended by the idea of Swift on the server, Microsoft delivers on the open source goods & a few quick gift ideas for anyone who wants to focus. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-182.md: -------------------------------------------------------------------------------- 1 | # CR 182: Open Season on Swift 2 | 3 | 4 | 5 | * Air Date: 2015-12-07 6 | * Duration: 74 mins 23 secs 7 | 8 | ## About this episode 9 | 10 | Ballmer calls out Microsoft’s bogus revenue numbers over Azure, & we expand on his point to discuss an overall trend towards “hero CEOs”. The open sourcing of Swift, what Apple got really right & what areas still really need improvement & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-184.md: -------------------------------------------------------------------------------- 1 | # CR 184: Mike’s Big Year 2 | 3 | 4 | 5 | * Air Date: 2015-12-21 6 | * Duration: 62 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | As we gear up for our end of year episode, we look back at a few moments in 2015 that we loved. From big news, new directions & industry trends that reflected into our personal lives. 11 | 12 | It’s a very special edition of Coder Radio! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2015/episode-185.md: -------------------------------------------------------------------------------- 1 | # CR 185: Predictive Coder 2 | 3 | 4 | 5 | * Air Date: 2015-12-28 6 | * Duration: 68 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | When you look back at the year, a few really big things jump out for developers. Mike & Chris discuss the trends that seem to have really mattered, then debate about how things might change in 2016. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-187.md: -------------------------------------------------------------------------------- 1 | # CR 187: Slacking while Coding 2 | 3 | 4 | 5 | * Air Date: 2016-01-11 6 | * Duration: 52 mins 50 secs 7 | 8 | ## About this episode 9 | 10 | Is the age of Apps finally coming to an end? Data points to yes & we discuss how platforms like Slack might offer more potential. 11 | 12 | Then, more web developers are switching to Linux, this may be the start of a trend & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-189.md: -------------------------------------------------------------------------------- 1 | # CR 189: I'm OOPting Out 2 | 3 | 4 | 5 | * Air Date: 2016-01-25 6 | * Duration: 69 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | We discuss a compelling case against Object-Oriented programming, is it truly all bad? Plus the cold chills the new Rails Doctrine gives us, the long-term ramifications of progress over stability & convention vs configuration strategy & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-190.md: -------------------------------------------------------------------------------- 1 | # CR 190: Death of the Freelancer 2 | 3 | 4 | 5 | * Air Date: 2016-02-01 6 | * Duration: 50 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | A brutally honest episode. Mike and Chris air some hard learned lessons, toss out the episode playbook & tell it like it is! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-191.md: -------------------------------------------------------------------------------- 1 | # CR 191: Parsing Your Options 2 | 3 | 4 | 5 | * Air Date: 2016-02-08 6 | * Duration: 38 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | Something is rotten at GitHub. We discuss the big problem they're facing & why for most of us, we already have a backup plan. 11 | 12 | Plus why Project Rider might get you excited & how the Parse shutdown is hitting Mike. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-193.md: -------------------------------------------------------------------------------- 1 | # CR 193: Big Blue's Swift Move 2 | 3 | 4 | 5 | * Air Date: 2016-02-22 6 | * Duration: 72 mins 51 secs 7 | 8 | ## About this episode 9 | 10 | Mike shares his adventures in Ubuntu land this week, after a MacBook disaster. Then we discuss the implications of IBM backing Swift on their cloud. 11 | 12 | Plus some feedback, code as speech, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-194.md: -------------------------------------------------------------------------------- 1 | # CR 194: Xamarin through the Ages 2 | 3 | 4 | 5 | * Air Date: 2016-03-01 6 | * Duration: 91 mins 29 secs 7 | 8 | ## About this episode 9 | 10 | Mike couldn't make it this week, so we decided that with Microsoft purchasing Xamarin that this would be the perfect time to take a glance back on our coverage of Xamarin & look at how they have come to their current situation 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-198.md: -------------------------------------------------------------------------------- 1 | # CR 198: Brave New Code 2 | 3 | 4 | 5 | * Air Date: 2016-03-28 6 | * Duration: 61 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | Is Google dumping to compete with Nuance as they prepare to unleash their voice API to developers for free? Mike updates us on his Linux switch adventure, his new toy & a couple of important PSAs. 11 | 12 | Plus feedback & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-199.md: -------------------------------------------------------------------------------- 1 | # CR 199: The Good Xamaritan 2 | 3 | 4 | 5 | * Air Date: 2016-04-04 6 | * Duration: 52 mins 18 secs 7 | 8 | ## About this episode 9 | 10 | Fresh off Build 2016, we talk about everything from free Xamarian, Bash on Windows & the changing case for .NET. 11 | 12 | Plus Mike shares some assumption smashing news & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-201.md: -------------------------------------------------------------------------------- 1 | # CR 201: Tough Market 2 | 3 | 4 | 5 | * Air Date: 2016-04-18 6 | * Duration: 85 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | In this episode, Noah joins Chris to talk about the whole hiring process & experiences they've had while also taking a look back into the past of the show to some of the more interesting topics on the matter. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-205.md: -------------------------------------------------------------------------------- 1 | # CR 205: Git off the Rails 2 | 3 | 4 | 5 | * Air Date: 2016-05-16 6 | * Duration: 62 mins 6 secs 7 | 8 | ## About this episode 9 | 10 | Github’s new pricing has a bit of a catch, Rob Robinson says Rails is yesterday’s software in light of Swift & GO. Which we simply have to talk about. 11 | 12 | Then we jump in our time machine and dazzle you with our new term predictions & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-206.md: -------------------------------------------------------------------------------- 1 | # CR 206: Fat Bottom APIs 2 | 3 | 4 | 5 | * Air Date: 2016-05-23 6 | * Duration: 60 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | We dig through the relevant bits of Google I/O, the possible anti-web move Instant Apps represent, no Kotlin & big improvements we’re excited about. 11 | 12 | Plus Mike’s take on Android Studio 2.2 & Chris’ take on what we’re all calling “services”. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-209.md: -------------------------------------------------------------------------------- 1 | # CR 209: WWDC Hypercap 2 | 3 | 4 | 5 | * Air Date: 2016-06-13 6 | * Duration: 67 mins 14 secs 7 | 8 | ## About this episode 9 | 10 | We start with some developer news of the week, then dig into the best bits from WWDC. 11 | 12 | Plus Mike shares his thoughts on some new hardware & the guys discuss the mystery of differential privacy. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-210.md: -------------------------------------------------------------------------------- 1 | # CR 210: Productivity Theater 2 | 3 | 4 | 5 | * Air Date: 2016-06-21 6 | * Duration: 47 mins 54 secs 7 | 8 | ## About this episode 9 | 10 | It’s death by a thousand scrums this week & then admit there may be some value in frequent project communication. 11 | 12 | Then we start the machine learning discussion, talk a little Android N & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-211.md: -------------------------------------------------------------------------------- 1 | # CR 211: Ai Theater 2 | 3 | 4 | 5 | * Air Date: 2016-06-27 6 | * Duration: 55 mins 49 secs 7 | 8 | ## About this episode 9 | 10 | What is Machine Learning? How are companies & developers using it? We discuss that, the major approaches in the market & Apple’s use of Differential Privacy. 11 | 12 | Plus Mike’s new Linux desktop, some feedback & a lot more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-212.md: -------------------------------------------------------------------------------- 1 | # CR 212: Derailing Java 2 | 3 | 4 | 5 | * Air Date: 2016-07-04 6 | * Duration: 69 mins 52 secs 7 | 8 | ## About this episode 9 | 10 | This week Noah steps in to host while Chris is out and cover Rails 5, Oracle’s suspicious silence around Java EE, talk about mike’s latest linux adventure, give some freelancing advice & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-213.md: -------------------------------------------------------------------------------- 1 | # CR 213: PokéCode 2 | 3 | 4 | 5 | * Air Date: 2016-07-11 6 | * Duration: 64 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Nintendo has a hit on their hands, is this a game changer for the company? Mike & Chris discuss the big picture ramifications of Pokémon GO. 11 | 12 | Plus beer brewed by bots, our thoughts on Java EE, Spring Boot & getting PHP to really do what you want. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-214.md: -------------------------------------------------------------------------------- 1 | # CR 214: Make Coding Great Again 2 | 3 | 4 | 5 | * Air Date: 2016-07-18 6 | * Duration: 52 mins 33 secs 7 | 8 | ## About this episode 9 | 10 | Mike reflects on some critical feedback, shares impressions of his new Linux PC, we announce the new Coding Challenge & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-216.md: -------------------------------------------------------------------------------- 1 | # CR 216: Mismatch Patterns in Productivity 2 | 3 | 4 | 5 | * Air Date: 2016-08-01 6 | * Duration: 38 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | Mike & Chris rip up the thinking behind iPad-only is the new desktop Linux mantra, discuss the date of LaunchKit, announce a new coding challenge & much more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-218.md: -------------------------------------------------------------------------------- 1 | # CR 218: Agile Scapegoat 2 | 3 | 4 | 5 | * Air Date: 2016-08-15 6 | * Duration: 71 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | Fresh off new Agile courses Mike shares what he feels might be his core problems with Agile software development. Our thoughts on software quality in general, the big slack problem & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-220.md: -------------------------------------------------------------------------------- 1 | # CR 220: Docker Dumpster Fire 2 | 3 | 4 | 5 | * Air Date: 2016-08-29 6 | * Duration: 57 mins 6 secs 7 | 8 | ## About this episode 9 | 10 | Docker quality appears to be getting worse, Mike & Chris analyze the mystery of Docker’s decline & likely causes. 11 | 12 | Plus we discuss the possibility of an AI monopoly, moving fasting & looking for a web-framework matchmaker. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-222.md: -------------------------------------------------------------------------------- 1 | # CR 222: Rusty Support 2 | 3 | 4 | 5 | * Air Date: 2016-09-12 6 | * Duration: 54 mins 11 secs 7 | 8 | ## About this episode 9 | 10 | The world's most egregious gadget sin is committed, why Mike still wants Star Trek gadgets, a Rust divorce, learning the fragile state of state & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-223.md: -------------------------------------------------------------------------------- 1 | # CR 223: Get Swifty 2 | 3 | 4 | 5 | * Air Date: 2016-09-19 6 | * Duration: 52 mins 11 secs 7 | 8 | ## About this episode 9 | 10 | Mike & Chris travel interdimensionally to discuss the pressure to get Swifty, marvel at Vapor.codes, witness the fall of Eclipse & the rise of Microsoft. 11 | 12 | Plus our super quick take on the iPhone 7 & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-224.md: -------------------------------------------------------------------------------- 1 | # CR 224: Vaporware on the Server 2 | 3 | 4 | 5 | * Air Date: 2016-09-26 6 | * Duration: 48 mins 38 secs 7 | 8 | ## About this episode 9 | 10 | The growing case for Swift on the server & Java 8’s underplayed success are the two main topics this week. We also discuss Dart on Android & some platform fundamentals with renewed vigor! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-225.md: -------------------------------------------------------------------------------- 1 | # CR 225: The ROI of Things 2 | 3 | 4 | 5 | * Air Date: 2016-10-03 6 | * Duration: 59 mins 52 secs 7 | 8 | ## About this episode 9 | 10 | Mike & Chris share hard earned lessons for the first time about the expected value in the effort we put into our various next great ideas, marketing, attending conferences & whatever “networking” is suppose to be. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-226.md: -------------------------------------------------------------------------------- 1 | # CR 226: Coder Profiling 2 | 3 | 4 | 5 | * Air Date: 2016-10-10 6 | * Duration: 45 mins 8 secs 7 | 8 | ## About this episode 9 | 10 | We flunk and debunk the Joel test, and ponder the long tail of coder interviews gone wrong, Apple's removal of Dash, KDevelop on windows & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-227.md: -------------------------------------------------------------------------------- 1 | # CR 227: Everybody's Keyboard Fighting 2 | 3 | 4 | 5 | * Air Date: 2016-10-17 6 | * Duration: 62 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | The Dash debacle gets the full Coder this week & Mike’s got a new sweet keyboard he tells us all about. 11 | 12 | Plus how it feels to learn Javascript in a React world & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-228.md: -------------------------------------------------------------------------------- 1 | # CR 228: A Lemur Eats an Apple 2 | 3 | 4 | 5 | * Air Date: 2016-10-24 6 | * Duration: 56 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | Mike betting on server side bots & AI, making the big jump from the MacBook to a System76 Lemur running Linux. We talk about the platform development opportunities for a small shop. 11 | 12 | Plus how to design APIs that don’t suck & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-229.md: -------------------------------------------------------------------------------- 1 | # CR 229: Old Men Yell at Macbooks 2 | 3 | 4 | 5 | * Air Date: 2016-10-31 6 | * Duration: 62 mins 55 secs 7 | 8 | ## About this episode 9 | 10 | Let's get real about the tools we use this week. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-230.md: -------------------------------------------------------------------------------- 1 | # CR 230: Microsoft’s Public Shame 2 | 3 | 4 | 5 | * Air Date: 2016-11-07 6 | * Duration: 58 mins 57 secs 7 | 8 | ## About this episode 9 | 10 | Ballmer is trying to pin it all on Bill, MacBook follow up & Lemur struggles. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-231.md: -------------------------------------------------------------------------------- 1 | # CR 231: Scrum Burger 2 | 3 | 4 | 5 | * Air Date: 2016-11-14 6 | * Duration: 48 mins 55 secs 7 | 8 | ## About this episode 9 | 10 | We ponder why Docker is a dumpster fire, doubt Samsung’s new Ai Bot platform, discover Botkit & discuss killing the Scrum. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-232.md: -------------------------------------------------------------------------------- 1 | # CR 232: Minimal Functional Product 2 | 3 | 4 | 5 | * Air Date: 2016-11-21 6 | * Duration: 62 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | Mike is back from vacation has somethings on his mind he shares this week. Hardware follow up, customer management for devs, book recommendations & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-233.md: -------------------------------------------------------------------------------- 1 | # CR 233: Stalker Box 2 | 3 | 4 | 5 | * Air Date: 2016-11-28 6 | * Duration: 66 mins 16 secs 7 | 8 | ## About this episode 9 | 10 | Mike reviews the state of hybrid development in the last days of 2016 & chat about his new Google Home and what he’s looking forward to testing. 11 | 12 | Plus a quick chat about ethics in coding. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-234.md: -------------------------------------------------------------------------------- 1 | # CR 234: Legend Of The Snow Leopard 2 | 3 | 4 | 5 | * Air Date: 2016-12-05 6 | * Duration: 52 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | Mike shares his swift migration pain from over the weekend & opens up a bar in the office in honor of his new Google Home. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-235.md: -------------------------------------------------------------------------------- 1 | # CR 235: Okay Google, Take Over the World 2 | 3 | 4 | 5 | * Air Date: 2016-12-12 6 | * Duration: 52 mins 24 secs 7 | 8 | ## About this episode 9 | 10 | Mike reviews his Google Home and we discuss Google Actions, Fitbit buying Pebble & the usefulness of some of these products. 11 | 12 | Plus Mike adopts a new philosophy about remote workers! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-236.md: -------------------------------------------------------------------------------- 1 | # CR 236: Refactoring 2016 2 | 3 | 4 | 5 | * Air Date: 2016-12-19 6 | * Duration: 51 mins 32 secs 7 | 8 | ## About this episode 9 | 10 | We reflect on the trainwreck that was 2016 & what might be emerging in 2017 as a real market opportunity. It's our last live show of the year, so we throw out the rules! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2016/episode-237.md: -------------------------------------------------------------------------------- 1 | # CR 237: Shuffling Code 2 | 3 | 4 | 5 | * Air Date: 2016-12-26 6 | * Duration: 182 mins 28 secs 7 | 8 | ## About this episode 9 | 10 | We've given the guys the week off after a year of hard work, so we'll take a look back at a series of events where the guys ended up realigning their opinions. From hybrid vs native apps & developing on linux to Pokémon & Bots, a lot changed in 2016! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-238.md: -------------------------------------------------------------------------------- 1 | # CR 238: Undockered 2 | 3 | 4 | 5 | * Air Date: 2017-01-05 6 | * Duration: 43 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s got three wishes for the new year, Chris has a new Echo Dot & Google has partnerships to put Assistant in your TV. 11 | 12 | Plus why Mike got rid of his office, GitHub’s near term future & how terrible code gets written by sane people. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-239.md: -------------------------------------------------------------------------------- 1 | # CR 239: Living in a Clamshell 2 | 3 | 4 | 5 | * Air Date: 2017-01-09 6 | * Duration: 50 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | After we answer some audience feedback and chat about the week’s Hoopla & a fresh batch of Coder Radio 2017 predictions! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-240.md: -------------------------------------------------------------------------------- 1 | # CR 240: Disillusioned NixBeards 2 | 3 | 4 | 5 | * Air Date: 2017-01-16 6 | * Duration: 62 mins 51 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris start things off with some traditional feedback, get into some Dart discussion & then get into the hardware throw down. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-241.md: -------------------------------------------------------------------------------- 1 | # CR 241: Tricks of the Trade 2 | 3 | 4 | 5 | * Air Date: 2017-01-23 6 | * Duration: 36 mins 25 secs 7 | 8 | ## About this episode 9 | 10 | Your emails this week get us discussing & sharing some really hard learned lessons & insights. 11 | 12 | Plus Mike spends the weekend preparing to shame Chris & shares a favorite book pick 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-242.md: -------------------------------------------------------------------------------- 1 | # CR 242: Cowboy Code 2 | 3 | 4 | 5 | * Air Date: 2017-02-02 6 | * Duration: 53 mins 24 secs 7 | 8 | ## About this episode 9 | 10 | The tools we use to do the job, Microservices Gone Wrong, the real problem with TypeScript & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-243.md: -------------------------------------------------------------------------------- 1 | # CR 243: iPad Shrinkage 2 | 3 | 4 | 5 | * Air Date: 2017-02-06 6 | * Duration: 54 mins 47 secs 7 | 8 | ## About this episode 9 | 10 | The fear of productivity loss & the crazy things we do to avoid it, a sober look at the tablet market for developers, GitLab’s recent disaster & we bring it all home with a little time travel. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-244.md: -------------------------------------------------------------------------------- 1 | # CR 244: Still Playing Mono 2 | 3 | 4 | 5 | * Air Date: 2017-02-13 6 | * Duration: 55 mins 8 secs 7 | 8 | ## About this episode 9 | 10 | Mike reports back from his recent travels, we debate the renaissance .Net & solve all of future Mike’s problems. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-245.md: -------------------------------------------------------------------------------- 1 | # CR 245: Java Rusts Over 2 | 3 | 4 | 5 | * Air Date: 2017-02-20 6 | * Duration: 36 mins 45 secs 7 | 8 | ## About this episode 9 | 10 | Rust has a busy 2017 ahead of it, Mike ponders Java’s failure on small Internet of Things & searches for a C++ alternative, then dazzles us with the new gear he’s recently picked up. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-246.md: -------------------------------------------------------------------------------- 1 | # CR 246: Mozilla's Pocket Pick 2 | 3 | 4 | 5 | * Air Date: 2017-02-27 6 | * Duration: 61 mins 23 secs 7 | 8 | ## About this episode 9 | 10 | Our C++ alternatives quest for embedded continues, taking another look at Visual Studio Code, Mozilla’s big pockets & saving the web with Qt Quick. 11 | 12 | Plus Mike’s war story, great feedback & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-247.md: -------------------------------------------------------------------------------- 1 | # CR 247: Always Be Coding 2 | 3 | 4 | 5 | * Air Date: 2017-03-06 6 | * Duration: 59 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Why coding everyday makes a big difference for Mike & Chris reflects on keeping momentum to prevent project rot. 11 | 12 | Plus our first look at Java 9, hopes & fears of Web Assembly & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-248.md: -------------------------------------------------------------------------------- 1 | # CR 248: Some WebAssembly Required 2 | 3 | 4 | 5 | * Air Date: 2017-03-13 6 | * Duration: 57 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | We follow up on WebAssembly, it’s not just the future, it’s already here & it might be great! Plus C# 7’s release gets us thinking & Canonical’s got us ranting. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-249.md: -------------------------------------------------------------------------------- 1 | # CR 249: Just Some Tools 2 | 3 | 4 | 5 | * Air Date: 2017-03-20 6 | * Duration: 50 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s new client has some strict requirements so we get very practical about the tools we use, compromises made & the line we won’t cross. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-250.md: -------------------------------------------------------------------------------- 1 | # CR 250: Captivated by Containers 2 | 3 | 4 | 5 | * Air Date: 2017-03-27 6 | * Duration: 50 mins 18 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s got a new testing pipeline & he’s fired up and ready to go. He shares what might be a game changer for his business. 11 | 12 | Plus we discuss the damage done by “Coding Heroes”, the value of a namespace, a handy tool & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-253.md: -------------------------------------------------------------------------------- 1 | # CR 253: 4k of Sin 2 | 3 | 4 | 5 | * Air Date: 2017-04-17 6 | * Duration: 54 mins 56 secs 7 | 8 | ## About this episode 9 | 10 | Habitat promises full automation that travels with app. But is this a layer of abstraction too far for Mike? Plus the chronicles of one developer's journey getting started with Open Source, some cool dark matter development Chris spotted at Dell & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-254.md: -------------------------------------------------------------------------------- 1 | # CR 254: Riding the Whale 2 | 3 | 4 | 5 | * Air Date: 2017-04-24 6 | * Duration: 54 mins 48 secs 7 | 8 | ## About this episode 9 | 10 | Mike is betting big on Docker, Angular has a new release, JavaScript is taking the lead & Uber is playing with fire. 11 | 12 | It’s a packed episode & wraps up with the bombshell that Mike is selling his new MacBook. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-255.md: -------------------------------------------------------------------------------- 1 | # CR 255: Moby’s Logs 2 | 3 | 4 | 5 | * Air Date: 2017-05-01 6 | * Duration: 44 mins 47 secs 7 | 8 | ## About this episode 9 | 10 | After digging into some rather tempting Hoopla, Mike shares his clever solution to one of Docker’s bigger problems & manages to motivate Chris into trying it out during the show. 11 | 12 | Plus thoughts on continuing your coding education & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-256.md: -------------------------------------------------------------------------------- 1 | # CR 256: Legalize Math 2 | 3 | 4 | 5 | * Air Date: 2017-05-08 6 | * Duration: 51 mins 24 secs 7 | 8 | ## About this episode 9 | 10 | Getting fined for doing math without a license, Windows 10 S goes app store only, a Coder community project goes into production & Chris learns a hard lesson about his tools! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-257.md: -------------------------------------------------------------------------------- 1 | # CR 257: Kotlin, Swiftly 2 | 3 | 4 | 5 | * Air Date: 2017-05-19 6 | * Duration: 62 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | Mike argues you should go hybrid today & end up progressive tomorrow. The Docker reality & why Swift is a bit like Kotlin. 11 | 12 | Speaking of Kotlin we chat a bit about the Google I/O news, Project Treble, Xamarin’s Live Player & Mike’s new rig. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-259.md: -------------------------------------------------------------------------------- 1 | # CR 259: Hi-Tech Lady Tubes 2 | 3 | 4 | 5 | * Air Date: 2017-06-01 6 | * Duration: 56 mins 42 secs 7 | 8 | ## About this episode 9 | 10 | The open source model has won, we discuss the impact that’s having on the development industry. Plus Swift gets a little more interesting, & Chris is ready for his lady in a tube! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-260.md: -------------------------------------------------------------------------------- 1 | # CR 260: The WWDC17 Episode 2 | 3 | 4 | 5 | * Air Date: 2017-06-08 6 | * Duration: 71 mins 12 secs 7 | 8 | ## About this episode 9 | 10 | After Mike gets a few things off his chest, we dive into the most developer relevant announcements & news from Apple’s WWDC 2017. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-261.md: -------------------------------------------------------------------------------- 1 | # CR 261: Basic Bot 2 | 3 | 4 | 5 | * Air Date: 2017-06-15 6 | * Duration: 47 mins 34 secs 7 | 8 | ## About this episode 9 | 10 | Mike shares some insights into building bots & a little sample code to get you started. Plus we discuss the week’s developer news & spend a bit of time on feedback. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-262.md: -------------------------------------------------------------------------------- 1 | # CR 262: Summer of GitHub 2 | 3 | 4 | 5 | * Air Date: 2017-06-22 6 | * Duration: 50 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | We discuss the week’s developer hoopla & the beard joins us to share his insights. It's a fun episode with a range of topics, including the recent rush to GitHub by a number of open source projects. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-263.md: -------------------------------------------------------------------------------- 1 | # CR 263: The Guilty Bug 2 | 3 | 4 | 5 | * Air Date: 2017-06-30 6 | * Duration: 57 mins 11 secs 7 | 8 | ## About this episode 9 | 10 | We ponder the ethical dilemma of a developer who has replaced himself with a bot, debate the possibility of ever making money from bots & have some tough love for Apple. 11 | Plus discuss System76’s new Pop!_OS & Mike’s adventures in Florida. 12 | 13 | ## Your hosts 14 | * [Chris Fisher](https://coder.show/hosts/chrislas) 15 | * [Michael Dominick](https://coder.show/hosts/michael) 16 | 17 | ## Sponsored by 18 | 19 | None 20 | 21 | 22 | 23 | ## Episode links 24 | 25 | None 26 | 27 | 28 | 29 | ## Tags 30 | 31 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-265.md: -------------------------------------------------------------------------------- 1 | # CR 265: Rented Windows Theory 2 | 3 | 4 | 5 | * Air Date: 2017-07-13 6 | * Duration: 53 mins 3 secs 7 | 8 | ## About this episode 9 | 10 | Microsoft slips a little Windows 10 into your Office365 & we discuss the huge shift they just pulled off, plus a little real talk about growing pains and doldrums & the pains of over building a system. 11 | 12 | Plus your feedback & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-268.md: -------------------------------------------------------------------------------- 1 | # CR 268: Ask Alice 2 | 3 | 4 | 5 | * Air Date: 2017-08-03 6 | * Duration: 51 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | Mike has a huge announcement towards the end of the show. Leading up to it we discuss the case against Kotlin, the next tech after Flash to die & the obvious reason Bots are going to be big. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-271.md: -------------------------------------------------------------------------------- 1 | # CR 271: The Future is Serverless 2 | 3 | 4 | 5 | * Air Date: 2017-08-28 6 | * Duration: 57 mins 11 secs 7 | 8 | ## About this episode 9 | 10 | The serverless revolution is nigh, we discuss AWS Lambda and Azure Functions, rebuilding jbot, basing the business computers around Pop!_OS & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-273.md: -------------------------------------------------------------------------------- 1 | # CR 273: A Hurricane of Feedback 2 | 3 | 4 | 5 | * Air Date: 2017-09-11 6 | * Duration: 35 mins 38 secs 7 | 8 | ## About this episode 9 | 10 | Mike takes refuge from Irma to respond to audience feedback & share some thoughts on future plans. 11 | 12 | Chris has some thoughts on hardware that will help you get more work done & neither of us are worrying about Bash on Windows. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-277.md: -------------------------------------------------------------------------------- 1 | # CR 277: Elixir of My Soul 2 | 3 | 4 | 5 | * Air Date: 2017-10-07 6 | * Duration: 77 mins 16 secs 7 | 8 | ## About this episode 9 | 10 | Wes is back to talk politics and Node.js. Plus, we discuss the purity of native development & the merits of the Web. Then Mike's got some top IT automation tips for managers, we explore concurrency, distributed systems & Elixir's secret sauce. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-278.md: -------------------------------------------------------------------------------- 1 | # CR 278: A New Kit for Home 2 | 3 | 4 | 5 | * Air Date: 2017-10-09 6 | * Duration: 50 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | After a ninja dance though some “Coder Hoopla” Chris has a go at convincing Mike he might be missing the next big app goldmine. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-280.md: -------------------------------------------------------------------------------- 1 | # CR 280: Mike Was Right 2 | 3 | 4 | 5 | * Air Date: 2017-10-23 6 | * Duration: 51 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | Mike walks us through Optionals & gives us a specific code example. Plus we launch a new segment long in the making, “Mike Was Right” & it’s a doozy! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-282.md: -------------------------------------------------------------------------------- 1 | # CR 282: Ice Age 2 | 3 | 4 | 5 | * Air Date: 2017-11-06 6 | * Duration: 52 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | Mike makes the case that he and Chris are dying breeds from a bygone era that need to hunker down & prepare for the cold winter. Plus we respond to a batch of great feedback, chat some contested hoopla & wrap it all up with a bit of small business wisdom. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-284.md: -------------------------------------------------------------------------------- 1 | # CR 284: Popping WebAssembly Hype 2 | 3 | 4 | 5 | * Air Date: 2017-11-20 6 | * Duration: 76 mins 43 secs 7 | 8 | ## About this episode 9 | 10 | Mike gets real about the future of WebAssembly, discuss the team up of Amazon and Microsoft, the real cost of Javascript & the iOS revolt underway. 11 | 12 | Plus we share the open source projects we’re most thankful for this year. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-285.md: -------------------------------------------------------------------------------- 1 | # CR 285: Windows 10, The Best Linux Yet? 2 | 3 | 4 | 5 | * Air Date: 2017-11-28 6 | * Duration: 61 mins 55 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s big Black Friday hardware score, the guys try out a little Windows 10 challenge for their workflow & walk away a bit humbled. But first Mike shares his late night session with JavaScript & the big change he’s making & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-286.md: -------------------------------------------------------------------------------- 1 | # CR 286: Collateral User Damage 2 | 3 | 4 | 5 | * Air Date: 2017-12-08 6 | * Duration: 54 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | A new breed of platform wars is brewing, and developers and users are on the losing side more than ever. Plus Mike updates us on his recent NYC trip, a batch of your feedback, an app pick & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-287.md: -------------------------------------------------------------------------------- 1 | # CR 287: You Need a Barb 2 | 3 | 4 | 5 | * Air Date: 2017-12-11 6 | * Duration: 61 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | Mike shares some recent lessons he’s learned trying to scale his team, some tools they tried & the processes that have stuck. 11 | 12 | But first we kick it off with some of your feedback, a bit of Hoopla & wrap it up with a quick touch on hardware. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2017/episode-289.md: -------------------------------------------------------------------------------- 1 | # CR 289: Apple Payday 2 | 3 | 4 | 5 | * Air Date: 2017-12-22 6 | * Duration: 56 mins 6 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s spent a week with JavaScript, Apple has a big gift & that launching a new product glow. 11 | 12 | Plus Linux’s new fight, Amazon’s big wins & the things that have really gone to hell. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-290.md: -------------------------------------------------------------------------------- 1 | # CR 290: The Last Coder 2 | 3 | 4 | 5 | * Air Date: 2018-01-01 6 | * Duration: 84 mins 58 secs 7 | 8 | ## About this episode 9 | 10 | Mike lays it all out for 2017 and makes the case that the small independent development model is fundamentally doomed. We spend the last Coder of the year being very honest about what hasn't worked in our businesses & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-291.md: -------------------------------------------------------------------------------- 1 | # CR 291: Hey Google 2 | 3 | 4 | 5 | * Air Date: 2018-01-08 6 | * Duration: 73 mins 34 secs 7 | 8 | ## About this episode 9 | 10 | After a great batch of feedback we make some bold predictions for 2018, and it’s not your dad’s crystal ball this year. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-293.md: -------------------------------------------------------------------------------- 1 | # CR 293: The PowerShell Play 2 | 3 | 4 | 5 | * Air Date: 2018-01-22 6 | * Duration: 69 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | Mike and Chris review predictions from years past & check on how well they’ve aged. 11 | 12 | Plus we take a look at Microsoft’s big picture strategy with .Net & now PowerShell for every system. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-294.md: -------------------------------------------------------------------------------- 1 | # CR 294: Escape Pod Machine 2 | 3 | 4 | 5 | * Air Date: 2018-01-30 6 | * Duration: 50 mins 9 secs 7 | 8 | ## About this episode 9 | 10 | A special live on location edition of the show, we talk new gear, workflows & how developers can turn a bad situation around. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-295.md: -------------------------------------------------------------------------------- 1 | # CR 295: Green Fairies In Green Fields 2 | 3 | 4 | 5 | * Air Date: 2018-02-05 6 | * Duration: 65 mins 26 secs 7 | 8 | ## About this episode 9 | 10 | Mike's got a Greenfield project he’s fired up & a tale of woes to go along with it. Chris inspires a mini-revolt over the weekend & both the guys have some remarks for the week’s Hoopla. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-297.md: -------------------------------------------------------------------------------- 1 | # CR 297: Lunch Break Coder 2 | 3 | 4 | 5 | * Air Date: 2018-02-19 6 | * Duration: 57 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | Mike may have cracked the testing pitch, the harsh reason the Junior Developer is dying & a nice batch of audience questions and follow up. 11 | 12 | This week’s Coder Radio is just like mom’s cookin', but with a taste of Kotlin. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-298.md: -------------------------------------------------------------------------------- 1 | # CR 298: Niche Busters 2 | 3 | 4 | 5 | * Air Date: 2018-03-03 6 | * Duration: 56 mins 1 secs 7 | 8 | ## About this episode 9 | 10 | Mike’s back from a conference in New York & to say he’s got a few things on his mind is putting it mildly. Strap in as we rip through myths, lies & salesmen. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://coder.show/hosts/chrislas) 14 | * [Michael Dominick](https://coder.show/hosts/michael) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/coder-radio/2018/episode-299.md: -------------------------------------------------------------------------------- 1 | # CR 299: Mike’s Wishlist 2 | 3 | 4 | 5 | * Air Date: 2018-03-05 6 | * Duration: 43 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | Chris is on the road & Mike’s been reflecting. Plus we answer some of your questions, which snowball into some much larger discussions. 11 | 12 | Then Mike’s made a list & he’s checking it twice. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://coder.show/hosts/chrislas) 16 | * [Michael Dominick](https://coder.show/hosts/michael) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/coder-radio/2025/episode-614.md: -------------------------------------------------------------------------------- 1 | # CR 614: Packfiles.io's Charlton Trezevant 2 | 3 | 4 | 5 | * Air Date: 2025-04-10 6 | * Duration: 38 mins 59 secs 7 | 8 | ## About this episode 9 | 10 | Mike sits down with Charlton of Packfiles.io to discuss getting the most out of Github, Ruby, Tampa Devs and more. 11 | 12 | ## Your hosts 13 | * [Michael Dominick](https://coder.show/hosts/michael) 14 | 15 | ## Sponsored by 16 | 17 | None 18 | 19 | 20 | 21 | ## Episode links 22 | 23 | None 24 | 25 | 26 | 27 | ## Tags 28 | 29 | -------------------------------------------------------------------------------- /docs/coder-radio/2025/episode-616.md: -------------------------------------------------------------------------------- 1 | # CR 616: Event Modeling with Adam Dymitruk 2 | 3 | 4 | 5 | * Air Date: 2025-04-25 6 | * Duration: 46 mins 50 secs 7 | 8 | ## About this episode 9 | 10 | Mike sits down with Adam Dymitruk to demystify Event Sourcing / Modeling. 11 | 12 | ## Your hosts 13 | * [Michael Dominick](https://coder.show/hosts/michael) 14 | 15 | ## Sponsored by 16 | 17 | None 18 | 19 | 20 | 21 | ## Episode links 22 | 23 | None 24 | 25 | 26 | 27 | ## Tags 28 | 29 | -------------------------------------------------------------------------------- /docs/coder-radio/index.md: -------------------------------------------------------------------------------- 1 | # Coder Radio 2 | 3 | This site is a searchable archive of the show notes for the [Coder Radio podcast](https://coder.show/), a production by [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/). 4 | 5 | ![coder-header](/images/coder-header.jpg) 6 | 7 | A weekly talk show taking a pragmatic look at the art and business of Software Development and related technologies. 8 | -------------------------------------------------------------------------------- /docs/images/coder-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/coder-header.jpg -------------------------------------------------------------------------------- /docs/images/extras-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/extras-header.jpg -------------------------------------------------------------------------------- /docs/images/jb-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/jb-header.jpg -------------------------------------------------------------------------------- /docs/images/lan-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/lan-header.jpg -------------------------------------------------------------------------------- /docs/images/lup-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/lup-header.jpg -------------------------------------------------------------------------------- /docs/images/office-hours-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/office-hours-header.jpg -------------------------------------------------------------------------------- /docs/images/ssh-header.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selfhostedshow/show-notes/d4a715009e2f49a11ca684a9878d5f76e28e2bfc/docs/images/ssh-header.jpeg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Jupiter Broadcasting 2 | 3 | This site is a searchable archive of the show notes for the all [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/) shows. Home to the best shows on Linux, Open Source, Security, Privacy, Community, Development, and News. 4 | 5 | ![jb-header](/images/jb-header.jpg) 6 | -------------------------------------------------------------------------------- /docs/jupiter-extras/2019/episode-009.md: -------------------------------------------------------------------------------- 1 | # JE 009: User Error Outtake: Bunk Beds 2 | 3 | 4 | 5 | * Air Date: 2019-08-30 6 | * Duration: 5 mins 16 secs 7 | 8 | ## About this episode 9 | 10 | What should have been an innocent question about bunk beds turned into the longest ever User Error outtake. 11 | 12 | ## Your hosts 13 | * [Friends of Jupiter Broadcasting](https://extras.show/hosts/friends) 14 | 15 | ## Sponsored by 16 | 17 | None 18 | 19 | 20 | 21 | ## Episode links 22 | 23 | None 24 | 25 | 26 | 27 | ## Tags 28 | 29 | [bunk beds](https://extras.show/tags/bunk%20beds), [outtake](https://extras.show/tags/outtake), [user error](https://extras.show/tags/user%20error) -------------------------------------------------------------------------------- /docs/jupiter-extras/index.md: -------------------------------------------------------------------------------- 1 | # Jupiter Extras 2 | 3 | This site is a searchable archive of the show notes for the [Jupiter Extras podcast](https://extras.show/), a production by [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/). New ideas, great interviews, events, and other content you will love. We bring you the Extras. 4 | 5 | ![extras-header](/images/extras-header.jpg) 6 | -------------------------------------------------------------------------------- /docs/linux-action-news/index.md: -------------------------------------------------------------------------------- 1 | # Linux Action News 2 | 3 | This site is a searchable archive of the show notes for the [Linux Action News podcast](https://linuxactionnews.com/), a production by [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/). 4 | 5 | ![lup-header](/images/lan-header.jpg) 6 | 7 | Weekly Linux news and analysis. We hope this is the show you’ll go to each week when you want to hear an informed discussion about what’s happening in Linux. 8 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-001.md: -------------------------------------------------------------------------------- 1 | # LUP 001: Too Much Choice 2 | 3 | 4 | 5 | * Air Date: 2013-08-12 6 | * Duration: 71 mins 24 secs 7 | 8 | ## About this episode 9 | 10 | Does the Linux community lean on the age old excuse of choice, to brush of the real limitations of desktop Linux environments? We debate that, and then discuss the growing reasons to roll your own email server. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-002.md: -------------------------------------------------------------------------------- 1 | # LUP 002: Edge of Failure 2 | 3 | 4 | 5 | * Air Date: 2013-08-19 6 | * Duration: 64 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | As the final hours countdown we chat about the fate of the Ubuntu Edge camping and debate with our live callers about the bigger picture. 11 | 12 | Plus our thoughts on the new KDE release, Steam, and a few more thoughts on elementary OS. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-004.md: -------------------------------------------------------------------------------- 1 | # LUP 004: Are Linux Users Cheap? 2 | 3 | 4 | 5 | * Air Date: 2013-09-03 6 | * Duration: 82 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | We crunch the Steam and Ubuntu Software Center numbers and we have to ask: Are Linux users cheap? Or is the answer more complex than that? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-005.md: -------------------------------------------------------------------------------- 1 | # LUP 005: Wrath of Linus 2 | 3 | 4 | 5 | * Air Date: 2013-09-10 6 | * Duration: 68 mins 38 secs 7 | 8 | ## About this episode 9 | 10 | We break down what has Linus so upset, and the Internet in an NSA induced fever. Plus GOG makes a public statement about Linux that has us scratching our heads, and your feedback. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-006.md: -------------------------------------------------------------------------------- 1 | # LUP 006: The Android Problem 2 | 3 | 4 | 5 | * Air Date: 2013-09-17 6 | * Duration: 73 mins 33 secs 7 | 8 | ## About this episode 9 | 10 | Is that exploit in your pocket? This week we'll ask if Android is Stallman's worst nightmare, making Tivo look like a quaint abuser of Linux. And how Linux is poised to push past it's current limitations over the next few years. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-007.md: -------------------------------------------------------------------------------- 1 | # LUP 007: Full SteamOS Ahead 2 | 3 | 4 | 5 | * Air Date: 2013-09-24 6 | * Duration: 68 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | Valve has announced SteamOS, and we have our analysis of how this will impact the Linux ecosystem at large, the challenge Valve faces, and the reasons Valve is the right company to pull this effort off. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-008.md: -------------------------------------------------------------------------------- 1 | # LUP 008: Cloud Guilt 2 | 3 | 4 | 5 | * Air Date: 2013-10-01 6 | * Duration: 68 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Should Linux users be anti-cloud? Why do so many of us feel guilty for using the”cloud”? 11 | 12 | This week will dig into this conundrum and maybe even solve this more and more complex question. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-009.md: -------------------------------------------------------------------------------- 1 | # LUP 009: The Ubuntu Situation 2 | 3 | 4 | 5 | * Air Date: 2013-10-08 6 | * Duration: 81 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | With their focus on mobile, and a rather lackluster release around the corner, we debate if Ubuntu’s switch to Unity is costing them now. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-010.md: -------------------------------------------------------------------------------- 1 | # LUP 010: The Ubuntu Hangover 2 | 3 | 4 | 5 | * Air Date: 2013-10-15 6 | * Duration: 53 mins 50 secs 7 | 8 | ## About this episode 9 | 10 | What does a post Ubuntu world look like, which distro would rise to the top? Our specially crafted team of armed and dangerous Linux users weigh in. 11 | 12 | PLUS: Rise up against your bearded distro gatekeepers! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-011.md: -------------------------------------------------------------------------------- 1 | # LUP 011: Bankrupt Linux News 2 | 3 | 4 | 5 | * Air Date: 2013-10-22 6 | * Duration: 67 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | The recent outburst from Linus Torvalds and Mark Shuttleworth have put the poor state of Linux news coverage into sharp focus. The media’s attention to the cult of personalities damages the Linux community. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-012.md: -------------------------------------------------------------------------------- 1 | # LUP 012: Debating Debian Decisions 2 | 3 | 4 | 5 | * Air Date: 2013-10-29 6 | * Duration: 66 mins 6 secs 7 | 8 | ## About this episode 9 | 10 | Upstart or systemd which will Debian choose? We’ll discuss the inherent benefits and disadvantages of both, and the larger ramification Debian’s decision will have on the Linux ecosystem. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-013.md: -------------------------------------------------------------------------------- 1 | # LUP 013: Dark Mail: A New Hope 2 | 3 | 4 | 5 | * Air Date: 2013-11-05 6 | * Duration: 59 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | What is the Dark Mail Alliance? We’ll dig into how it’s more of a protocol, and a hope than an actual product. Now the time to replace email we’ll explain how you can help get the concept kickstarted. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-014.md: -------------------------------------------------------------------------------- 1 | # LUP 014: Negative in the Practical Dimension 2 | 3 | 4 | 5 | * Air Date: 2013-11-12 6 | * Duration: 60 mins 35 secs 7 | 8 | ## About this episode 9 | 10 | This week we’ll use the lens of some recent technical meltdowns to discuss this age old struggle of pragmatism vs idealism. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-016.md: -------------------------------------------------------------------------------- 1 | # LUP 016: Meet the Dockers 2 | 3 | 4 | 5 | * Air Date: 2013-11-26 6 | * Duration: 79 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | A new version of Docker was just released, we bring on the CTO and Founder of Docker to chat about the big features all Linux users can look forward to. 11 | 12 | Plus building the perfect Linux workstation, your feedback, and much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-017.md: -------------------------------------------------------------------------------- 1 | # LUP 017: Swap It Outta Here 2 | 3 | 4 | 5 | * Air Date: 2013-12-04 6 | * Duration: 62 mins 36 secs 7 | 8 | ## About this episode 9 | 10 | Do you run without swap? This week we reach into the topic grab bag and debate to swap or not to swap, the reasons long timer Linux users are switching to BSD, and what’s wrong with our Sailfish OS coverage. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-018.md: -------------------------------------------------------------------------------- 1 | # LUP 018: Hugs for LUGs 2 | 3 | 4 | 5 | * Air Date: 2013-12-10 6 | * Duration: 68 mins 30 secs 7 | 8 | ## About this episode 9 | 10 | Have IRC chat rooms, forums, reddit, and Google Hangouts killed the local Linux Users Group? We’ll share our ideas to reboot the LUG and make them relevant for the modern Linux user. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-020.md: -------------------------------------------------------------------------------- 1 | # LUP 020: Fidel Chromecastro 2 | 3 | 4 | 5 | * Air Date: 2013-12-24 6 | * Duration: 66 mins 1 secs 7 | 8 | ## About this episode 9 | 10 | Chromecast has been called the gadget of the year, but are the better options? Or is a simple, low cost, Linux powered gadget the ultimate living room solution? We’ll debate where it stacks up compared to XMBC, Plex, and others. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2013/episode-021.md: -------------------------------------------------------------------------------- 1 | # LUP 021: Unplugging 2013 2 | 3 | 4 | 5 | * Air Date: 2013-12-31 6 | * Duration: 66 mins 0 secs 7 | 8 | ## About this episode 9 | 10 | In the final moments of 2013 our virtual LUG shares their expectations and predictions for 2014. We’ll debate some of the most anticipated changes. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-022.md: -------------------------------------------------------------------------------- 1 | # LUP 022: Hurd Mentality 2 | 3 | 4 | 5 | * Air Date: 2014-01-07 6 | * Duration: 62 mins 54 secs 7 | 8 | ## About this episode 9 | 10 | Does building by group consensus slow down open source innovation? We’ll look at some big choices Debian is facing and debate if some stronger leadership might produce more expedient and practical results. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-025.md: -------------------------------------------------------------------------------- 1 | # LUP 025: Culture of Shiny 2 | 3 | 4 | 5 | * Air Date: 2014-01-28 6 | * Duration: 67 mins 59 secs 7 | 8 | ## About this episode 9 | 10 | Aaron Seigo joins us to call out the new and shiny culture that’s pervasive in the free software community. And even your own humble hosts have been afflicted with from time to time. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-026.md: -------------------------------------------------------------------------------- 1 | # LUP 026: MATE Mythbusting 2 | 3 | 4 | 5 | * Air Date: 2014-02-04 6 | * Duration: 63 mins 17 secs 7 | 8 | ## About this episode 9 | 10 | The MATE Desktop is about to see some big improvements, we bring on Martin Wimpress from the MATE project to discuss his new MATE Live CD, and what the future holds for MATE. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-028.md: -------------------------------------------------------------------------------- 1 | # LUP 028: Neckbeard Entitlement Factor 2 | 3 | 4 | 5 | * Air Date: 2014-02-18 6 | * Duration: 65 mins 35 secs 7 | 8 | ## About this episode 9 | 10 | Michael Hall from Canonical joins us to discuss his personal views on what he’s coined the new 80/20 rule for open source. Are the consumers of open source the biggest hurdle to projects becoming sustainable? 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-029.md: -------------------------------------------------------------------------------- 1 | # LUP 029: The Klementine Squeeze 2 | 3 | 4 | 5 | * Air Date: 2014-02-25 6 | * Duration: 64 mins 48 secs 7 | 8 | ## About this episode 9 | 10 | A cautionary tale for anyone thinking about starting their own Linux distribution, and then we’ll put it all out on the table and discuss our ideas and goals for Howto Linux, and take the live feedback of our virtual LUG. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-030.md: -------------------------------------------------------------------------------- 1 | # LUP 030: Talkin' Tox 2 | 3 | 4 | 5 | * Air Date: 2014-03-04 6 | * Duration: 60 mins 34 secs 7 | 8 | ## About this episode 9 | 10 | Two developers from the TOX project, an open source secure Skype killer join us to discuss their new project, the future, and how they hope to become your new messaging system. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-031.md: -------------------------------------------------------------------------------- 1 | # LUP 031: Ubuntu Punching Bag 2 | 3 | 4 | 5 | * Air Date: 2014-03-11 6 | * Duration: 53 mins 22 secs 7 | 8 | ## About this episode 9 | 10 | Is the Linux community’s animosity towards Ubuntu turning away new switchers? We’ll analyze what has the community so upset, and how that can color a new Linux users first impressions. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-032.md: -------------------------------------------------------------------------------- 1 | # LUP 032: Do Me a SolydXK 2 | 3 | 4 | 5 | * Air Date: 2014-03-18 6 | * Duration: 50 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | The co-founders of SoyldXK join us to discuss their origins, what they focus on, how they hope to make a profit, and what the future might hold. 11 | 12 | Plus we have some “solid” AutoCAD replacements for Linux, your emails, and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-034.md: -------------------------------------------------------------------------------- 1 | # LUP 034: Drive-By Advice 2 | 3 | 4 | 5 | * Air Date: 2014-04-01 6 | * Duration: 67 mins 49 secs 7 | 8 | ## About this episode 9 | 10 | We debate the validity of recent anti-Linux comments made on a Leo Laporte's nationally syndicated “Tech Guy” radio show, and the more subtle and larger “built-in bias” many in the tech community still hold towards Linux. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-035.md: -------------------------------------------------------------------------------- 1 | # LUP 035: Windows eXPired 2 | 3 | 4 | 5 | * Air Date: 2014-04-08 6 | * Duration: 70 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | XP support ends today and we’ll celebrate the occasion by debating what prevents technical users switching to Linux, address some common myths, and set a course for our new howto show. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-036.md: -------------------------------------------------------------------------------- 1 | # LUP 036: Beware of Underdog 2 | 3 | 4 | 5 | * Air Date: 2014-04-15 6 | * Duration: 56 mins 27 secs 7 | 8 | ## About this episode 9 | 10 | Are boutique distributions a bag of hurt for new users? 11 | 12 | We love a good underdog, but sometimes our excitement gets the best of us and we recommend something that’s not appropriate for a switcher to land on. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-037.md: -------------------------------------------------------------------------------- 1 | # LUP 037: Client Side Drama 2 | 3 | 4 | 5 | * Air Date: 2014-04-22 6 | * Duration: 49 mins 48 secs 7 | 8 | ## About this episode 9 | 10 | We discuss the pros & cons of Client Side Decorations and their potential issues. 11 | 12 | Plus our thoughts on the best password managers, your follow up and more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-038.md: -------------------------------------------------------------------------------- 1 | # LUP 038: The Rest of the Fest 2 | 3 | 4 | 5 | * Air Date: 2014-04-29 6 | * Duration: 47 mins 38 secs 7 | 8 | ## About this episode 9 | 10 | We had a chance to chat with folks from Firefox, the EFF, SUSE, and more. Plus we discuss the real benefits to Linux conventions like LinuxFest Northwest. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-042.md: -------------------------------------------------------------------------------- 1 | # LUP 042: Fine Wine or Sour Ports 2 | 3 | 4 | 5 | * Air Date: 2014-05-27 6 | * Duration: 62 mins 54 secs 7 | 8 | ## About this episode 9 | 10 | Liam from Gaming on Linux joins us to discuss the Witcher 2 port fiasco, and why Linux’s reputation as a gaming platform could be on the line. 11 | 12 | Plus a heated Manjaro discussion, your feedback, and a BIG announcement! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-045.md: -------------------------------------------------------------------------------- 1 | # LUP 045: The Triple-Boot Phone 2 | 3 | 4 | 5 | * Air Date: 2014-06-17 6 | * Duration: 24 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | Chris shares his experience with triple booting Firefox OS, Ubuntu Touch and Android on his Nexus 5 and the surprising results. 11 | 12 | Plus some grounded feedback and much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-046.md: -------------------------------------------------------------------------------- 1 | # LUP 046: SouthEast LinuxFest Unplugged 2 | 3 | 4 | 5 | * Air Date: 2014-06-24 6 | * Duration: 54 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | We’ve got another round of great exclusive interviews from the floor of SouthEast LinuxFest 2014. 11 | 12 | Find out why Slackware is still going strong, the BSD kindness brigade & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-048.md: -------------------------------------------------------------------------------- 1 | # LUP 048: KaOS Theory 2 | 3 | 4 | 5 | * Air Date: 2014-07-08 6 | * Duration: 79 mins 56 secs 7 | 8 | ## About this episode 9 | 10 | We chat with Jos Poortvliet about the future of KDE, Plasma 5 Desktop, then review a KDE distribution with a direction: KaOS. 11 | 12 | Plus: The great news for the Blender project, our OSCON plans and much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-050.md: -------------------------------------------------------------------------------- 1 | # LUP 050: Linux Look-Back 2 | 3 | 4 | 5 | * Air Date: 2014-07-22 6 | * Duration: 58 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | We look back at five years of Linux memories, and reminisce about the bad old days of the Linux desktop. 11 | 12 | Plus our favorite ways to track performance, desktop Linux app containers that are already here and shipping and much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-052.md: -------------------------------------------------------------------------------- 1 | # LUP 052: CRUX Interview 2 | 3 | 4 | 5 | * Air Date: 2014-08-05 6 | * Duration: 84 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Our team reviews the famous CRUX Linux and we discuss this unique distribution with one of its long time developers. 11 | 12 | Plus details about Fedora COPR and is Desktop Linux stuck in an uncanny valley? We debate. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-058.md: -------------------------------------------------------------------------------- 1 | # LUP 058: Cult of Community 2 | 3 | 4 | 5 | * Air Date: 2014-09-16 6 | * Duration: 75 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | Is the role of “Community Manager” a fraud perpetrated by companies trying to exploit the fruits for their community? We debate. Plus we discuss your systemd follow up, the recent purchase of openSUSE’s parent company Attachmate & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-060.md: -------------------------------------------------------------------------------- 1 | # LUP 060: Calm Before the Storm 2 | 3 | 4 | 5 | * Air Date: 2014-09-30 6 | * Duration: 93 mins 31 secs 7 | 8 | ## About this episode 9 | 10 | Today’s show is full of robust discussion as your hosts discuss the recent criticism over our coverage of Ubuntu 14.10, the general reaction to Shellshock & the Netflixification of Photoshop on Chromebooks. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-062.md: -------------------------------------------------------------------------------- 1 | # LUP 062: Unifying Linux Software 2 | 3 | 4 | 5 | * Air Date: 2014-10-14 6 | * Duration: 69 mins 5 secs 7 | 8 | ## About this episode 9 | 10 | We discuss how one software center for all distributions would work & which existing solutions are the closest. 11 | 12 | Plus looking forward to some new Ubuntu apps & how Linux bit Lightworks right in the memory manager. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2014/episode-072.md: -------------------------------------------------------------------------------- 1 | # LUP 072: Best of LUP 2014 2 | 3 | 4 | 5 | * Air Date: 2014-12-23 6 | * Duration: 95 mins 39 secs 7 | 8 | ## About this episode 9 | 10 | We look back on some of the rants and events of 2014. Wether it's systemd, mir, tox, ubuntu or anything else, we covered lots of major events this year! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-078.md: -------------------------------------------------------------------------------- 1 | # LUP 078: Straight Outta FOSDEM 2 | 3 | 4 | 5 | * Air Date: 2015-02-03 6 | * Duration: 65 mins 33 secs 7 | 8 | ## About this episode 9 | 10 | FOSDEM just wrapped up, where thousands of developers & enthusiasts of free & open source software gather to talk all things Linux. 11 | 12 | Plus we drool over the new Raspberry Pi 2 & ask if B+ buyers got a little screwed. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-081.md: -------------------------------------------------------------------------------- 1 | # LUP 081: Unplugging the Past 2 | 3 | 4 | 5 | * Air Date: 2015-02-24 6 | * Duration: 87 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | Join us as we peer into the past and revisit some big topics! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-087.md: -------------------------------------------------------------------------------- 1 | # LUP 087: btrfs Meltdown 2 | 3 | 4 | 5 | * Air Date: 2015-04-07 6 | * Duration: 91 mins 4 secs 7 | 8 | ## About this episode 9 | 10 | After yet another gotcha takes down a critical Linux workstation, is it officially time to consider avoiding btrfs when it matters? 11 | 12 | Plus what happened to the Evolve OS project & why they are now called Solus. 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-102.md: -------------------------------------------------------------------------------- 1 | # LUP 102: Canonical, Dell & AMD Games 2 | 3 | 4 | 5 | * Air Date: 2015-07-20 6 | * Duration: 92 mins 43 secs 7 | 8 | ## About this episode 9 | 10 | Noah joins us in studio for a fun edition of Unplugged! Updates are landing on Ubuntu Phones, the ridiculous work around for a major performance boost on AMD cards, the real problem with Dell’s latest Ubuntu laptops & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-108.md: -------------------------------------------------------------------------------- 1 | # LUP 108: Insecurity by Design 2 | 3 | 4 | 5 | * Air Date: 2015-09-01 6 | * Duration: 67 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | Top law enforcement officials in the US want backdoors in all encryption systems. Details on the upcoming road show, Kubuntu's new look, saying goodbye to an old friend & some Go powered retro feedback. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-112.md: -------------------------------------------------------------------------------- 1 | # LUP 112: Open Source Power Outlets 2 | 3 | 4 | 5 | * Air Date: 2015-09-30 6 | * Duration: 107 mins 10 secs 7 | 8 | ## About this episode 9 | 10 | Noah hosts again while Chris is in the land of no service, also known as Utah! We talk about LibreOffice, Ubuntu's new Setup wizard, OpenSUSE's leap & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-114.md: -------------------------------------------------------------------------------- 1 | # LUP 114: KDE Connect All the Things 2 | 3 | 4 | 5 | * Air Date: 2015-10-13 6 | * Duration: 101 mins 43 secs 7 | 8 | ## About this episode 9 | 10 | We take a look at some of the coolest technologies coming out of the Plasma desktop & finally a open source router you and your family can use. Then we share some of our favorite ncurses terminal based applications! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-116.md: -------------------------------------------------------------------------------- 1 | # LUP 116: What's New MATE 2 | 3 | 4 | 5 | * Air Date: 2015-10-27 6 | * Duration: 91 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | Behind the scenes on Ubuntu MATE’s new features, why Apple’s latest court case proves Richard Stallman was right about owning your own software & there is real debate about Xiaomi's new Linux laptop. Plus the big problems facing x86 & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2015/episode-121.md: -------------------------------------------------------------------------------- 1 | # LUP 121: Raspberry Pi Does What? 2 | 3 | 4 | 5 | * Air Date: 2015-12-01 6 | * Duration: 99 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | Fedora’s DNS changes are incoming, The new mini-pc revolution is here & the Raspberry Pi Zero brings it for $5. Adobe announces the death of Flash… Kind of. Plus open source gaming just got an upgrade, GIMP has some fancy & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-126.md: -------------------------------------------------------------------------------- 1 | # LUP 126: Mycroft Action Show 2 | 3 | 4 | 5 | * Air Date: 2016-01-05 6 | * Duration: 114 mins 46 secs 7 | 8 | ## About this episode 9 | 10 | Straight from the horse's mouth, we get updates on the code drop coming from the Mycroft project. Plus some details about our SCALE plans & NVIDIA's Linux powered CES demo. 11 | 12 | Plus Chris owns up to his 2015 predictions & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-128.md: -------------------------------------------------------------------------------- 1 | # LUP 128: Is that a server in your pocket? 2 | 3 | 4 | 5 | * Air Date: 2016-01-19 6 | * Duration: 86 mins 34 secs 7 | 8 | ## About this episode 9 | 10 | This week we dive into what the community thinks about putting a server in their pocket, show you some smart tricks with Gimp & some Windows nightmares. Plus some router chat & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-130.md: -------------------------------------------------------------------------------- 1 | # LUP 130: The Six Rings of Ubuntu 2 | 3 | 4 | 5 | * Air Date: 2016-02-02 6 | * Duration: 86 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | Why Linux Mint’s X-Apps are a bigger shakeup then you might realize, bricking your laptop with a Linux command & Dell’s new Linux distro. 11 | 12 | Plus we celebrate 15 years of VLC, a quick look at Tails 2.0 & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-133.md: -------------------------------------------------------------------------------- 1 | # LUP 133: Apollo Has Landed 2 | 3 | 4 | 5 | * Air Date: 2016-02-23 6 | * Duration: 78 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | Entroware’s Apollo laptop has arrived, and we share our first hands on impressions of their ultra Linux laptop, how does it compare to the Purism, and a quick chat with Entroware’s co-founder. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-136.md: -------------------------------------------------------------------------------- 1 | # LUP 136: There's a Snap for That 2 | 3 | 4 | 5 | * Air Date: 2016-03-15 6 | * Duration: 103 mins 10 secs 7 | 8 | ## About this episode 9 | 10 | The future of Linux package management is here & there’s a lot of ideas on how to solve it. We discuss some of the more popular ones . Plus MATE adopting CSD, the new generation of “perfect” Linux laptops & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-139.md: -------------------------------------------------------------------------------- 1 | # LUP 139: Virtual Bondage 2 | 3 | 4 | 5 | * Air Date: 2016-04-05 6 | * Duration: 106 mins 37 secs 7 | 8 | ## About this episode 9 | 10 | We look at the state of Virtual Reality under Linux. Richard Brown from openSUSE joins us to discuss making the Plasma Desktop even better & our quick review of Apricity OS. 11 | 12 | Plus a bunch of project updates & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-164.md: -------------------------------------------------------------------------------- 1 | # LUP 164: Dial Up Linux 2 | 3 | 4 | 5 | * Air Date: 2016-09-28 6 | * Duration: 86 mins 25 secs 7 | 8 | ## About this episode 9 | 10 | In this special edition of Unplugged we do away with the traditional format & take calls LIVE on the air for free. 11 | 12 | Some say the advice is worth what you pay for it! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-165.md: -------------------------------------------------------------------------------- 1 | # LUP 165: In OpenDaylight 2 | 3 | 4 | 5 | * Air Date: 2016-10-04 6 | * Duration: 90 mins 22 secs 7 | 8 | ## About this episode 9 | 10 | We connect with the communities & hardware projects using Software Defined Networking, update you on some of our favorite open source projects, share some anecdotes from a recent trip & update you on our trails with OpenMediaVault. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-170.md: -------------------------------------------------------------------------------- 1 | # LUP 170: Nano Users Unite 2 | 3 | 4 | 5 | * Air Date: 2016-11-09 6 | * Duration: 72 mins 22 secs 7 | 8 | ## About this episode 9 | 10 | Nano users come out of the closet, we demystify NFS a bit & discuss the top 5 commands new Linux users should learn. 11 | 12 | Plus a NUC killer with a GPU, new Cinnamon & more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-171.md: -------------------------------------------------------------------------------- 1 | # LUP 171: Uncontained Human Error 2 | 3 | 4 | 5 | * Air Date: 2016-11-15 6 | * Duration: 89 mins 50 secs 7 | 8 | ## About this episode 9 | 10 | This week we take a deep dive into the IOT & the Cloud. Noah isn’t quite dead yet as he gives us an earful on the future of MacOS. Plus our thoughts on Signal, Telegram, Wire, IRC & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-175.md: -------------------------------------------------------------------------------- 1 | # LUP 175: Best of MATEs 2 | 3 | 4 | 5 | * Air Date: 2016-12-13 6 | * Duration: 95 mins 42 secs 7 | 8 | ## About this episode 9 | 10 | We get the inside scoop about some fantastic collaboration happening between three Linux distributions that are supposedly big competitors. 11 | 12 | Plus Google’s response to Ubuntu Core & the big NextCloud news! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2016/episode-176.md: -------------------------------------------------------------------------------- 1 | # LUP 176: Shell-Shocked 2016 2 | 3 | 4 | 5 | * Air Date: 2016-12-20 6 | * Duration: 91 mins 20 secs 7 | 8 | ## About this episode 9 | 10 | We review the very worst moments in Linux during 2016, look ahead to what might be big in 2017 and toss out the rules for our last live episode of the year! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-178.md: -------------------------------------------------------------------------------- 1 | # LUP 178: Big Sister is Watching 2 | 3 | 4 | 5 | * Air Date: 2017-01-03 6 | * Duration: 96 mins 43 secs 7 | 8 | ## About this episode 9 | 10 | Robots take over the show while we go around the table & get our 2017 predictions in for Linux. 11 | 12 | Plus updates from projects we love & the great Mac migration continues! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-180.md: -------------------------------------------------------------------------------- 1 | # LUP 180: The Theory of Liri 2 | 3 | 4 | 5 | * Air Date: 2017-01-17 6 | * Duration: 95 mins 18 secs 7 | 8 | ## About this episode 9 | 10 | We take a look at a material design influenced distribution, the FSF’s new high priority list & much more this week! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-181.md: -------------------------------------------------------------------------------- 1 | # LUP 181: A Brisk MATE for Solus 2 | 3 | 4 | 5 | * Air Date: 2017-01-24 6 | * Duration: 83 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | It’s a huge show with a bonanza of updates, big future plans & cross project collaboration. 11 | 12 | Michael Hall from Canonical join us to discuss UbunCon, SCALE15x plans & much more! 13 | 14 | ## Your hosts 15 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 16 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 17 | 18 | ## Sponsored by 19 | 20 | None 21 | 22 | 23 | 24 | ## Episode links 25 | 26 | None 27 | 28 | 29 | 30 | ## Tags 31 | 32 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-186.md: -------------------------------------------------------------------------------- 1 | # LUP 186: AWS Loses Its ShIOT 2 | 3 | 4 | 5 | * Air Date: 2017-02-28 6 | * Duration: 77 mins 1 secs 7 | 8 | ## About this episode 9 | 10 | The worst smart device hack we’ve ever heard of, dreams of the Pi Zero W, the AWS outage that savaged the Internet of Things & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-188.md: -------------------------------------------------------------------------------- 1 | # LUP 188: Celebrating Linux on Pi Day 2 | 3 | 4 | 5 | * Air Date: 2017-03-14 6 | * Duration: 65 mins 42 secs 7 | 8 | ## About this episode 9 | 10 | We celebrate Pi Day by loading Mycroft & Alexa onto a Raspberry Pi 3, look at the actual use cases for VR & AR under Linux today, flash back to Linux in the 90s & update on our favorite projects. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-197.md: -------------------------------------------------------------------------------- 1 | # LUP 197: That New User Smell 2 | 3 | 4 | 5 | * Air Date: 2017-05-16 6 | * Duration: 79 mins 19 secs 7 | 8 | ## About this episode 9 | 10 | We review System76’s Galago Pro, have a crisis of faith about the future of desktop Linux, get completely blown away by our community, help you BASH better & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-198.md: -------------------------------------------------------------------------------- 1 | # LUP 198: Magic Device Cloud 2 | 3 | 4 | 5 | * Air Date: 2017-05-23 6 | * Duration: 69 mins 13 secs 7 | 8 | ## About this episode 9 | 10 | NextCloud 12 is out & Jos joins us to chat about the highlights, Marius Quabeck joins us to discuss Magic Device Tool’s secrets. Plus we cover a bunch of project updates & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-199.md: -------------------------------------------------------------------------------- 1 | # LUP 199: No Samba No Cry 2 | 3 | 4 | 5 | * Air Date: 2017-05-30 6 | * Duration: 88 mins 7 secs 7 | 8 | ## About this episode 9 | 10 | Why the big Samba vulnerability is no WannaCry, Wimpy gives us his take on e-gpus under Linux, our first take on Plasma 5.10 & a tool that will finally get you to use Docker! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-204.md: -------------------------------------------------------------------------------- 1 | # LUP 204: Awkward Distro Puberty 2 | 3 | 4 | 5 | * Air Date: 2017-07-04 6 | * Duration: 102 mins 36 secs 7 | 8 | ## About this episode 9 | 10 | TUXEDO Computers & System76 have announced their own Linux distros, plus OutlawCountry, BFQ scheduler, XDA Forum is going to give Phoronix competition & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-213.md: -------------------------------------------------------------------------------- 1 | # LUP 213: Gnome Does it Again 2 | 3 | 4 | 5 | * Air Date: 2017-09-05 6 | * Duration: 74 mins 51 secs 7 | 8 | ## About this episode 9 | 10 | Gnome is about to solve one of our biggest Wayland’s concerns, but we're worried about the future. Plus we chat with Wimpy about the Ubuntu Rally in NYC & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-219.md: -------------------------------------------------------------------------------- 1 | # LUP 219: Ubuntu’s New Era 2 | 3 | 4 | 5 | * Air Date: 2017-10-17 6 | * Duration: 66 mins 15 secs 7 | 8 | ## About this episode 9 | 10 | We review Ubuntu 17.10 & discuss some of the major achievements this release represents. Plus we break down an important Linux kernel news story, get updates from the community & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-226.md: -------------------------------------------------------------------------------- 1 | # LUP 226: Bitcoin for Linux Users 2 | 3 | 4 | 5 | * Air Date: 2017-12-05 6 | * Duration: 83 mins 40 secs 7 | 8 | ## About this episode 9 | 10 | Why Bitcoin is the next Linux, the Gentoo Challenge is in full swing, and we catch you up on the latest community news, a throwback app pick & more! 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2017/episode-229.md: -------------------------------------------------------------------------------- 1 | # LUP 229: Taste of Linux 2017 2 | 3 | 4 | 5 | * Air Date: 2017-12-26 6 | * Duration: 85 mins 53 secs 7 | 8 | ## About this episode 9 | 10 | We break from the unformat of the show for a special holiday chat about the top moments in the world of Linux this year that impacted us the most. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2018/episode-230.md: -------------------------------------------------------------------------------- 1 | # LUP 230: Invest In Popcorn 2 | 3 | 4 | 5 | * Air Date: 2018-01-02 6 | * Duration: 57 mins 2 secs 7 | 8 | ## About this episode 9 | 10 | Wes & the Beard kick Chris out to share their top tips for starting 2018 out right, plus a holiday surprise from Linux Journal, a new device for Google’s Fuchsia & an unfortunate new flaw in a processor near you. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/2018/episode-239.md: -------------------------------------------------------------------------------- 1 | # LUP 239: Selling Out for Open Source 2 | 3 | 4 | 5 | * Air Date: 2018-03-06 6 | * Duration: 73 mins 35 secs 7 | 8 | ## About this episode 9 | 10 | We chip away at a larger meta topic this week, but before we get there we share a batch of community news, live technical feats & a random post show. 11 | 12 | ## Your hosts 13 | * [Chris Fisher](https://linuxunplugged.com/hosts/chrislas) 14 | * [Wes Payne](https://linuxunplugged.com/hosts/wes) 15 | 16 | ## Sponsored by 17 | 18 | None 19 | 20 | 21 | 22 | ## Episode links 23 | 24 | None 25 | 26 | 27 | 28 | ## Tags 29 | 30 | -------------------------------------------------------------------------------- /docs/linux-unplugged/index.md: -------------------------------------------------------------------------------- 1 | # LINUX Unplugged 2 | 3 | This site is a searchable archive of the show notes for the [LINUX Unplugged podcast](https://linuxunplugged.com/), a production by [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/). 4 | 5 | ![lup-header](/images/lup-header.jpg) 6 | 7 | Your virtual Linux User Group (vLUG) with no limits, and tons of opinion. An open show powered by community LINUX Unplugged takes the best attributes of open collaboration and focuses them into a weekly lifestyle show about Linux. 8 | -------------------------------------------------------------------------------- /docs/office-hours/index.md: -------------------------------------------------------------------------------- 1 | # Office Hours 2 | 3 | This site is a searchable archive of the show notes for the [Office Hours podcast](https://www.officehours.hair/), a production by [Jupiter Broadcasting](https://www.jupiterbroadcasting.com/). 4 | 5 | ![logo](/images/office-hours-header.jpg) 6 | 7 | A podcast for the community of Jupiter Broadcasting, the Open Source media powerhouse of the Internet. Get the inside scope on our projects, the future of independent media, and decentralized community. 8 | 9 | Let's build the future of podcasting together. -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.3 2 | requests==2.25.1 3 | jinja2==3.0.1 4 | mkdocs==1.2.3 5 | mkdocs-material==7.2.8 6 | mkdocs-material-extensions==1.0.1 7 | pymdown-extensions==8.2 8 | html2text==2020.1.16 9 | pyyaml==6.0.1 10 | python-dateutil==2.8.2 11 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | extend_ignore=E128,E501 3 | -------------------------------------------------------------------------------- /templates/episode.md.j2: -------------------------------------------------------------------------------- 1 | # {{ show_config.acronym }} {{ episode_number_padded }}: {{ title_plain }} 2 | 3 | {{ player_embed }} 4 | 5 | * Air Date: {{ date_published }} 6 | * Duration: {{ duration }} 7 | 8 | ## About this episode 9 | 10 | {{ blurb }} 11 | 12 | ## Your hosts 13 | 14 | {%- for host in hosts %} 15 | * [{{ host.name }}]({{ host.link }}) 16 | {%- endfor %} 17 | 18 | ## Sponsored by 19 | 20 | {{ sponsors }} 21 | 22 | ## Episode links 23 | 24 | {{ links }} 25 | 26 | ## Tags 27 | 28 | {% for tag in tags %}[{{ tag.text }}]({{ tag.link }}){% if not loop.last %}, {% endif %}{% endfor %} 29 | -------------------------------------------------------------------------------- /theme/main.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block scripts %} 4 | 7 | 8 | 9 | 10 | 11 | 12 | {{ super() }} 13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /theme/theme-switcher.js: -------------------------------------------------------------------------------- 1 | /* 2 | Override the theme for specific shows. 3 | 4 | Based on https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/javascripts/palette.html 5 | 6 | NOTE: Not compatible with `navigation.instant`. 7 | */ 8 | 9 | (function() { 10 | var SHOWS = JSON.parse(document.getElementById("__shows").textContent); 11 | var PATH_PREFIX = location.pathname.split("/")[1]; 12 | 13 | for (var showSlug in SHOWS) { 14 | if (PATH_PREFIX == showSlug) { 15 | console.log("Setting custom theme for", showSlug); 16 | document.body.setAttribute("data-show", showSlug); 17 | } 18 | } 19 | }()) 20 | --------------------------------------------------------------------------------