1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /**
- * <https://y.st./>
- * Copyright © 2016 Alex Yst <mailto:copyright@y.st>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org./licenses/>.
- **/
- $xhtml = array(
- 'title' => 'Links really is a screwy Web browser.',
- 'body' => <<<END
- <img src="/img/CC_BY-SA_4.0/y.st./weblog/2016/12/07.jpg" alt="A squirrel on a post" class="weblog-header-image" width="809" height="480" />
- <h2 id="general">General news</h2>
- <p>
- The shift leader with the hurt arm came in today to drop off treats for us for dealing with their incapacitation, so I asked what had happened to their arm.
- Apparently, they don't know, and their arm just started hurting really badly.
- They'll be back on duty tomorrow, though they won't be able to lift the supplies brought by the supply truck.
- Hopefully, their arm continues to improve.
- </p>
- <p>
- It's been brought to my attention that <a href="apt:links">Links</a> can no longer handle my website now that I've added JavaScript to it.
- Why not, you ask? Is it because the JavaScript is necessary for any functionality whatsoever? No.
- Actually, it boils down to a bug in Links that causes it to treat $a[XHTML] files as $a[HTML] files.
- I've seen this problem crop up several times, but now, the issue is that Links is expecting a self-closing <code><script/></code> tag to have a close tag.
- In $a[HTML], that tag does in fact have a close tag.
- I've got no known way to fix this on my end without mucking up my code because the bug is in fact not on my end.
- I could put together a hacky solution, but I hate messy code.
- That's why I use $a[XHTML] instead of $a[HTML] in the first place.
- If an when someone wants to test my website in the latest version of Links, I'll file a bug report, but installing it myself requires compilation.
- I don't have time to deal with compilation and the manual dependency resolution that goes with it.
- </p>
- <h2 id="university">University life</h2>
- <p>
- I lost track of time.
- I thought that i still had tomorrow to get my schoolwork in, but it was actually due today.
- As soon as I realized my mistake, I made haste to grade the essays for the week, then wrote up my remaining discussion posts:
- </p>
- <blockquote>
- <p>
- I don't think that leaks on our end are why we have a stake in the water utility company.
- Rather, it's because we're paying them and receiving a good (water) from them.
- </p>
- <p>
- Restaurants tend to try not to stock much extra food.
- If they have extra, there's a chance that it'll go bad.
- As a result, when their food stock comes in late, it can have an impediment impact.
- Like you said, items can have to be removed from the menu because of it.
- I've seen this problem in the restaurant that I work at before.
- I imagine that grocery stores aren't hit as quickly, as they do keep a lot of each product on hand, but they are still affected if the delay is too great.
- </p>
- <p>
- Employees, such as those working in the control tower, are very often stake holders in company decisions.
- Whatever the company decides to do, the employees are the ones that have to carry it out.
- </p>
- </blockquote>
- <blockquote>
- <p>
- Job security is an important point that I hadn't considered.
- Employees would indeed care what their company does, especially if it is likely to end badly and result in a need for layoffs.
- If the company is setting up a new location of business, employees may also need to worry about getting transfered there.
- This may not be the case with the local airport though unless the local airport is part of a larger chain.
- </p>
- </blockquote>
- <blockquote>
- <p>
- It sounds like the company faced some heavy oppression.
- I'm all in favor of regulation, but it's not right when the government takes full control of the company and treats the board of directors as mere figureheads.
- Were there any other stakeholders besides the government? How were customers affected? Would the board of directors be stakeholders as well?
- </p>
- </blockquote>
- <p>
- Lastly, I finished the <a href="/en/coursework/BUS1101/SCAMPER.xhtml">SCAMPER</a> assignment.
- I had to put off the journal assignment though.
- Again.
- I really need to do better, but I'm drowning in a mountain of stress from various sources.
- The course sucks, I need to find an apartment, work eats most of my time, et cetera.
- I'm not really sure what I can do aside from force myself to complete my schoolwork early even on days that I'm exhausted.
- </p>
- END
- );
|