As a graduated homeschooler and introvert who is living with my family, in an remote-ish area with only a handful of COVID cases, I'm quite enjoying this period of staying at home. I'm doing stuff I like, and I have exactly the right amount of social interaction.
None.
Hang on, that's obviously not true. I'm spending time with my family, and I'm talking to people online, and I've even written a few letters.
Actual face-to-face talking time with non-family members: zero hours for, like, going on four weeks?? and I am fine with that.
(Should I be concerned about myself.)
But there's so much to do! So many ways to spend your time! Such fun to be had! So many people to not talk to!
Julia from Lit Aflame posted a collab of 124 Things To Do When You're Exiled At Home. And Emily from The Ones That Really Matter put up a great post featuring such suggestions as Jedi training (this won't be affected by social distancing as hugs are probably against the Jedi code), exploring wardrobes, and becoming obsessively attached to a specific piece of jewellery. (I approve.) Read these! There's some great ideas!
I, on the other hand, have a list of ramblings for today's post. I'm sure any suggestions I might make have already been covered (a list of 124 things won't leave many untouched... at least, not many that are easy to think of.) but I'll see if I can add anything to what is, I'm sure, a popular topic.
• • • • • • •
T H I N G S T O D O
Reading
uh. obviously. (This gets its own section.)
My quarantine book list includes the following: ✓The Copper Gauntlet, The Bronze Key, The Silver Mask (Magisterium #2-4), Holly Black and Cassandra Clare ✓Leave It to Psmith, P.G. Wodehouse ✓ Muse of Nightmares (Strange the Dreamer #2), Laini Taylor
☐ Northanger Abbey, Jane Austen
☐ The Lost Plot (The Invisible Library #4), Genevieve Cogman
So I spent the last two weeks on a work placement, which was awesome! but also took from 8:30-5. And I KNOW that's fairly regular hours for a job (I DON'T WANT TO ADULT, SURPRISE!!), but I also had a ~2-hour round drive. So. That + my assessment = minimal blogging time.
(Hint: do not leave assessments until the date they're due when that date coincides the last day of a two-week work placement which means you'll be out from 7:30am until 6pm.)
(If you needed that advice.)
But now I'm back! Or not. To be honest, I'll be just as sporadic as ever.
...annnyway. Let's leave the uncomfortable confessions there, shall we??
Today, I've written [discovered that I had actually had a draft already for] a post on coding! Specifically, writing code that will help you when blogging. So enjoy!
[Note: this post is actually rather ironic considering recent events. I wrote the draft of this post, giving tips from my experience in coding, and then I discovered that I'd messed up something, somewhere in my blog's code, which made the sidebar refuse to behave. BUT I FIXED IT. (With your awesome help.) So I'm definitely qualified to be teaching this subject 'cause debugging code is way harder than writing it.]
*pretends to be super-qualified*
a few coding tricks for bloggers
A great way to personalise your blog, and to smarten it up from the Blogger templates (which are sometimes a bit tacky), is to play around with the coding.
And since we're talking about coding tricks, Autumn (at Autumn Reads and Writes) wrote an amazing post about how to change how links look in your blog![I confess it was not a recent post. I'm a slacker, okay?? But it's still a good resource!] And when you hover over the links, they look like this! or this!! or this!!! GO AND READ HER POST IT'S GREAT OKAY?? (+ I'm not going to just copy it out here, so you have to go read what she said.)
So that's one trick. You can actually make it look like this, too, which is an effect I figured out while messing with it. Baaasically go to Autumn's post, read her instructions, and then instead of putting in:
a:hover {
letter-spacing: .5em;
}
This will... make more sense when you've read Autumn's post. Unless you already know HTML/CSS, in which case you'll probably be beyond this post.
And... that's links!
*awkward cough*
Now, for my second trick... have you ever wanted to do
this?
It's pretty cool to be able to make little title-things without having to save/upload images of text. Not that I've actually used this yet. Never mind. I will one day.
Okey-dokey. I'm just going to assume you want to know how to do this? and tell you. I'm also going to assume you haven't used HTML at all, or very little. If you have, you'll be able to skip these first few steps.
Note: Autumn's special features on the links are done within Blogger's Template function - that way, they apply to all links on your blog. Right now, I'm going to be doing coding (HTML/CSS) within the post I'm currently writing on Blogger; my coding will only apply to the specific thing I apply it to.
So, start by writing your text! In Blogger. The regular way. And centre it. Like so:
Pretty text!
Now. On the very left of Blogger's Write Post toolbar - the one that has such helpful things like italics, font size, and strike-through - you'll see two grey buttons: Compose and HTML. Click HTML.
"AAH WHAT JUST HAPPENED THIS IS UGLYYY."
Yes, HTML is not the nicest thing to look at. BUT IT'S FUNCTIONAL. So.
Now, inside your HTML view, the text you just wrote will look like this:
<div>...</div> just sort of wraps stuff into a block that can be manipulated. Whenever you tell Blogger to centre something, it puts a div around it, so it can apply style="text-align: center;". "Style" is a way to put CSS (the coding language that does all the colour, borders, everything pretty!) into your HTML without having to link to a specific CSS document.
But now you want to put a <span>...</span> into your code. (At least, that's how I do it. It's not the only way, I'm sure.) So coding-wise, my example looks like this:
<divstyle="text-align: center;"><spanstyle="color: lime; font-family: 'Aclonica', 'Open Sans Condensed', 'Times New Roman'; font-size: 40px;">this?</span></div>
[Note: I don't know that 'Aclonica' is a font that will work by itself or not in a web browser? So I've put
at the very top of the page when in the HTML view. This ensures that the browser people use to view the post will know what font to use. Note also that I have two back-up fonts - 'Open Sans Condensed' and 'Times New Roman' - in case this doesn't work. Because sometimes code does bizarre stuff and I have no idea why.]
So let's break that down:
The div, as I explained, is to make the section into a kind of block. (If anyone reading has a better way of explaining it, please chip in!
The style="..." is to insert CSS into that particular div.
text-align: center; is CSS. It centres the div. (shocking, I know.)
The span tag is to, I don't know, mark a specific spot? It's like a div, but tends to mark part of a line of text or something, instead of blocking out a whole paragraph or whatever. (I never said I was an expert, okay?? I have a working knowledge.)
Again, we have style, but this time inside the span.
Now within that there are a few CSS elements:
color: lime; -- this colours the text. You should probably use a six-digit colour code (e.g. #f97285) instead - that's more reliable, as it can be hard to guess what colour names are supported by the browsers! Google 'color picker'.
font-family: 'Aclonica', 'Open Sans Condensed', 'Times New Roman'; -- this is the font. 'Aclonica' is (I hope) the one that's actually being used; the other two are back-ups. I already went into this a bit [above].
font-size: 40px; -- this is to make the text huge. Play around with it; it's really easy to just switch another number in.
Mostly it should work right if you make sure to keep the punctuation marks right? So this:
<div style="text-align: center;">
<span style="color: lime; font-family: 'Aclonica', 'Open Sans Condensed', Times New Roman'; font-size: 40px;">And now you can do this!</span>
</div>
should turn out like this:
And now you can
do this!
I don't know. Is this clear? Ask me any questions if it wasn't!
And (for if you're familiar with HTML and CSS): it seems like you can put CSS within your post as a "style" section (not just inline)? I didn't know that, but when I was trying to put in the CSS (for the links at the start of this post) to demonstrate what Autumn did with the links, I put a <style></style> section into the very top of my post and apparently putting CSS in there works fine?? (If it doesn't show up right, please tell me!)
And finally, I should mention that I was trying to figure out how to put code in this post so it looked like code (instead of doing what it's, you know, supposed to do??) and I ended up using hilite.me. Then, of course, once I'd done that, I realised that if I write code while not in the HTML view, it showed up how I wanted it to just fine. So (due to editing and stuff) half the time my code is in fancy colours/boxes... and half the time it's not.
So this post has been a leeettle bit jumpy and what-is-plot-y. What are you saying of course that's not how I write. Or how I live my life. Nope. I hope it wasn't too confusing, and maybe helps you a bit! Even if it just gets you interested in exploring what you can do for your blog with CSS.
Have you ever used HTML and CSS for your blog? What tips/tricks do you recommend? Are you going to try any of these? Did I make any mistakes?? (answer: yes. It was written in too many late-night sessions. Obv. there will be mistakes.)
I'm supposed to be working on my tertiary studies right now. Or updating/rewriting my resume because MY LIBRARY HAS A POSITION OPEN for one week only. (The last two times I [obviously] didn't get the job, but I just have to keep trying... the head librarian wants me there, so eventually it's got to happen! xD)
And instead I'm wandering the writerly circles of the blogosphere.
I know right. Such a surprise.
BUT I FOUND OUT SOME INTERESTING THINGS. Which I thought I'd share with you, because I haven't seen anyone talking about them in the blogs I follow... so you might not hear about these things either. So I'm telling you, just to make sure.
Firstly, Project Canvas has a blog. I was pleased to see that, because I hadn't heard any updates from Project Canvas for a while and I was hoping it hadn't died a slow and lingering death. It's true that there's only one post, a 'welcome!' one from a month ago, but by following the blog I can keep myself in the loop.
If you don't know about Project Canvas, the basic idea is that
"A group of teen and young adult writers from around the globe have come together to write a book of advice and inspiration for fellow writers.
I said (several months ago) that I could probably help with some editing, but I actually don't know how the book's progressing... its projected publication date is in 2018, but I haven't had to edit anything, so it's possible they didn't need my help.
I don't know! Maybe you've all submitted articles? and you're keeping a close eye on the whole project? and I know at least five of my followers are already following the blog. BUT THIS IS JUST IN CASE YOU HAVEN'T HEARD.
Just as a note, Hannah is part of the Project Canvas team! And so are Abigayle and Aimee - I don't know them well, but I've seen them around the blogosphere, so some of you would know them.
The competition is different to the usual sort seen on the blogosphere, too: She posts a photo of where she is, and we guess in the comments (she edits out the answers, though, so no sneaky copying there! ;). Correct state is 1 point; city is 4 points. There will be 10 photos, and the person with the most points at the end wins. The prize is a galley of The Traitor's Game.
- but I'm not sure how much longer it's open (or if I'm such a slack poster that it's already shut...)
(To be honest, I'd do this even if there was no prize. It makes me feel like Sherlock Holmes. Mwahaha.)
(Although the fact that I'm not from the USA might put me at a disadvantage, as I have no idea about American tourist spots/heritage buildings/anything else like that which might be put in a photograph...)
_ _ _ _ _
And... there was something else I was going to say... ??
OOOH YES.
Catherine Meek, one of the [main?] people behind Project Canvas, is joining with Aimee to create a kind of blogging link-up thing! Except this one will really tickle the fancy of any of you who like snail mail...
#thefriendlyneighborhoodjournal
One blogger will get the Friendly Neighborhood Journal in the post, put some poetry/art/encouraging words/something nice etc into the pages, and then post it to the next address (which Catherine and Aimee provide). And when it arrives, the process will be repeated.
These guys are sending an actual. physical. notebook. ACROSS THE USA. (+ possibly the world? at least, I'm in Australia.) Imagine the love + faith + encouragement that could come from that! Imagine a book, slightly travel-worn, slim, but heavy with the words of friends and strangers, overflowing with kind and uplifting words. Imagine receiving it in the mail.
I'm in love with the idea.
There is the problem with providing a physical address. Seriously, I don't want anyone on the internet to be able to find me!? But I'm hoping it can be sorted out - Catherine suggested, in response to another blogger's concerns, that they could sandwich a blogger between two people s/he knows, so sharing the address wouldn't be a problem. I think that would work for me??
So basically I want to see ALL YOUR NAMES in this Friendly Neighborhood Journal when it arrives in my mailbox. ;D
_ _ _ _ _
Are you familiar with Project Canvas? (Did you submit an article?) Have you read The False Prince? (and if not, what are you doing with your life???) Do you love snail mail? Might you, maybe, be signing up for #thefriendlyneighborhoodjournal ??
And how do you keep up with what's happening in the blogosphere? because it's a bit hit-and-miss for me. (Same as for what books are being released.)
Note: I may not be around much for the next two weeks. I'm doing work experience at... *fanfare* the library. (*cue surprise all round*) Plus I should probably study. Probably. So I'll see how things go. I'll definitely still reply to your lovely comments, though!