<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dw="https://www.dreamwidth.org">
  <id>tag:dreamwidth.org,2017-01-22:2782551</id>
  <title>being with you</title>
  <subtitle>already feels like freedom</subtitle>
  <author>
    <name>Arrow</name>
  </author>
  <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/"/>
  <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom"/>
  <updated>2026-02-21T06:43:43Z</updated>
  <dw:journal username="ceu" type="personal"/>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:24831</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/24831.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=24831"/>
    <title>How to add a private repository from Github to cPanel Version Control</title>
    <published>2026-01-17T23:59:25Z</published>
    <updated>2026-01-17T23:59:25Z</updated>
    <category term="codes"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;strong&gt;Note:&lt;/strong&gt; Replace all &lt;font color="red"&gt;RED CAPITALIZED TEXT&lt;/font&gt; with your/your repository'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'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="red"&gt;KEYFILENAME&lt;/font&gt; -b 4096 -C "&lt;font color="red"&gt;USERNAME@ROOT.DOMAIN&lt;/font&gt;"&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;
                &lt;ul&gt;&lt;li&gt;&lt;font color="red"&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="red"&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="red"&gt;REPOSITORY&lt;/font&gt; Key &amp;gt; Manage &amp;gt; Authorize&lt;/li&gt;
		&lt;li&gt;&lt;font color="red"&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="red"&gt;your Github&lt;/font&gt; &amp;gt; &lt;font color="red"&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 ("copy key")]&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'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="red"&gt;REPOSITORY&lt;/font&gt;.github.com
   			User git
			Hostname github.com
			IdentityFile ~/.ssh/&lt;font color="red"&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="red"&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="red"&gt;REPOSITORY/USERNAME&lt;/font&gt;&lt;/code&gt; then it's successful. Don'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="red"&gt;REPOSITORY&lt;/font&gt;.github.com/&lt;font color="red"&gt;USERNAME&lt;/font&gt;/&lt;font color="red"&gt;REPOSITORY&lt;/font&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;Then you'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="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=24831" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:24180</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/24180.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=24180"/>
    <title>Smallweb September 2025</title>
    <published>2025-09-04T04:47:22Z</published>
    <updated>2025-10-31T13:16:44Z</updated>
    <category term="to do list"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Since I'm still relatively hyperfixated on webdesign but in a more manageable way, I figured that I might set some goals for &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://smallweb.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/community.png' alt='[community profile] ' width='16' height='16' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://smallweb.dreamwidth.org/'&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="https://javert.dreamwidth.org/file/286238.png"&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/24180.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=24180" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:23939</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/23939.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=23939"/>
    <title>Javascript Atom feed reader</title>
    <published>2025-08-01T02:48:17Z</published>
    <updated>2025-08-01T04:10:00Z</updated>
    <category term="codes"/>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">Here's the Javascript code I use to echo an HTML version of my &lt;a href="https://kingdra.net/feed.xml"&gt;atom feed&lt;/a&gt; to my &lt;a href="https://kingdra.net/pages/updates"&gt;updates page&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/23939.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23939" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:23561</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/23561.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=23561"/>
    <title>LAYOUT 003: I ALREADY DECIDED</title>
    <published>2025-06-30T06:40:21Z</published>
    <updated>2026-02-21T06:42:11Z</updated>
    <category term="dreamwidth layouts"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;center&gt;&lt;a href="https://ceu.dreamwidth.org/file/5209.png"&gt;&lt;img src="https://ceu.dreamwidth.org/file/5209.png" width="300" alt="" title="" /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://blackthorncity.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://blackthorncity.dreamwidth.org/'&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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/23561.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23561" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:23530</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/23530.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=23530"/>
    <title>SASO 2015 Graphics Masterlist</title>
    <published>2025-06-30T04:27:09Z</published>
    <updated>2025-06-30T04:27:15Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Compiled here for archival reasons.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/23530.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23530" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:23261</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/23261.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=23261"/>
    <title>Javascript for changing image and text at the same time on click</title>
    <published>2025-02-18T16:17:48Z</published>
    <updated>2025-02-27T18:23:55Z</updated>
    <category term="codes"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">I don't write a lot of Javascript code, but &lt;a href="https://situations.neocities.org"&gt;a friend&lt;/a&gt; wanted some help with website stuff and I'm always happy to help, so I wrote some code for her. I'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'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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/23261.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=23261" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:22481</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/22481.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=22481"/>
    <title>I came here to make you dance tonight.</title>
    <published>2025-01-14T18:48:32Z</published>
    <updated>2026-02-21T06:41:05Z</updated>
    <category term="!intro"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;div style="text-align: center;"&gt;&lt;img src="https://ceu.dreamwidth.org/file/4962.gif" width="500" style="max-width: 100%;"&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="https://aroceu.com"&gt;website&lt;/a&gt; &amp;bull; &lt;a href="https://kingdra.net"&gt;network&lt;/a&gt; &amp;bull; &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://masterball.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/community.png' alt='[community profile] ' width='16' height='16' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://masterball.dreamwidth.org/'&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="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=22481" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:21587</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/21587.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=21587"/>
    <title>Fake It &amp;mdash; liner notes</title>
    <published>2024-12-22T02:19:16Z</published>
    <updated>2026-02-21T06:43:43Z</updated>
    <category term="liner notes"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/21587.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21587" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:21359</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/21359.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=21359"/>
    <title>Kid You'll Move Mountains: DVD commentary</title>
    <published>2024-12-11T03:09:39Z</published>
    <updated>2024-12-11T03:09:55Z</updated>
    <category term="dvd commentary"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">I'd written the following shortly after writing Kid You'll Move Mountains at the end of 2015, and uncovered it again, as it's still private. But I think it's valuable and interesting to archive in public, so I'm copying it here. I'm also doubtful that I'll write a real DVD commentary for it, so we'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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/21359.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21359" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:21233</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/21233.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=21233"/>
    <title>to sing of the damage: DVD commentary (unfinished)</title>
    <published>2024-12-11T03:04:20Z</published>
    <updated>2024-12-11T03:04:20Z</updated>
    <category term="dvd commentary"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;img src="https://ceu.dreamwidth.org/file/4727.png"&gt;&lt;br /&gt;&lt;br /&gt;I started writing this in October 2020, then decided, "well, the point of this fic isn't to explain it, isn't it?" But for fun, because I wrote quite a bit of it already, I'm sharing it here.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://aroceu.com/fic/197/"&gt;Link to the fic&lt;/a&gt; on my site, for ease of access.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/21233.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=21233" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:20682</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/20682.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=20682"/>
    <title>haunt and kill: b-side</title>
    <published>2024-11-25T04:02:30Z</published>
    <updated>2024-11-25T04:02:30Z</updated>
    <category term="b-side"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">My first attempt at writing this, before I decided to go from another direction :)&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/20682.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20682" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:20253</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/20253.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=20253"/>
    <title>our bodies possessed by light: b-sides</title>
    <published>2024-11-25T03:58:36Z</published>
    <updated>2024-11-25T03:58:36Z</updated>
    <category term="b-side"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Just some porny bits that weren't part of/didn'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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/20253.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20253" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:20164</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/20164.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=20164"/>
    <title>getting used to being held by you: b-side</title>
    <published>2024-11-25T03:53:10Z</published>
    <updated>2024-11-25T03:53:10Z</updated>
    <category term="b-side"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Originally in &lt;a href="https://aroceu.com/fic/1682/"&gt;this fic for Athene&lt;/a&gt;, I had written a scene with some intimacy before I realized that I didn'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'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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/20164.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=20164" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:19910</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/19910.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=19910"/>
    <title>try lines: b-side</title>
    <published>2024-10-29T18:10:15Z</published>
    <updated>2024-10-29T18:10:15Z</updated>
    <category term="b-side"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">This is a bit of Pat and Pran's POV during their first meeting, as the fic is primarily in Wai's POV. But I did have this written before I wrote Wai'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 "missing scene."&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19910.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19910" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:19642</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/19642.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=19642"/>
    <title>[Archive] Graphics &amp;mdash; Kiss You icons (48), banners (5), and gifs (3)</title>
    <published>2024-10-21T01:14:20Z</published>
    <updated>2024-10-21T01:16:29Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Credit (to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://imgur.com/a/C0gH1Ce"&gt;Album link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19642.html#cutid1"&gt;icons (48)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___2" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19642.html#cutid2"&gt;banners (5)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___2" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___3" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19642.html#cutid3"&gt;gifs (3)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___3" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19642" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:19417</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/19417.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=19417"/>
    <title>[Archive] Icons &amp;mdash; Super Junior &amp;mdash; No Other (65)</title>
    <published>2024-10-21T00:52:26Z</published>
    <updated>2024-10-21T00:52:26Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Not (intentionally) organized.&lt;br /&gt;&lt;br /&gt;Credit (to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19417.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19417" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:19086</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/19086.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=19086"/>
    <title>[Archive] Icons &amp;mdash; Super Junior &amp;mdash; Bonamana (39)</title>
    <published>2024-10-21T00:34:16Z</published>
    <updated>2024-10-21T00:34:16Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Credit (to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/19086.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=19086" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:18875</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/18875.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=18875"/>
    <title>[Archive] Icons &amp;mdash; Super Junior (72)</title>
    <published>2024-10-21T00:19:15Z</published>
    <updated>2024-10-21T00:35:43Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Not (intentionally) organized.&lt;br /&gt;&lt;br /&gt;Credit is not necessary, but appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18875.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18875" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:18585</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/18585.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=18585"/>
    <title>[Archive] Graphics &amp;mdash; Kyuhyun/Yesung, icons (22), banners (1), gifs (8)</title>
    <published>2024-10-21T00:00:39Z</published>
    <updated>2024-10-21T00:36:49Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Credit (to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") is not necessary, but certainly appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18585.html#cutid1"&gt;icons&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___2" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18585.html#cutid2"&gt;banners&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___2" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___3" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18585.html#cutid3"&gt;gifs&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___3" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18585" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:18363</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/18363.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=18363"/>
    <title>[Archive] Icons &amp;mdash; Fandom misc. (15) + TSN Banner lol (1)</title>
    <published>2024-10-20T23:34:20Z</published>
    <updated>2024-10-24T14:14:56Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Not organized. &lt;br /&gt;&lt;br /&gt;For art icons, please credit the artist. You may also credit me (&lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") if you wish, but it's not necessary.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18363.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18363" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:18108</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/18108.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=18108"/>
    <title>[Archive] Icons &amp;mdash; K-Pop (13)</title>
    <published>2024-10-20T23:20:35Z</published>
    <updated>2024-10-24T14:16:14Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/18108.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=18108" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:17871</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/17871.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=17871"/>
    <title>[Archive] Icons &amp;mdash; Anime/Manga (26)</title>
    <published>2024-10-20T22:56:23Z</published>
    <updated>2024-10-24T14:14:27Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17871.html#cutid1"&gt;haikyuu (14)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___2" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17871.html#cutid2"&gt;knb (3)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___2" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___3" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17871.html#cutid3"&gt;pokemon (4)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___3" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___4" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17871.html#cutid4"&gt;other (5)&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___4" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17871" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:17635</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/17635.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=17635"/>
    <title>[Archive] Miscellaneous Graphics</title>
    <published>2024-10-20T22:29:16Z</published>
    <updated>2024-10-24T14:13:14Z</updated>
    <category term="graphics/icons"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">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'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're mostly song lyrics from 2008.&lt;br /&gt;&lt;br /&gt;Credit (to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://ceu.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ceu.dreamwidth.org/'&gt;&lt;b&gt;ceu&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or "aroceu") is not necessary, but certainly appreciated.&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid1"&gt;navigation&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___2" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid2"&gt;smilies&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___2" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___3" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid3"&gt;icons&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___3" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___4" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid4"&gt;banners&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___4" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___5" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid5"&gt;social media graphics&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___5" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___6" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid6"&gt;discord emojis&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___6" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___7" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17635.html#cutid7"&gt;gifs&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___7" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17635" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:17264</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/17264.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=17264"/>
    <title>LAYOUT 002: BUT I STILL THINK ABOUT YOU, THINK ABOUT YOU</title>
    <published>2024-10-18T21:02:47Z</published>
    <updated>2025-04-28T04:05:24Z</updated>
    <category term="dreamwidth layouts"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;center&gt;&lt;a href="https://ex_aroceu318.dreamwidth.org/file/55592.png"&gt;&lt;img src="https://ex_aroceu318.dreamwidth.org/file/600x600/55592.png" width="300" alt="" title="" /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://gimmelove.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://gimmelove.dreamwidth.org/'&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 'locked'&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17264.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17264" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2017-01-22:2782551:17113</id>
    <link rel="alternate" type="text/html" href="https://ceu.dreamwidth.org/17113.html"/>
    <link rel="self" type="text/xml" href="https://ceu.dreamwidth.org/data/atom/?itemid=17113"/>
    <title>LAYOUT 001: KINKMEME REDUX</title>
    <published>2024-10-18T21:01:57Z</published>
    <updated>2025-04-28T04:04:46Z</updated>
    <category term="dreamwidth layouts"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;center&gt;&lt;a href="https://ex_aroceu318.dreamwidth.org/file/53172.png"&gt;&lt;img src="https://ex_aroceu318.dreamwidth.org/file/600x600/53172.png" width="300" alt="" title="" /&gt;&lt;/a&gt;&lt;br /&gt;live preview/usage @ &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://memekink.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://memekink.dreamwidth.org/'&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="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://ceu.dreamwidth.org/17113.html#cutid1"&gt;Read more...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=ceu&amp;ditemid=17113" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
</feed>
