Catarthic - Stargirl.

catarthic - stargirl.

More Posts from Catarthic and Others

6 years ago
catarthic - stargirl.

Tags
6 years ago

Things My Math Teacher has Said and Done

-”Now I’ll take attendance in the order in which I don’t like you”

-Made us say ‘may I use the potty?’ in a British accent when we need to use the washroom 

-”Good morning, how’s my favourite class doing-they just left you would’ve passed them in the hallway”

-Had names for all of the variables: a is for apple pie, b is for brownie, c is for cookie, and D IS FOR DOUGHNUT

-”This is beautiful. Just like if you were in front of a mirror-with me standing in front of you”

-He spent like 10 minutes making sure we understood the difference between cannoli and cannelloni

- “You should join the geek protection squad, we would beat up kids like you”

-On the first day of class he drew an x in the corner of the whiteboard with a box around it and it???? somehow stayed there???? all year?????

-”you should all take French just in case you meet a pretty French lady on a plane like I did”

-We had this closet in the corner of the room, and then it just became a thing to talk about the body in the closet (especially when people not in the class would come in)

-Answered the phone in one of two ways “greetings human” or “Pizza Pizza”

-While we’re talking about phones if someone was being looked for he’d tell them that they were out in the smoking area handing out anti-smoking pamphlets

-”You guys are so loud! People would think you’re Italian or something”

-Once turned the lights on using ‘the force’, a.k.a a lightsaber he kept on his desk, and a student standing under the light switch

-”BIG LIKE HOUSE”

-He told us this story about how a few years ago if a kid was particularly annoying/disruptive he’d send them to a certain teacher to ask for a ‘long stand’ that teacher would take a loooong time looking for this item before sending the kid along to the next teacher (I think there were 4?) anyway, once the kid would get back and be like ‘there is no long stand’ he’d say ‘well weren’t you standing for a long time?’

-There was a girl who had a broken arm, who got moved out of the class when her schedule got rearranged. During attendance he’d call ‘broken arm girl’ first, and she would come into the room before we got there to write stuff like ‘broken arm girl was here’ on the board

-The day before christmas break we just talked about star wars the whole class

-called us all sunshine and when one girl asked why he called her stormy clouds for the rest of the year

-If someone came to borrow something, before he’d give it to them he’d ask if they would like to know where they could get one, and then the whole class would all be like ‘staples’ ‘best buy’ ‘dollar store’ etc


Tags
7 years ago

yeah sex is cool i guess but have u ever closed all your tabs after finishing a paper

6 years ago

How To Make Tumblr Themes: Part I

Introduction

What we will cover in this tutorial:

HTML review (bare minimum you need to make a basic theme)

CSS review (bare minimum you need to make a basic theme)

Meta Tags

Other <Head> codes 

Documents and websites we will consult regularly in this tutorial (keep these open in a tab):

W3Schools HTML

W3Schools CSS

Tumblr Theme document

HTML Review

Before making a theme, you should know that HTML consists of tags (keywords surrounded by angular brackets like <html>) and that they come in pairs (opening and closing like <html> and </html>).

You should also already know basic HTML elements such as links, headings, paragraphs, lists, formatting and images. If not, please learn it at the website I provided. 

The most common way to group and position things in a website layout is to use div layers or tables. In this basic theme tutorial, I will cover div layers first since it is easiest to understand. 

Here is a coding for text that is NOT inside a div layer:

How To Make Tumblr Themes: Part I

[click for larger view]

Here is a coding for text that is inside a div layer:

How To Make Tumblr Themes: Part I

[click for larger view]

Also notice that I used CSS to dictate the width and background of the div layer. That is how CSS and HTMl is connected; you can use CSS to demand HTML elements to look and be positioned a certain way. So in order to make columns in tumblr themes, you use CSS to position and “decorate” the div layer which will wrap your columns (ie: posts, sidebar etc).

CSS Review

In relation to what we’ve discussed above, CSS commands HTML elements. So you need to be very familiar with CSS. CSS is the codes between the <style type=“text/css”> and </style> tags (as can be seen in the previous image). In this tutorial, I will use the following terminology:

How To Make Tumblr Themes: Part I

Now, div layers can either be id-ed or class-ed. The id selector is generally used for a single unique element while the class selector is used for a group of elements.   While there is that difference, I discovered it doesn’t matter. You can use id selectors for multiple/repeated layers. 

How To Make Tumblr Themes: Part I

[click for larger view]

In the above, the selector for id is preceded by a “#” (outlined in pink) and the selector for the class is preceded by a “.” (outline in blue). Now, you can use basic CSS properties to specify the position, dimension and style of the layer. 

You will need to know 90% of the properties described on this site; particularly background, color, fonts, links, text, margin, padding, z-index, position, display, dimensions and borders. Since it is too much for me to cover them all, please review/learn them before proceeding. 

Getting started

Now we’ve gone over the idea of how HTML and CSS will be needed, we can apply it to tumblr themes. So, we start with our basic HTML tags for any basic webpage:

How To Make Tumblr Themes: Part I

<title></title> is where you specify the title of the blog which will show up on the browser tabs. Looking at the basic variables section of the custom tumblr theme document, you can see {Title} and {block:PostTitle}{PostTitle}{/block:PostTitle}.

{Title} is a “variable” which corresponds to the blog title (which you customize in the customization page). For example, my theme blog title is “ettudis”…

How To Make Tumblr Themes: Part I

{block:PostTitle}{PostTitle}{/block:PostTitle} corresponds to the title of the post (of the individual posts). The “blocks”, {block:PostTitle} and {/block:PostTitle}, renders so that the post title shows up only when there is a post title (in other words, when you go to the individual post page. For example, the title of my “terms of use” post…

How To Make Tumblr Themes: Part I

Generally, it is set up so the it’s the {title} followed by a dash, then {block:PostTitle}{PostTitle}{/block:PostTitle}. So, it will look something like this:

<title>{Title} - {block:PostTitle}{PostTitle}{/block:PostTitle}</title>

We also can add in favicons. To make the favicon the same as the blogger’s userpic/profile icon, we can just link to {Favicon}, like so:

<link rel="shortcut icon" href="{Favicon}" /> 

Meta Tags

The meta tags in tumblr themes are what allows the bloggers to customize the themes colours, upload images, select options, add links etc, as described in the appearance options. Then, you can line up the meta tags to the HTML or CSS.

For colours, it will look something like this:

How To Make Tumblr Themes: Part I

[click for larger view]

As you can see, the colours in the meta tags can correspond to the HTML or CSS. So the default colours (indicated in the meta tags, ie: #FFFFFF, #000000 etc) are what the colours are if the blogger reset to defaults. If the blogger decides to customize to his/her own colours, the colour he/she chooses will correspond and fill into the HTML or CSS in the live preview. 

For custom fonts, it will look similar to:

How To Make Tumblr Themes: Part I

[click for larger view]

Similar to colours, the meta tags correspond to CSS (or HTML). However, tumblr only provides a few custom fonts (ex: arial, georgia, impact, courier new, helvetica, tahoma, trebuchet ms, times new roman etc) that are selected via a drop-down menu on the customization page.

Now booleans are rather important in tumblr themes. These meta tags allow the bloggers to select an option.

How To Make Tumblr Themes: Part I

[click for larger view]

In this, the option is whether or not “if infinite scrolling” should be on the blog. The meta content is “1” if there is infinite scrolling as default. If infinite scrolling is not default, it meta content should be “0”.

Outlined in orange, {block:ifinfinitescrolling} and {/block:ifinfinitescrolling} wraps around the HTML (or CSS) that will be activated if the blogger decides to select the infinite scrolling option. If not, then the HTML (or CSS) in {block:ifnotinfinitescrolling} and {/block:ifnotinfinitescrolling} will be activated. 

Booleans can apply to anything, such as whether or not to show tags on index page, size of post, number of columns, show side image ~ whatever your imagination allows you!

On this note, this sort-of gives you the idea of how tumblr codes work. The “blocks” act as activators for a certain code that it contains. Remember they always come in pairs as well, an open and closed one.

In the above example, you can see that there are the blocks, {block:Pagination} and {/block:Pagination}. This means that the codes inside these blocks will only show if there are actual pages; so in an individual post page, the pages will not show up.

Another meta tags are text. You can allow bloggers to enter their custom text into a theme. You can do a lot with text, you can also use it as an input for CSS hex numbers, dimensions (they would enter pixels), labels etc etc. 

How To Make Tumblr Themes: Part I

In this particular example, I’ve used custom text as a way for bloggers to enter links. The blocks (in pink), as I’ve explained previously, act as activators for when the bloggers do enter a URL in the “link 1” meta tag (outlined in blue). 

Tumblr also allows bloggers to upload images. So bloggers can upload their own background or other images they want (that you specify) into their theme. 

How To Make Tumblr Themes: Part I

[click for larger view]

Shown here, you can see that the meta tag for the background image dictates the CSS body selector (outlined in orange).  In the content, you can insert an image (“http://static.tumblr.com/…”) as a default image. 

As for the sidebar image meta tag, it uploads the image into the HTML. Blocks (shown in pink) can also be used in case the blogger does not want to upload an image (or if an image is not uploaded, an alternate coding can be shown). 

Other <head> codes

You can also insert a {CustomCSS} block at the bottom of the theme’s CSS style block (before </style>) so that bloggers can insert their own CSS if they want to. 

There is also a meta tag that is involved in search engines. 

{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}

This allows the description of the blog to show up if the blog is searched on the a search engine (such as google). 

And that’s all I have to say about meta tags which is crucial if you plan to make themes for the public use. 

Key Points

To clarify and emphasize, the terms, “variable” and “blocks” are what makes up the tumblr theme. Variables are used to insert dynamic data. As we’ve seen in previous example, {Title} is a variable and so are {Image:Sidebar}, {Color:Background}, {Text:Link 1} and so forth. They come in singles, meaning, you do not need to close them. 

Blocks are used to render (activate) a block of HTML, CSS, or a set of data. As we’ve seen in previous examples, {block:Title} and {/block:Title} are blocks, and so are {block:ifinfinitescrolling} and {/block:ifinfinitescrolling}, {block:iflink1} and {/block:iflink1}, and {block:ifnotsidebarimage} and {/block:ifnotsidebarimage}. These come in pairs, meaning, you do need to close them similar as to you would close a HTML tag.

The meta tags allow users to customize the theme without editing the HTML/CSS themselves. They only have to customize via the Appearance section on the customization page. We’ve covered all the meta tags that tumblr has: colours, fonts, booleans, text and images. Every meta tag can correspond to a HTML/CSS component. So using HTML and CSS, you can specify the look of a certain variable and meta tags can give customization options for the HTML and CSS.

The End

I think I’ve covered all the basic ideas of what tumblr themes need in order to work. Though this tutorial was more of introduction on just the fundamental foundations of what we’re going to build, next tutorial will get into constructing the tumblr theme using variables, blocks, CSS and HTML.

I hope I was clear, concise and thorough in my explanations. If I missed anything or if something wasn’t clear, please let me know as all of this sort-of comes to me naturally now so I wouldn’t know if I was being abstruse or convoluted. 


Tags
6 years ago

I think I like Mulaney because he tells stories like how I tell stories:

Repeats things for emphasis.

Comments on parts of the story while telling the story, “You know, like how you talk to an 8 year old.”

Adds unnecessary details because I need to be fully immersed in the story I’m telling you. They hold no weight at all to the story but are purely for my own satisfaction.

Inserts random pop culture reference because my mind is basically the Wheel of Fortune and things just seemingly are linked (when they probably really aren’t ).

Facial exaggerations.


Tags
6 years ago

Soulmates are not your ~other half~, that’s just nonsense. You are a whole person already, not half a person. A soulmate isn’t even inherently romantic. A soulmate is just the other sock in a matched set. You’re still a whole, complete sock on your own, you are perfectly functional paired with any other sock, it’s just that it’s even better when you match. A soulmate is literally just the person (or people) who makes your soul go “!!! Same hat!!!” and wave excitedly.


Tags
7 years ago
As You All Know The Secret To All Memorization Is Revision. Revising Can’t Always Be Done The Night

As you all know the secret to all memorization is revision. Revising can’t always be done the night before unfortunately, but has to be scheduled. Sometimes I find scheduling my studies quite hard, especially during stressful times. Here are some resources that can help you with scheduling your studies.

Making a study plan

Study plan lay out (1) (2) (3) (4)

Prepare for finals week video

Study plan by an oxbridge student

Study plan by a med student

Schedule your school calendar

Creating long term study plans

Study plan printable

Ways of planning

Bullet journal 

Passion planner

Choose the right planner

Weekly 

Daily

Monthly

To -do lists

Minimalist planning

Balancing social life and studying in your study plan

Finding time to study

Save time during the week

Organizing your life

Balancing school life and social life

Managing a heavy workload

Make the most out of your day

When you have a bad day

Useful apps/web resources for making a study plan

App plan 

Google calendar

Calendars 5

Forest

Wunderlist

Momentum

Omnifocus

Study apps

Other productivity tips

14 productivity hacks 

Time management 

Due vs do dates

Stop procrastinating

5 minutes for a more productive day

How to focus when a million things seem to happen at the same time

Productivity masterpost

The 2 minute rule

Pomodoro method

5 tips for staying productive

A question about productivity

Stay productive when you are sick


Tags
6 years ago
Looking @ Ur Girl’s Selfies

looking @ ur girl’s selfies


Tags
6 years ago

some of yall r SOOO sensitive!! and it’s a good way to be. u have big hearts. I love u


Tags
Loading...
End of content
No more pages to load
  • my-firstlastandeverything
    my-firstlastandeverything reblogged this · 4 weeks ago
  • biscuitscahoots
    biscuitscahoots liked this · 1 month ago
  • brndlztrrs
    brndlztrrs reblogged this · 1 month ago
  • lets-fly-home
    lets-fly-home reblogged this · 1 month ago
  • all-these-colors-in-me
    all-these-colors-in-me liked this · 2 months ago
  • the-last-symphony
    the-last-symphony reblogged this · 2 months ago
  • tinylightofsound
    tinylightofsound liked this · 2 months ago
  • spoiledrattt
    spoiledrattt liked this · 2 months ago
  • secouetoi
    secouetoi reblogged this · 2 months ago
  • everythingbeautifulinitstime
    everythingbeautifulinitstime reblogged this · 2 months ago
  • moonlitanarchy
    moonlitanarchy reblogged this · 2 months ago
  • inlovewithu-nicorns
    inlovewithu-nicorns liked this · 3 months ago
  • once-on-a-cloud
    once-on-a-cloud reblogged this · 3 months ago
  • carefree-cutie
    carefree-cutie liked this · 3 months ago
  • escapefvl
    escapefvl reblogged this · 4 months ago
  • once-on-a-cloud
    once-on-a-cloud reblogged this · 4 months ago
  • leeshpea
    leeshpea reblogged this · 4 months ago
  • sorisanam
    sorisanam liked this · 4 months ago
  • pacientia
    pacientia reblogged this · 4 months ago
  • afroodites
    afroodites liked this · 4 months ago
  • comeonletslive
    comeonletslive reblogged this · 4 months ago
  • liliapmanguart
    liliapmanguart liked this · 4 months ago
  • sweetsugersweet
    sweetsugersweet liked this · 4 months ago
  • jayarc
    jayarc liked this · 4 months ago
  • laamoporquesemueveasumanera
    laamoporquesemueveasumanera reblogged this · 4 months ago
  • kardashiands
    kardashiands reblogged this · 4 months ago
  • spidergoatduex
    spidergoatduex liked this · 4 months ago
  • a-l-e-x-m-a-c-k
    a-l-e-x-m-a-c-k liked this · 4 months ago
  • thebearandthemoon
    thebearandthemoon reblogged this · 4 months ago
  • magnoliablossomsworld
    magnoliablossomsworld reblogged this · 4 months ago
  • laamoporquesemueveasumanera
    laamoporquesemueveasumanera reblogged this · 4 months ago
  • driftingisland
    driftingisland liked this · 4 months ago
  • wlkwlkr
    wlkwlkr liked this · 4 months ago
  • lecoconutfille
    lecoconutfille liked this · 4 months ago
  • ahzewl
    ahzewl liked this · 4 months ago
  • jojobahoe
    jojobahoe reblogged this · 4 months ago
  • mixedmonet
    mixedmonet liked this · 4 months ago
  • miaasimonee
    miaasimonee liked this · 4 months ago
  • lazeecreativeluv
    lazeecreativeluv liked this · 4 months ago
  • jblimaa
    jblimaa liked this · 4 months ago
  • another-los3r
    another-los3r liked this · 4 months ago
  • another-los3r
    another-los3r reblogged this · 4 months ago
  • marianna-laura
    marianna-laura liked this · 4 months ago
  • umamieggs
    umamieggs reblogged this · 4 months ago
  • umamieggs
    umamieggs liked this · 4 months ago
  • rawfuel
    rawfuel reblogged this · 4 months ago
  • corkboardjournal
    corkboardjournal reblogged this · 4 months ago
  • thenotoriousblk
    thenotoriousblk liked this · 4 months ago
catarthic - stargirl.
stargirl.

she/they • senior. do a little better than you did last time.

137 posts

Explore Tumblr Blog
Search Through Tumblr Tags