my planet or yours?

ʚɞ damiano david ☆ alex turner ☆ cillian murphy ʚɞ

about mehome

pinned post

if you think this is my version of tumblr - it is. highly customised to my tastes with absolutely nobody to comment, judge or (potentially) hear me. navigate using the column next to this, or just scroll and read everything i have to say.

banner from pinterest

aviation - the last shadow puppets

fonts from dafont and google fonts

pictures from pinterest and lovesick

Royale High Diamond Guide

UPDATE: 05/06/25 TIDAL GLOW UPDATE (may change in the future)

With the release of the Tidal Glow update, came with a new way to earn diamonds. Multipliers don’t exactly work anymore and everybody earns the same amount of money. Here’s a tutorial on getting straight A’s in all classes.

General:

  • Do quests at any opportunity. During passing periods, classes you skip (basketball lol) and in the morning and at night.
  • Eat food from the vending machine instead of eating from the lunch room. It’s cheaper and it’s quicker this way.
  • Keep your moods up. You will shower at the end of the day, so don’t worry about it. Try to sleep during the first break at 10:00.
  • Bad at a class? Skip it and do quests.

English:

  • If you can do grade 1 spelling I have faith that you can do this class. Look carefully, English is my first language I still get words wrong. If you’re unsure try and quickly Google it but it’s never worked out in time for me.
  • Remember to bring your book to class for 70-100 diamonds!

Computer:

  • Type fast. Can’t type fast? Do a typing test everyday. Here’s the site I like (monkey type) and a more simple one: (typings)
  • Don’t close the keyboard if you’re on mobile.
  • Bring your book to class!

Archery:

  • Bring your arrows to class for bonus diamonds!
  • Focus on hitting the targets as many times as possible. Hit them 3-4 times for 100-200 points.
  • Don’t try and hit the balloons, you’re wasting time.

Potionology

  • Mobile players have a big advantage here!
  • Bring your book to class!
  • Use the numbers on your keyboard to go faster!

Study Hall

  • Bring your flashcards to class!
  • Say the colors out loud.
  • You need 9 to get an A+ but if you’re in a public server try and get as many as you can.

Student Shop

  • Stand by the food. There’s always a food item on your list.
  • The more you play, the more familiar you’ll get with the layout and it’ll become easier.

Swim Spinner

  • Jump right before it hits. Too early and it’ll hit you.

Baton Swim

  • First person is your friend.
  • Hold your joystick/w key for a headstart.

Basketball

• ⁃ Skip this class by pressing either locker or dorm on your sidebar. You get more exp and diamonds from doing quests.

CSS Tutorial

Introduction

CSS is probably going to be the most complicated thing that will cross your path on your journey to making your own personal website. CSS can either make or break your site, but there isn't a wrong way to style your site.

CSS makes it possible to style your site in all sorts of ways, such as adding animations, colours, backgrounds, images and even more!

There are 3 ways to do CSS, and I'll explain all of them.

Inline

Inline CSS is probably the worst way to style your site, and you should only really use it when you want to change 1 thing. It would become tedious to style everything induvidually only to realise you don't really like it. I'd say avoid this one.

You can do it like this:

<p style="color:pink">Hi!</p>

Internal CSS

This is the easiest and best way to style. It keeps everything contained in 1 document and it's easy to go back and change anything you'd like. I use this one all the time!

Your CSS is then contained in the "Style" tags that go under "head" like in the example below!

You can do it like this:

        <head>  
         <style> 
         
        h1{
        color: pink;
        }
        
         </style>
         </head>
        

External CSS

You can link an external .css file to your website. This is great when you've got 200+ lines of CSS and it is confusing you. Just a reminder that you need to upload this file to Neocities as well.

You can do it like this:

This goes in the <head> of your HTML!

<link rel="stylesheet" type="text/css" href=".css file">

✩For the sake of this tutorial, I will assume you are styling inside of your HTML file or have an external file linked!✩

Basics

Colouring, backgrounds and borders

Colouring is one of the easiest things you can do in CSS.

Colouring Text:

        h1{
        color: pink;
        }
        

To colour text, we use this line of code. Obviously you can make this whatever you want. The H1 is a placeholder, if you want your paragraph text to be pink, you'd do this:

        p{
        color: pink;
        }
        

Colouring a Background:

        html{
        background-color: pink;
        }
        

HTML is used whenever you want to color something sitewide, you can also use body!

Adding an image as a background

You can also add images as backgrounds in CSS, just like this!

          html{
          background-image:url("path to your image here");
          }
        

Adding a border:

        h1{
        border: dashed;
        }
        

There are much more borders than just 'dashed' so here's a list of all of them! Try it out, find the one you like the most.

  • Dotted
  • Double
  • Groove
  • Hidden
  • Dashed
  • Inset(this is great for making a '90s themed website!)
  • Ridge
  • Solid
  • Outset
  • Groove
  • None (no border)

You can also specify how thick or thin a border is:

        border: dotted thin;
        
        OR
        
        border: dotted thick;
        

Dotted thin

Dotted thick

To round the corners of your border:

        border-radius=5px;
        

To add images to your border:

          border: solid transparent
          border-image: url("image path here") 30 round;
          border-width: 15px ← Change if needed
        

Styling Div's

A div is a sort of bowl in HTML. It holds other code that you can style using CSS. This is helpful when you want to make something like a homepage and you need to make a lot of boxes. You can make one like this:

<div class="container">
<p>This is a container</p>
</div>

Your div can be called anything. I recommend giving it a name like "container" so you can style it as such:

        .container{
        background-color: pink;
        border: dashed-thin;
        color: white;
        }
        

That CSS looks like this:

This is a container

Oh no! What if you wanted only the text to be white? Don't worry. It's easy to specify! Instead of putting: "color: white" into that container, let's do this:

        .container{
        background-color: pink;
        border: dashed thin;
        color: white;
        }
        
        OR
        
        .container p{
        color: white;
        }
        

✩When referencing DIV's in CSS, we always place a full stop/period before the name of our div, specified in the "div class" inside of your body/HTML!

Example:

        .(name of your div){}
        OR
        .(name of your div) p{}
        

Centering

When you code, you will realise that everything sticks to the left. What if you don't want that? There are 3 magical lines of code I will introduce you to, this is called centering with flexbox.

        h1{
        display: flex;
        justify-content: center;
        align-items: center;
        }
        

OR

        h1{
        margin: 0 auto;
        }
        

Margins

Margins add space around a div or thing in HTML. When we use 'auto' it will space it automatically in the middle.

        .container{
        margin: 24px
        }
        

If you specify 1 value, in this case, 24 pixels, it will make it 24 pixels all around. You can use:

  • margin-bottom
  • margin-left
  • margin-right
  • margin-top

to specify a specific margin you want!

Padding

Padding does something similar to margin, but it just adds space on the inside.

        .container{
        padding: 15px
        }
        

Links

If a bright blue link isn't your style, it's very easy to change it. I'll show you how to change the colour on hover as well.

          a{
          color: pink}
        

What was done above is simply changing the colour.

But hover over that link and it's not pink anymore. We can use the :hover function in CSS to change that though.

          a:hover{
          color: red}
        

Now when you hover, it changes colour. In CSS, this combined code would look like this:

          a{
          color: pink
          }
          
          a:hover{
          color: red
          }
        

Fonts

One of the easiest ways to find your fonts is by using Google Fonts. Just follow the instructions on their site and you're good! I use this literally all the time!

Layout Generators

For Neocities, a lot of people use a layout generator. I use a couple. You can use some of the things we learned here to customise your layout!

CSS Grid Generator
PetraPixel's Layout Generator
Sadgrl's Layout Generator

Conclusion:

If there's anything you'd like me to add or explain a bit more in-depth, ask in the main chat! I hope this helped! (❁´◡`❁)

HTML Tutorial

Introduction

HTML is the barebones of your website, it's usually what you want to tell people. HTML is mainly text, images, links and DIVs. That's what I'm going to go over in this tutorial!

You have to think of HTML is a bunch of those measuring cups you get when you're baking. There's a really big cup that holds all the little cups. So our really big cup is the <html> tag. Then they descend and hold more and more code.

Beginning with Html

Before you even begin coding, you absolutely need a code editor. This makes it easier to organise and get suggestions for your code. You can use the notepad on windows, visual code studio, the in-built Neocities editor or the one I use is Phoenix Code (this used to be called brackets!)

When you make your HTML file, you may see that it's completely empty. This is not helpful at all if you have no idea what to do. I recommend using a HTML Skeleton. This contains all the tags you could possibly need to begin coding.

Just a little tip! CSS is either contained inside of a <style> tag, a seperate .css file or inline with HTML. HTML is contained within a <body> tag. It's easy to get these two confused!

To follow along with this tutorial you'll need:

  • A .html file
  • A HTML skeleton Press here!
  • A code editor

Text

Paragraphs:

Text is the most basic thing you'll ever learn when doing HTML. It's also usually the first thing you learn. This will be nestled inside of your body tag. You may notice that you can write text inside of the body and it will appear, however, you shouldn't do this in case you want to style your text, for example: putting a border around it or moving it to the middle, using CSS.To write a line of text, the code is:

<p>This is a line of text</p>

The correct way this should look inside of body:

<body>
<p>This is a line of text</p>
</body>

To break a line of text we use the <br> tag.

It's something like this:

<p>This is a line<br> of text</p>

You can also make a space between paragraphs by making another line of text in a seperate <p> tag.

<body>
<p>This is a line of text</p>
<p>This is another line of text</p>
</body>

Headings

You can make a heading using h1 all the way to h6 in a tag. H1 is your main heading and they descend as such.

<h1>This is a heading</h1>

And that code will look something like this on your site:

✩Yours won't be in cursive! Mine has a CSS style attached to it!

This is a h1 heading

Here's what this code will look like:

<h4>This is a h4 heading</h4>

This is a h4 heading

Styling Text:

You can do Italic Bold Strikethrough Underlined or small!

Using: i (italics) b (bold) s (strikethrough) u (underlined) small (small)!

Images

Images are what make your site unique. You can make your own using programmes such as Canva, Photoshop (Photopea if you don't want to pay, you can even load custom photoshop brushes!), Pixlr, Ibis Paint X and use sites such as Pinterest for inspiration.

So how do you insert images?

<img src="your image path here">

Now you can reference your image in 1 of 2 ways:

Locally

Ensure that your HTML file and the image are in the same folder, and all you need to do is reference the file location. For example: "images/decorations/button". If you're uploading to Neocities, upload first and then say "rename" and copy the file path. If you're not using Neocities, place it onto whatever server or cloud you're using.

"Copy Image Address"

It must be stated that this way is WRONG and that in 99% of cases, you should not do this. But I will mention it here for that 1% of times where you can.

Right click on an image and say copy image address. Then in your img src="" you place that link in the quotations.

Why this is wrong:

  • The file can be deleted or the site could go offline, taking the image with it.
  • The file may be swapped with something malicious
  • Someone else is paying for the bandwidth you're using.
  • You MAY be stealing someone else's image (if you're not then it's okay, but we need to mention it)

When should you do this?

  • Making a button for your site (I mention how to do that below)
  • Inserting other people's buttons.

Links

Links are handy little things you can use to take users to another part of your site or the internet. You can do this with this simple line of code:

<a href ="your link here">

You can put any link inside of the quotations and it will work.

I talk more about in my CSS tutorial how to style links, and styling links on hover, so go check that out if you don't want a bright blue link!

I thought I'd mention that you can make a link a picture. This is super helpful when making a button other people can put on their site. If you're making a neocities, get on this ASAP!

↑Click it!

The code to make this button:

<a href="link to your site"><img src="your image path here"></a>

☆A reminder that people do not have the direct link to that picture; make sure it has: https://yoursite.com/folder it is in/what the button is called.file type

Divs

A div is like a bowl that holds more code. We like putting things inside of divs because it helps with styling in CSS afterwards.

It's also easier to style a div that has a name, instead of a div that is just called div.

Div's that are just the singular div tag will be styled the same, so call them something as follows:

<div class="name"></div>

<div id="name"></div>

how to style with css:

ensure you have a full-stop(period) before the name of your div. so it'll look like this:

.name{

color: pink;

}

Conclusion:

I hope this guide helped and explained some things for you! Thank you for reading!♡

Writing Tips

Resources


Actually Writing

Description

  • Your reader will not have the same image in their head as you. Describe the most notable aspects from a scene. If you're writing a scene in a big hall, describe how open and spacious it is. Describe how it impacts the senses. Does it make your voice echo when you speak? Is it old and dusty?

Overusing Metaphors

  • Try and avoid using a metaphor in every sentence. You do not need to describe that the ketchup was as red as mars and the noise was as loud as a concert. Sure, these enhance how impactful the sounds and experiences are, but too many makes you deviate from your actual plot/point. Use metaphors sparingly and actively cut them out as you edit. Replace them with more details that actually add to your scene.

Active Voice

  • Use active voice. Don't know what that is? don't worry, I didn't either and English is my first language. It’s basically when instead of saying “the door was opened by the girl” you say “the girl opened the door” This tip is helpful for people like me who write a lot of (character) x reader fan fiction and write from the second person. It makes it feel like the reader is actively choosing inside of your story instead of the reader being told of what’s happening with them.

Sentence Length

  • Vary sentence length so your reader doesn’t get exhausted. Reading paragraph after paragraph of long and boring details isn’t fun. Go for a long one, then put a rhetorical question in a 1-liner and make a couple paragraphs short!

Strong Verbs

  • Use strong verbs. Replace the word “very” with the actual verb. For example: ran quickly = sprinted, dashed or very scared = petrified. Use a thesaurus or word hippo for synonyms.

Show, Don’t Tell

  • Show, don’t tell the reader. Again, helpful for writers in the 2nd person. It’s okay if you have a few “she grabbed the cup” or “she was extremely scared as she saw the door” in your first draft. Always go back and edit these. For example, (I’ll use the ones above) “she trembled as she saw the looming door” body language reflects emotion. If someone is extremely nervous, they’ll pick at their skin, tap their foot, play with their sleeves. Describe this. Don’t tell the reader “they were nervous” show how nervousness captures their body.

Creative Writing & Fan Fiction

Plan.

  • Even if it’s a rough idea, just plan your work. Even if it’s a flow chart/blurb you’re working from. Put all your thoughts down and figure out what you want to do in your story.
  • Especially for those planning on a series, brainstorm and figure out what direction you want to take your story, what themes and foreshadowing do you want to include? What gripping tension do you want to create?

Character Development

  • Give your characters goals, desires, and let it control their decisions. This is typical of a lot of young writers who just start writing instead of even giving 5 minutes of thought into what the characters want/desire.
  • For example in one of my Alex Turner fan fics, he really wanted the reader. It was only 1 part, so I had to convey that really carefully, and make sure it was shown.
  • If you’re not sure how emotions like attraction or desire show, check that blog at the top of this post.

Senses.

  • Describe the 5 senses: sight, auditory, smell, touch and taste. It’s okay if you can’t describe all of them, but try and get a good mix of all of them throughout chapters/fics.

Dialogue

  • Said is dead, I’m with that. If he’s shouting, say “Get out!” He shouted, instead of leaving it with said. There’s a million websites for finding words to replace said.
  • Make your dialogue believable. Make it human, make them stutter and if you’re unsure, read it out loud.

Endings

  • Give the reader reason to move to the next chapter. Make it end on a note where the reader is questioning something, or tighten the stakes and cause a lot of tension.

Essays and School Work

  • I expanded on this in my study tips post, but here’s a couple more tips.
  • State your argument. Let it lead your essay.
  • Use a structure. Make sure you have an introduction, body and conclusion at the least but you can use a TEEL structure as well. (Topic, Evidence, Explanation, Link)
  • Use conjunctions. Eg. However, therefore, for example.
  • Avoid complicated and hard to understand writing. Keep it simple and factual. Keep a neutral tone.

study tips

this was rotting in my notes, might as well put it here.

Study Tips:

Languages:

  • Languages are tricky! I still struggle with Afrikaans purely because I refuse to speak it (and I will still. I sound absolutely fucked in Afrikaans.) How do you pass the exams though?
  • Mind Maps. Put your concept in the middle, start with one branch. Write your notes about your concept (eg. Comprehension with the branch: answering the questions) and write all the notes underneath there.
  • Do it for every part of the paper. Even if it’s one branch on each topic that’s okay!
  • Eg. I have 4 parts of my paper and I will make 4 mind maps for: comprehensions, visual literacy, summaries and language conventions. It’s usually more though.

Study Subjects:

  • Identify the subjects you need to study the most for, or the ones you struggle the most with. Don’t leave it to 3 days before the exam. Especially if there’s a lot and you don’t really understand all of it.
  • Too many people seek out cramming advice rather than remembering advice. You will do well on your exam if you try and comprehend each topic as it comes along in your curriculum and asking questions.
  • Class is half the studying. If you listen to your teacher explain you will not struggle so much.
  • However, it can still be a lot and one of the best ways (and most fun) is learning with flashcards and doing activities. Yes. Do the activities again inside of your textbook.
  • This is how I passed geography(88%) and tourism(94%).

Application Subjects

  • Subjects like Maths and Computer Applications Technology(ICT for the Cambridge people) fall into this category.
  • The only way you can get better is watching videos, doing problems with your teacher/tutor and practicing on your own.
  • It’s okay if you’re bad at this. I’m really intelligent and I also struggle with maths. Going onto Maths Literacy or Maths Core(Cambridge core) does not close every single door.

Misc:

  • If you need to combine these methods, thats okay! This can help enhance understanding and improve your comprehension of the content! Remember - in exams you’re not just parroting what you learned but you have to apply it as well, so writing essays and answering questions that challenge what you know.

Answering Questions in Exams

  • Tip 1:
  • Take advantage of the reading time. Read the instructions as there may be some rules you may not be familiar with inside of the paper.
  • Mark questions you don’t think you understand/can’t answer. Answer these questions LAST. They will take the most time and effort in order to answer.
  • Plan out how you want to manage your time. Usually the examiner lays out how you should plan your time (eg. Section 1 - 10 minutes, Section 2 - 25 minutes, etc.)

  • Tip 2:
  • Read the question twice. The first time, read the question. Understand what they are asking you.
  • The second time, read it with your finger underneath and mark the keywords.
  • Figure out what information they want you to apply.
  • Then, do not repeat the question in your answer. (Eg. “What is important about the atmosphere?” do not start the question like this: “What is important about the atmosphere is…” answer it like this: “What is important is…” ) this saves you time and also it may be against the rules (it is in my school!)

  • Tip 3:
  • Use the mark allocation to figure out how many points you must make for the question. If it’s a 6 mark question, make 6 points. If you are unsure, try and make another point, so 7 in total.
  • If you are completely lost and don’t know what to answer - still write something. You’ve got a 50% chance of getting it right. Especially if it’s a paper you know you did bad in, even 1 mark is priceless.

  • Tip 4:
  • Essays in exams are hard! I understand. You need to make sure you READ the question. Go especially slow with essay questions. Ensure you’ve answered every point they’ve asked of you.
  • Essays are sometimes worth up to 40 points, so even if you do bad in the majority of the paper, you will still pass if you get the essay right.
  • History and Business Studies have lengthy essays where you have to answer using information from your head or from an excerpt in the addendum. Take all the resources they give you.
  • Ensure you have an introduction, body and conclusion. If you need a format, ensure you write these words as well.
  • Introduction: (words)
  • Body: (words)
  • Conclusion: (words)
  • Most of the time they give you a bullet point list of what you need to answer with your essay. Structure your essay to these points. If the first point is global warming, write one paragraph on global warming and include information you learned from your textbook.

  • Tip 5:
  • Stay calm. I know it’s hard, and a lot of us struggle with anxiety (like me) and even I know that if I stay calm and just focus, I’ll be able to do it. Have a bottle of water (if it’s allowed) and get a good night’s sleep before the exam. 
  • Ensure you prepare before the exam and read over everything inside of your textbook incase something specific is inside the exam. You may remember it!

  • Tip 6:
  • If you have bad handwriting, work on fixing it. Even if your answer is right but it’s completely illegible, you will lose marks.
  • Write in blue pen, it’s widely accepted.
  • Keep extra pens with you. I once had both pens in an exam fail on me. Take 3 or more.
  • Ensure you have the following:

  • 3+ pens
  • Pencil
  • Eraser
  • (If it’s a mechanical pencil) the appropriate lead
  • Highlighter or colored pen
  • Calculator
  • Maths Set
  • Any other gear allowed to answer the exam.

  • Tip 7:
  • You can do it. Remain positive! Do not prove the self-fulfilling prophecy right!

im rambiling

so i went though my gallery and i was looking at all my edits...explain why i have 400 of them???? excuse me? 400??!?!?

unrelated but i only felt like i had a writing spark writing my teacher!alex turner fic and i'm dying 😔 everybody please note that there is not a male power of authority in my life other than my dad and i am (mostly) mentally sound.

i had an idea for a humbug alex turner fic but i only wrote like 2000 words and it was 10 pm at night and i feel scared to go back. do not come to my town at 10pm at night. im coming

thoughts

any other writers feel like you could see the scene so perfectly in your head but then words fail you and when you eventually muster up the courage to come back it isn't how you described it?

idk if that's just me.