<?xml version='1.0' encoding='utf-8' ?>

<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:atom10='http://www.w3.org/2005/Atom'>
<channel>
  <title>being with you</title>
  <link>https://ceu.dreamwidth.org/</link>
  <description>being with you - Dreamwidth Studios</description>
  <lastBuildDate>Sat, 17 Jan 2026 23:59:25 GMT</lastBuildDate>
  <generator>LiveJournal / Dreamwidth Studios</generator>
  <lj:journal>ceu</lj:journal>
  <lj:journaltype>personal</lj:journaltype>
  <image>
    <url>https://v2.dreamwidth.org/16541320/2782551</url>
    <title>being with you</title>
    <link>https://ceu.dreamwidth.org/</link>
    <width>100</width>
    <height>100</height>
  </image>

<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/24831.html</guid>
  <pubDate>Sat, 17 Jan 2026 23:59:25 GMT</pubDate>
  <title>How to add a private repository from Github to cPanel Version Control</title>
  <link>https://ceu.dreamwidth.org/24831.html</link>
  <description>&lt;strong&gt;Note:&lt;/strong&gt; Replace all &lt;font color=&quot;red&quot;&gt;RED CAPITALIZED TEXT&lt;/font&gt; with your/your repository&apos;s information.

&lt;p&gt;If using Github Desktop:&lt;/p&gt;
	&lt;ol&gt;&lt;li&gt;In repository (header) &amp;gt; Repository &amp;gt; Repository Settings&lt;/li&gt;
	&lt;li&gt;Remote &amp;gt; Primary Remote Repository (origin) URL&lt;/li&gt;
	&lt;li&gt;Make sure that repository URL is HTTPS://&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;cPanel Version Control:&lt;/p&gt;
	&lt;ol&gt;&lt;li&gt;Navigate to your website&apos;s cPanel&lt;/li&gt;
	&lt;li&gt;Open Terminal in cPanel&lt;/li&gt;
	&lt;li&gt;Enter these commands in the following order (ENTER after each):&lt;/li&gt;
		&lt;ol&gt;&lt;li&gt;&lt;code&gt;ssh-keygen -t rsa -f ~/.ssh/&lt;font color=&quot;red&quot;&gt;KEYFILENAME&lt;/font&gt; -b 4096 -C &quot;&lt;font color=&quot;red&quot;&gt;USERNAME@ROOT.DOMAIN&lt;/font&gt;&quot;&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;
                &lt;ul&gt;&lt;li&gt;&lt;font color=&quot;red&quot;&gt;KEYFILENAME&lt;/font&gt; can be anything. I advise making it similar if not identical to your repository name.&lt;/li&gt;&lt;/ul&gt;
		&lt;li&gt;&lt;code&gt;touch ~/.ssh/config&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;&lt;code&gt;chmod 0600 ~/.ssh/config&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;&lt;code&gt;chown &lt;font color=&quot;red&quot;&gt;USERNAME:USERNAME&lt;/font&gt; ~/.ssh/config&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;
	&lt;li&gt;Navigate to SSH Access &amp;gt; Manage SSH Keys&lt;/li&gt;
		&lt;ol&gt;&lt;li&gt;&lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt; Key &amp;gt; Manage &amp;gt; Authorize&lt;/li&gt;
		&lt;li&gt;&lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt; Key &amp;gt; View/Download &amp;gt; Copy key&lt;/li&gt;&lt;/ol&gt;
	&lt;li&gt;Navigate to &lt;font color=&quot;red&quot;&gt;your Github&lt;/font&gt; &amp;gt; &lt;font color=&quot;red&quot;&gt;Repository&lt;/font&gt; &amp;gt; Settings&lt;/li&gt;
		&lt;ol&gt;&lt;li&gt;Deploy Keys &amp;gt; Add deploy key&lt;/li&gt;
		&lt;li&gt;Title: &lt;code&gt;[anything]&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Key: &lt;em&gt;[paste from earlier (&quot;copy key&quot;)]&lt;/em&gt;&lt;/li&gt;
			&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Allow write access&lt;/strong&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;
	&lt;li&gt;Navigate to your website&apos;s cPanel &amp;gt; File Manager&lt;/li&gt;
		&lt;ol&gt;&lt;li&gt;Navigate to &lt;code&gt;.ssh&lt;/code&gt; (folder) &amp;gt; &lt;code&gt;config&lt;/code&gt; (file)&lt;/li&gt;
		&lt;li&gt;Add to file:&lt;pre&gt;
                        Host &lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt;.github.com
   			User git
			Hostname github.com
			IdentityFile ~/.ssh/&lt;font color=&quot;red&quot;&gt;KEYFILENAME&lt;/font&gt;
    			IdentitiesOnly yes&lt;/pre&gt;&lt;/li&gt;
		&lt;li&gt;Save and close&lt;/li&gt;&lt;/ol&gt;
	&lt;li&gt;Navigate back to cPanel Terminal&lt;/li&gt;
		&lt;ul&gt;&lt;li&gt;Test if the repository works with &lt;code&gt;ssh -Tv git@&lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt;.github.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;If it outputs by saying &lt;code&gt;Hi &lt;font color=&quot;red&quot;&gt;REPOSITORY/USERNAME&lt;/font&gt;&lt;/code&gt; then it&apos;s successful. Don&apos;t worry about additional messages.&lt;/li&gt;&lt;/ul&gt;
	&lt;li&gt;Navigate to GitVersion Control&lt;/li&gt;
		&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Create&lt;/strong&gt; the repository&lt;/li&gt;
		&lt;li&gt;For the repository URL, make sure the format is:
			&lt;code&gt;ssh://&lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt;.github.com/&lt;font color=&quot;red&quot;&gt;USERNAME&lt;/font&gt;/&lt;font color=&quot;red&quot;&gt;REPOSITORY&lt;/font&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;Then you&apos;re done! All updates pulled from Github Version Control in cPanel should now work with your private repository :)&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=24831&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/24831.html</comments>
  <category>codes</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/24180.html</guid>
  <pubDate>Thu, 04 Sep 2025 04:47:22 GMT</pubDate>
  <title>Smallweb September 2025</title>
  <link>https://ceu.dreamwidth.org/24180.html</link>
  <description>Since I&apos;m still relatively hyperfixated on webdesign but in a more manageable way, I figured that I might set some goals for &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://smallweb.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/community.png&apos; alt=&apos;[community profile] &apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://smallweb.dreamwidth.org/&apos;&gt;&lt;b&gt;smallweb&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; September, depending on how productive I feel like being this month. No promises; this list is mostly for me.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;img src=&quot;https://javert.dreamwidth.org/file/286238.png&quot;&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/24180.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=24180&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/24180.html</comments>
  <category>to do list</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/23939.html</guid>
  <pubDate>Fri, 01 Aug 2025 02:48:17 GMT</pubDate>
  <title>Javascript Atom feed reader</title>
  <link>https://ceu.dreamwidth.org/23939.html</link>
  <description>Here&apos;s the Javascript code I use to echo an HTML version of my &lt;a href=&quot;https://kingdra.net/feed.xml&quot;&gt;atom feed&lt;/a&gt; to my &lt;a href=&quot;https://kingdra.net/pages/updates&quot;&gt;updates page&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/23939.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23939&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/23939.html</comments>
  <category>codes</category>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/23561.html</guid>
  <pubDate>Mon, 30 Jun 2025 06:40:21 GMT</pubDate>
  <title>LAYOUT 003: I ALREADY DECIDED</title>
  <link>https://ceu.dreamwidth.org/23561.html</link>
  <description>&lt;center&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/file/5209.png&quot;&gt;&lt;img src=&quot;https://ceu.dreamwidth.org/file/5209.png&quot; width=&quot;300&quot; alt=&quot;&quot; title=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://blackthorncity.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://blackthorncity.dreamwidth.org/&apos;&gt;&lt;b&gt;blackthorncity&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;features:&lt;/b&gt; two column, limited modules, flexible width, custom background&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/23561.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23561&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/23561.html</comments>
  <category>dreamwidth layouts</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/23530.html</guid>
  <pubDate>Mon, 30 Jun 2025 04:27:09 GMT</pubDate>
  <title>SASO 2015 Graphics Masterlist</title>
  <link>https://ceu.dreamwidth.org/23530.html</link>
  <description>Compiled here for archival reasons.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/23530.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23530&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/23530.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/23261.html</guid>
  <pubDate>Tue, 18 Feb 2025 16:17:48 GMT</pubDate>
  <title>Javascript for changing image and text at the same time on click</title>
  <link>https://ceu.dreamwidth.org/23261.html</link>
  <description>I don&apos;t write a lot of Javascript code, but &lt;a href=&quot;https://situations.neocities.org&quot;&gt;a friend&lt;/a&gt; wanted some help with website stuff and I&apos;m always happy to help, so I wrote some code for her. I&apos;m sharing it here for archival reasons, but also if anyone happens to stop by and is interested in implementing this logic themselves. &lt;br /&gt;&lt;br /&gt;You will need some familiarity with HTML, CSS, and algorithmic code for this. I will not be explaining it in detail here.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What this code does:&lt;/b&gt; For each in-page click with the corresponding ID, a random image will be selected and changed per click. At the same time, text elsewhere on the page will also change, per the webmaster&apos;s preset settings.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What this code is for:&lt;/b&gt; Websites that utilize iframes as internal navigation, in order to allow the title of the page, not within the iframe, to change; simultaneously this allows the random image to change with each new iframe navigation without leaving or refreshing the page.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/23261.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23261&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/23261.html</comments>
  <category>codes</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/22481.html</guid>
  <pubDate>Tue, 14 Jan 2025 18:48:32 GMT</pubDate>
  <title>I came here to make you dance tonight.</title>
  <link>https://ceu.dreamwidth.org/22481.html</link>
  <description>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://ceu.dreamwidth.org/file/4962.gif&quot; width=&quot;500&quot; style=&quot;max-width: 100%;&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;big&gt;&amp;star; a digital repository &amp;star;&lt;/big&gt;&lt;br /&gt;&lt;a href=&quot;https://aroceu.com&quot;&gt;website&lt;/a&gt; &amp;bull; &lt;a href=&quot;https://kingdra.net&quot;&gt;network&lt;/a&gt; &amp;bull; &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://masterball.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/community.png&apos; alt=&apos;[community profile] &apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://masterball.dreamwidth.org/&apos;&gt;&lt;b&gt;masterball&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=22481&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/22481.html</comments>
  <category>!intro</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/21587.html</guid>
  <pubDate>Sun, 22 Dec 2024 02:19:16 GMT</pubDate>
  <title>Fake It &amp;mdash; liner notes</title>
  <link>https://ceu.dreamwidth.org/21587.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/21587.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21587&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/21587.html</comments>
  <category>liner notes</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/21359.html</guid>
  <pubDate>Wed, 11 Dec 2024 03:09:39 GMT</pubDate>
  <title>Kid You&apos;ll Move Mountains: DVD commentary</title>
  <link>https://ceu.dreamwidth.org/21359.html</link>
  <description>I&apos;d written the following shortly after writing Kid You&apos;ll Move Mountains at the end of 2015, and uncovered it again, as it&apos;s still private. But I think it&apos;s valuable and interesting to archive in public, so I&apos;m copying it here. I&apos;m also doubtful that I&apos;ll write a real DVD commentary for it, so we&apos;ll just consider this that. For now. Enjoy my insanity :)&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;KYMM, or death fic: reflection post&lt;/b&gt; written December 2, 2015, a day after finishing writing this fic&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/21359.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21359&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/21359.html</comments>
  <category>dvd commentary</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/21233.html</guid>
  <pubDate>Wed, 11 Dec 2024 03:04:20 GMT</pubDate>
  <title>to sing of the damage: DVD commentary (unfinished)</title>
  <link>https://ceu.dreamwidth.org/21233.html</link>
  <description>&lt;img src=&quot;https://ceu.dreamwidth.org/file/4727.png&quot;&gt;&lt;br /&gt;&lt;br /&gt;I started writing this in October 2020, then decided, &quot;well, the point of this fic isn&apos;t to explain it, isn&apos;t it?&quot; But for fun, because I wrote quite a bit of it already, I&apos;m sharing it here.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://aroceu.com/fic/197/&quot;&gt;Link to the fic&lt;/a&gt; on my site, for ease of access.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/21233.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21233&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/21233.html</comments>
  <category>dvd commentary</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/20682.html</guid>
  <pubDate>Mon, 25 Nov 2024 04:02:30 GMT</pubDate>
  <title>haunt and kill: b-side</title>
  <link>https://ceu.dreamwidth.org/20682.html</link>
  <description>My first attempt at writing this, before I decided to go from another direction :)&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/20682.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20682&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/20682.html</comments>
  <category>b-side</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/20253.html</guid>
  <pubDate>Mon, 25 Nov 2024 03:58:36 GMT</pubDate>
  <title>our bodies possessed by light: b-sides</title>
  <link>https://ceu.dreamwidth.org/20253.html</link>
  <description>Just some porny bits that weren&apos;t part of/didn&apos;t flow with the sequence of events in the prompt so I ended up scrapping them. Writing smut is just writing action to me.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/20253.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20253&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/20253.html</comments>
  <category>b-side</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/20164.html</guid>
  <pubDate>Mon, 25 Nov 2024 03:53:10 GMT</pubDate>
  <title>getting used to being held by you: b-side</title>
  <link>https://ceu.dreamwidth.org/20164.html</link>
  <description>Originally in &lt;a href=&quot;https://aroceu.com/fic/1682/&quot;&gt;this fic for Athene&lt;/a&gt;, I had written a scene with some intimacy before I realized that I didn&apos;t really like its flow in what I wanted the missing scene of the fic to do - both in terms of intimacy and communication, which didn&apos;t really quite fit with the following scenes in canon. So I scrapped it.&lt;br /&gt;&lt;br /&gt;Here it is :)&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/20164.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20164&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/20164.html</comments>
  <category>b-side</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/19910.html</guid>
  <pubDate>Tue, 29 Oct 2024 18:10:15 GMT</pubDate>
  <title>try lines: b-side</title>
  <link>https://ceu.dreamwidth.org/19910.html</link>
  <description>This is a bit of Pat and Pran&apos;s POV during their first meeting, as the fic is primarily in Wai&apos;s POV. But I did have this written before I wrote Wai&apos;s POV, so I knew what was happening (or at least, the beginning of) in a conversation of the non-POV character. It is not a deleted scene but rather a &quot;missing scene.&quot;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19910.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19910&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/19910.html</comments>
  <category>b-side</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/19642.html</guid>
  <pubDate>Mon, 21 Oct 2024 01:14:20 GMT</pubDate>
  <title>[Archive] Graphics &amp;mdash; Kiss You icons (48), banners (5), and gifs (3)</title>
  <link>https://ceu.dreamwidth.org/19642.html</link>
  <description>Credit (to &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://imgur.com/a/C0gH1Ce&quot;&gt;Album link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19642.html#cutid1&quot;&gt;icons (48)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___2&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19642.html#cutid2&quot;&gt;banners (5)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___2&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___3&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19642.html#cutid3&quot;&gt;gifs (3)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___3&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19642&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/19642.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/19417.html</guid>
  <pubDate>Mon, 21 Oct 2024 00:52:26 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; Super Junior &amp;mdash; No Other (65)</title>
  <link>https://ceu.dreamwidth.org/19417.html</link>
  <description>Not (intentionally) organized.&lt;br /&gt;&lt;br /&gt;Credit (to &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19417.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19417&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/19417.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/19086.html</guid>
  <pubDate>Mon, 21 Oct 2024 00:34:16 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; Super Junior &amp;mdash; Bonamana (39)</title>
  <link>https://ceu.dreamwidth.org/19086.html</link>
  <description>Credit (to &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/19086.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19086&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/19086.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/18875.html</guid>
  <pubDate>Mon, 21 Oct 2024 00:19:15 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; Super Junior (72)</title>
  <link>https://ceu.dreamwidth.org/18875.html</link>
  <description>Not (intentionally) organized.&lt;br /&gt;&lt;br /&gt;Credit is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18875.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18875&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/18875.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/18585.html</guid>
  <pubDate>Mon, 21 Oct 2024 00:00:39 GMT</pubDate>
  <title>[Archive] Graphics &amp;mdash; Kyuhyun/Yesung, icons (22), banners (1), gifs (8)</title>
  <link>https://ceu.dreamwidth.org/18585.html</link>
  <description>Credit (to &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) is not necessary, but certainly appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18585.html#cutid1&quot;&gt;icons&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___2&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18585.html#cutid2&quot;&gt;banners&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___2&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___3&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18585.html#cutid3&quot;&gt;gifs&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___3&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18585&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/18585.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/18363.html</guid>
  <pubDate>Sun, 20 Oct 2024 23:34:20 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; Fandom misc. (15) + TSN Banner lol (1)</title>
  <link>https://ceu.dreamwidth.org/18363.html</link>
  <description>Not organized. &lt;br /&gt;&lt;br /&gt;For art icons, please credit the artist. You may also credit me (&lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) if you wish, but it&apos;s not necessary.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18363.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18363&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/18363.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/18108.html</guid>
  <pubDate>Sun, 20 Oct 2024 23:20:35 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; K-Pop (13)</title>
  <link>https://ceu.dreamwidth.org/18108.html</link>
  <description>Not organized. &lt;br /&gt;&lt;br /&gt;Groups included are: SHINee (5), Block B (5), SNSD (2), Miss A (2), and crossover (1).&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/18108.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18108&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/18108.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/17871.html</guid>
  <pubDate>Sun, 20 Oct 2024 22:56:23 GMT</pubDate>
  <title>[Archive] Icons &amp;mdash; Anime/Manga (26)</title>
  <link>https://ceu.dreamwidth.org/17871.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17871.html#cutid1&quot;&gt;haikyuu (14)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___2&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17871.html#cutid2&quot;&gt;knb (3)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___2&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___3&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17871.html#cutid3&quot;&gt;pokemon (4)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___3&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___4&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17871.html#cutid4&quot;&gt;other (5)&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___4&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17871&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/17871.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/17635.html</guid>
  <pubDate>Sun, 20 Oct 2024 22:29:16 GMT</pubDate>
  <title>[Archive] Miscellaneous Graphics</title>
  <link>https://ceu.dreamwidth.org/17635.html</link>
  <description>As part of my quest to upload all the semi-usable graphics I have ever uploaded to the web for archive purposes, here are all the non-fannish graphics that I&apos;ve made and uploaded and find to be still somewhat usable.&lt;br /&gt;&lt;br /&gt;I also want to add (just for fun) that I have a lot more graphics in my files, but they&apos;re mostly song lyrics from 2008.&lt;br /&gt;&lt;br /&gt;Credit (to &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://ceu.dreamwidth.org/&apos;&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or &quot;aroceu&quot;) is not necessary, but certainly appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid1&quot;&gt;navigation&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___2&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid2&quot;&gt;smilies&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___2&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___3&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid3&quot;&gt;icons&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___3&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___4&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid4&quot;&gt;banners&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___4&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___5&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid5&quot;&gt;social media graphics&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___5&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___6&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid6&quot;&gt;discord emojis&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___6&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___7&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17635.html#cutid7&quot;&gt;gifs&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___7&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17635&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/17635.html</comments>
  <category>graphics/icons</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/17264.html</guid>
  <pubDate>Fri, 18 Oct 2024 21:02:47 GMT</pubDate>
  <title>LAYOUT 002: BUT I STILL THINK ABOUT YOU, THINK ABOUT YOU</title>
  <link>https://ceu.dreamwidth.org/17264.html</link>
  <description>&lt;center&gt;&lt;a href=&quot;https://ex_aroceu318.dreamwidth.org/file/55592.png&quot;&gt;&lt;img src=&quot;https://ex_aroceu318.dreamwidth.org/file/600x600/55592.png&quot; width=&quot;300&quot; alt=&quot;&quot; title=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://gimmelove.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://gimmelove.dreamwidth.org/&apos;&gt;&lt;b&gt;gimmelove&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;features:&lt;/b&gt; two column, supports all modules, fixed width, custom &apos;locked&apos;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17264.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17264&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/17264.html</comments>
  <category>dreamwidth layouts</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://ceu.dreamwidth.org/17113.html</guid>
  <pubDate>Fri, 18 Oct 2024 21:01:57 GMT</pubDate>
  <title>LAYOUT 001: KINKMEME REDUX</title>
  <link>https://ceu.dreamwidth.org/17113.html</link>
  <description>&lt;center&gt;&lt;a href=&quot;https://ex_aroceu318.dreamwidth.org/file/53172.png&quot;&gt;&lt;img src=&quot;https://ex_aroceu318.dreamwidth.org/file/600x600/53172.png&quot; width=&quot;300&quot; alt=&quot;&quot; title=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://memekink.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://memekink.dreamwidth.org/&apos;&gt;&lt;b&gt;memekink&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;small&gt;also, if you have or know of a kinkmeme not listed where the live preview is, feel free to let me know so I can add it to the aforementioned journal&lt;/small&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://ceu.dreamwidth.org/17113.html#cutid1&quot;&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17113&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://ceu.dreamwidth.org/17113.html</comments>
  <category>dreamwidth layouts</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
</channel>
</rss>
