aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-11-05 07:44:35 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-11-05 07:44:35 +0100
commit0a41dae7e11d064d8f94227b18a97154f696f240 (patch)
treef61e43fd695625cec55c9be64453d2f092efa6c7
parentb5b3af31e507e4cf53ab54a866b88e8331c22750 (diff)
downloadmitjafelicijan.com-0a41dae7e11d064d8f94227b18a97154f696f240.tar.gz
Added new RSS feed to webring
-rw-r--r--_includes/webring.html10
-rw-r--r--bin/webring.rb1
2 files changed, 9 insertions, 2 deletions
diff --git a/_includes/webring.html b/_includes/webring.html
index 7eb5332..8ec704f 100644
--- a/_includes/webring.html
+++ b/_includes/webring.html
@@ -1,5 +1,11 @@
1 <h2>Posts from blogs I follow around the net</h2> 1 <h2>Posts from blogs I follow around the net</h2>
2 <ul> <li> 2 <ul> <li>
3 <a href="https://blog.regehr.org/archives/2485" target="_blank" rel="noopener">Why Do Peephole Optimizations Work?</a>
4
5 <a href="<link>https://blog.regehr.org" target="_blank" rel="noopener">Embedded in Academia</a>
6 <div>In its original form, a peephole optimization applied to a collection of instructions located close together in a program. For example, in a register transfer language we might find this sequence of instructions: r0 = xor r8, -1 r1 = xor r9, -1 r0 = and r0, r1 Here, assuming the two’s complement representation, -1 […]</div>
7 </li>
8 <li>
3 <a href="http://www.landley.net/notes-2023.html#30-10-2023" target="_blank" rel="noopener">October 30, 2023</a> 9 <a href="http://www.landley.net/notes-2023.html#30-10-2023" target="_blank" rel="noopener">October 30, 2023</a>
4 10
5 <a href="http://www.landley.net/notes-2023.html" target="_blank" rel="noopener">Rob Landley's Blog Thing for 2023</a> 11 <a href="http://www.landley.net/notes-2023.html" target="_blank" rel="noopener">Rob Landley's Blog Thing for 2023</a>
@@ -43,10 +49,10 @@
43 <div>For over 10 years now, I run two self-built NAS (Network Storage) devices which serve media (currently via Jellyfin) and run daily backups of all my PCs and servers. In this article, I describe my goals, which hardware I picked for my new build (and why) and how I set it up. Design Goals I use my network storage device...</div> 49 <div>For over 10 years now, I run two self-built NAS (Network Storage) devices which serve media (currently via Jellyfin) and run daily backups of all my PCs and servers. In this article, I describe my goals, which hardware I picked for my new build (and why) and how I set it up. Design Goals I use my network storage device...</div>
44 </li> 50 </li>
45 <li> 51 <li>
46 <a href="https://utcc.utoronto.ca/~cks/space/blog/sysadmin/OurVaryingPhysicalSecurityLevels" target="_blank" rel="noopener">Our varying levels of what you could charitably call &#39;physical security&#39;</a> 52 <a href="https://utcc.utoronto.ca/~cks/space/blog/spam/DKIMHeaderSigningMeaning" target="_blank" rel="noopener">The various meanings of DKIM signing message headers</a>
47 53
48 <a href="https://utcc.utoronto.ca/~cks/space/blog/" target="_blank" rel="noopener">Chris&#39;s Wiki :: blog</a> 54 <a href="https://utcc.utoronto.ca/~cks/space/blog/" target="_blank" rel="noopener">Chris&#39;s Wiki :: blog</a>
49 <div>As I mentioned way back when I discussed how rogue wireless access points are a bigger risk at universities, one of the unusual things about universities is that we usually don't have anywhere near as much physical security as, say, a typical company does. This is because in practice most university buildings are open ...</div> 55 <div>When I talked about the issue of what headers to include in email DKIM signatures, I didn't really cover the specifics of how you DKIM sign email headers and what the various options mean. The specifics can matter, especially since they help you (me) understand and navigate through the options that mailers (such as Exi...</div>
50 </li> 56 </li>
51 <li> 57 <li>
52 <a href="https://szymonkaliski.com/writing/2023-10-02-building-a-diy-pen-plotter/" target="_blank" rel="noopener">Building a DIY Pen Plotter</a> 58 <a href="https://szymonkaliski.com/writing/2023-10-02-building-a-diy-pen-plotter/" target="_blank" rel="noopener">Building a DIY Pen Plotter</a>
diff --git a/bin/webring.rb b/bin/webring.rb
index 066d66b..6156a7d 100644
--- a/bin/webring.rb
+++ b/bin/webring.rb
@@ -6,6 +6,7 @@ require "simple-rss"
6summary_max_length = 320 6summary_max_length = 320
7 7
8feeds = [ 8feeds = [
9 "https://blog.regehr.org/feed",
9 "https://landley.net/rss.xml", 10 "https://landley.net/rss.xml",
10 "https://drewdevault.com/feed.xml", 11 "https://drewdevault.com/feed.xml",
11 "https://offbeatpursuit.com/blog/index.rss", 12 "https://offbeatpursuit.com/blog/index.rss",