theinfinityarchivist - The ♾️ Archivist
The ♾️ Archivist

249 posts

Latest Posts by theinfinityarchivist - Page 5

1 month ago

wait do people read first person stories and think they're the ones in the story???

Saw people talking about not liking first person, which is fair, but their reasoning was like "I would not do that" and I don't understand that mindset.

First person stories are still about a character. A character making their own decisions. First person isn't about you???? At least I thought it wasn't. What am I missing? I've always seen first person as just a more in-depth look into a character's mind and stricter POV. Not as a reader stand-in.

1 month ago
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me
 Though I Am Heavy, There Is Flight Around Me

though i am heavy, there is flight around me

wendell berry, the fall of icarus, f. scott fitzgerald, christophe vacher, hozier, galileo chini, mahmoud darwish (tr. catherine cobham), rubens, akwaeke emezi, alfred schwarzschild

1 month ago
He Didn't Have His Adenoids Removed. Healthful Living, Based On The Essentials Of Physiology. 1934.

He didn't have his adenoids removed. Healthful Living, Based on the Essentials of Physiology. 1934.

Internet Archive

Found in a textbook uploaded by AaronC

1 month ago

Since the name I was going to use for my solo music career, Will Wood, is already taken by some nobody with a ukulele, I’ve decided I will start releasing music under the pseudonym Paul Penis. Keep your ears open everyone, check your Spotifys for Paul Penis, big things are coming from future hit indie musician Paul Penis.

1 month ago

take life a little less seriously. learn a skill that isn’t resume-friendly. own your decisions without punishing yourself. both above average and average results are great; it’s good to do something at all. do many things, do many things badly. think about the big picture. the time is passing, regardless

1 month ago

Learn HTML and CSS: A Comprehensive Guide for Beginners

Introduction to HTML and CSS

HTML (HyperText Markup Language) and CSS (Cascading Style Sheets) are the core technologies for creating web pages. HTML provides the structure of the page, while CSS defines its style and layout. This guide aims to equip beginners with the essential knowledge to start building and designing web pages.

Why Learn HTML and CSS?

HTML and CSS are fundamental skills for web development. Whether you're looking to create personal websites, start a career in web development, or enhance your current skill set, understanding these technologies is crucial. They form the basis for more advanced languages and frameworks like JavaScript, React, and Angular.

Getting Started with HTML and CSS

To get started, you need a text editor and a web browser. Popular text editors include Visual Studio Code, Sublime Text, and Atom. Browsers like Google Chrome, Firefox, and Safari are excellent for viewing and testing your web pages.

Basic HTML Structure

HTML documents have a basic structure composed of various elements and tags. Here’s a simple example:

html

Copy code

<!DOCTYPE html>

<html>

<head>

    <title>My First Web Page</title>

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

</head>

<body>

    <h1>Welcome to My Web Page</h1>

    <p>This is a paragraph of text on my web page.</p>

</body>

</html>

: Declares the document type and HTML version.

: The root element of an HTML page.

: Contains meta-information about the document.

: Connects the HTML to an external CSS file.

: Contains the content of the web page.

Essential HTML Tags

HTML uses various tags to define different parts of a web page:

to : Headings of different levels.

: Paragraph of text.

: Anchor tag for hyperlinks.

: Embeds images.

: Defines divisions or sections.

: Inline container for text.

Creating Your First HTML Page

Follow these steps to create a simple HTML page:

Open your text editor.

Write the basic HTML structure as shown above.

Add a heading with the tag.

Add a paragraph with the tag.

Save the file with a .html extension (e.g., index.html).

Open the file in your web browser to view your web page.

Introduction to CSS

CSS is used to style and layout HTML elements. It can be included within the HTML file using the <style> tag or in a separate .css file linked with the <link> tag.

Basic CSS Syntax

CSS consists of selectors and declarations. Here’s an example:

css

Copy code

h1 {

    color: blue;

    font-size: 24px;

}

Selector (h1): Specifies the HTML element to be styled.

Declaration Block: Contains one or more declarations, each consisting of a property and a value.

Styling HTML with CSS

To style your HTML elements, you can use different selectors:

Element Selector: Styles all instances of an element.

Class Selector: Styles elements with a specific class.

ID Selector: Styles a single element with a specific ID.

Example:

html

Copy code

<!DOCTYPE html>

<html>

<head>

    <title>Styled Page</title>

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

</head>

<body>

    <h1 class="main-heading">Hello, World!</h1>

    <p id="intro">This is an introduction paragraph.</p>

</body>

</html>

In the styles.css file:

css

Copy code

.main-heading {

    color: green;

    text-align: center;

}

#intro {

    font-size: 18px;

    color: grey;

}

CSS Layout Techniques

CSS provides several layout techniques to design complex web pages:

Box Model: Defines the structure of an element’s content, padding, border, and margin.

Flexbox: A layout model for arranging items within a container, making it easier to design flexible responsive layouts.

Grid Layout: A two-dimensional layout system for more complex layouts.

Example of Flexbox:

css

Copy code

.container {

    display: flex;

    justify-content: space-around;

}

.item {

    width: 100px;

    height: 100px;

    background-color: lightblue;

}

Best Practices for Writing HTML and CSS

Semantic HTML: Use HTML tags that describe their meaning clearly (e.g., , , ).

Clean Code: Indent nested elements and use comments for better readability.

Validation: Use tools like the W3C Markup Validation Service to ensure your HTML and CSS are error-free and standards-compliant.

Accessibility: Make sure your website is accessible to all users, including those with disabilities, by using proper HTML tags and attributes.

Free Resources to Learn HTML and CSS

W3Schools: Comprehensive tutorials and references.

MDN Web Docs: Detailed documentation and guides for HTML, CSS, and JavaScript.

Codecademy: Interactive courses on web development.

FreeCodeCamp: Extensive curriculum covering HTML, CSS, and more.

Khan Academy: Lessons on computer programming and web development.

FAQs about Learning HTML and CSS

Q: What is HTML and CSS? A: HTML (HyperText Markup Language) structures web pages, while CSS (Cascading Style Sheets) styles and layouts the web pages.

Q: Why should I learn HTML and CSS? A: Learning HTML and CSS is essential for creating websites, understanding web development frameworks, and progressing to more advanced programming languages.

Q: Do I need prior experience to learn HTML and CSS? A: No prior experience is required. HTML and CSS are beginner-friendly and easy to learn.

Q: How long does it take to learn HTML and CSS? A: The time varies depending on your learning pace. With consistent practice, you can grasp the basics in a few weeks.

Q: Can I create a website using only HTML and CSS? A: Yes, you can create a basic website. For more complex functionality, you'll need to learn JavaScript.

Q: What tools do I need to start learning HTML and CSS? A: You need a text editor (e.g., Visual Studio Code, Sublime Text) and a web browser (e.g., Google Chrome, Firefox).

Q: Are there free resources available to learn HTML and CSS? A: Yes, there are many free resources available online, including W3Schools, MDN Web Docs, Codecademy, FreeCodeCamp, and Khan Academy.

1 month ago

I don't want convenience. I want control.

I hate where modern technology is going. I sound like an old woman but I dislike wireless, I hate the bloat and spyware that seems to be normal. This is why I support and use libreboot. Hell, even why I use Gentoo and why I love openbsd.

1 month ago
The Vision Of Saint Hubert (1890)
The Vision Of Saint Hubert (1890)

The Vision of Saint Hubert (1890)

— by Franz von Stuck

1 month ago
The Quill By Alphonse Mucha

The Quill by Alphonse Mucha

1 month ago

Will Wood music is so good it’s like. I’m at a jazz show. I’m at a rock concert. I’m disassociating. I’m hyper aware of how my body looks. I hate modern society. Can’t we go back to the 50s? Wait the 50s sucked too. I’m a vampire. I’m a werewolf. I’m incapable of love. I have so much love to give. What’s my gender anyway? I am at a skeleton swing party in an animated film.

1 month ago
disco elysium text reading, "No, that wasn't my fascist line, that was my ultraliberal one. I can do the fascist one if you want."

not enough love for this line tbh

1 month ago

Found the origin (source?) of the bottom image

Found The Origin (source?) Of The Bottom Image
Found The Origin (source?) Of The Bottom Image
theinfinityarchivist - The ♾️ Archivist
theinfinityarchivist - The ♾️ Archivist
1 month ago

“اسرار اَزَل را نه تو دانی و نه من وین حرفِ معمّا نه تو خوانی و نه من؛ هست از پس پرده گفت‌وگوی من و تو چون پرده برافتد، نه تو مانی و نه من. The eternal secrets neither you know nor I And answers to the riddle neither you know nor I Behind this veil there is much talk of you and I, When the veil falls, neither you remain nor I.”

— Omar Khayyam

1 month ago
1000 Year Old Helical Step Well With 8 Staircases Twisting From 8 Shrines, Hidden For Centuries, Found

1000 year old helical step well with 8 staircases twisting from 8 shrines, hidden for centuries, found in Maharashtra, India

1 month ago
Doing Her Best To Follow Her Therapist’s Advice For Dealing With Stressful Situations, Area Woman Holly

Doing her best to follow her therapist’s advice for dealing with stressful situations, area woman Holly Debling reportedly reminded herself Tuesday not to catastrophize after she spotted four skeletal horsemen on the horizon. “Okay, Holly, remember: Just because a great trumpet has sounded at the arrival of four unearthly riders, that doesn’t necessarily mean something bad is going to happen,” said Debling, who, as a great cloud of locusts poured forth from one horseman’s mouth and darkened the skies, added that keeping a cool head would be helpful whether or not the seas and rivers turning to blood became an issue for her. 

Full Story

1 month ago
Title: SOME GRAMMATICAL VOICES FOR USE IN SCIENTIFIC WRITING  

ACTIVE VOICE 
e.g. Our team collected samples and then we tested them.  

CLICKBAIT VOICE 
e.g. We collected some samples... You won't believe what happened next!  

PASSIVE VOICE 
e.g. Samples were collected and tested.  

HAIKU VOICE
e.g. Quiet science lab. Workers arrive with samples. The testing begins.  

PASSIVE-AGGRESSIVE VOICE 
e.g. We did all the collecting and testing. No need to thank us. Just doing our job.  

CONSPIRACY VOICE 
e.g. Mysterious "Samples" were harvested and covertly "tested" by so-called scientists.

alt-only bonus:

WILLIAM CARLOS WILLIAMS VOICE
e.g.

I have tested
the samples
that were in
the lab  

and which
you were probably
planning
to analyse  

Forgive me
they were intriguing
so significant
and so quantifiable

My latest cartoon for New Scientist

1 month ago
Coffee-loving Pyrausta Moth (Pyrausta Tyralis), Family Crambidae, Montgomery County, TX, USA

Coffee-loving Pyrausta Moth (Pyrausta tyralis), family Crambidae, Montgomery County, TX, USA

photograph by Paxon Kale CC

1 month ago
Dancing With Granite

Dancing with granite

(c) gif by riverwindphotography

1 month ago
1 month ago
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional
A Few Pngs I Made Of Some Vintage Aquamice, I Did NOT Know How Many Companies Made These Just To Be Promotional

a few pngs I made of some vintage aquamice, I did NOT know how many companies made these just to be promotional material! Wish companies did this more still, this is like 10x better than getting an okay pen

free to use ofc, credit if you wanna :3

1 month ago

I'm finally installing Linux on my PC

I'm so fucking sick of windows and Microsoft. The fucking nerve to show me ads on my lock screen and my start menu. I'm sick of it and I want open source shit now

1 month ago
Artwork Carried By Pioneer 10, The First Spacecraft To Leave Our Solar System. The Vessel Carried "messages

artwork carried by pioneer 10, the first spacecraft to leave our solar system. the vessel carried "messages for other worlds," including this drawing by linda salzman sagan representing humanity, 1972.

1 month ago
Emil Cioran, On The Heights Of Despair

Emil Cioran, On the Heights of Despair

1 month ago

pleeeeeeeease indie web and scenecore and whatever other subcultures.... have fun and be cringe but PLEASE be careful with your blinkies. if your website has flashing lights that are on by default or that can't be turned off, then it is inaccessible to photosensitive people. if your post has flashing lights, it needs to be tagged. PLEASE. i love indie web stuff but the prevalence of unavoidable flashing lights makes me really anxious!! people have migraines and seizures! please use tags like "flashing lights" and "eye strain," NOT "epilepsy" or "epilepsy warning," and please consider making your site accessible by removing flashing lights or making them avoidable. PLEASE. make the web usable for photosensitive people.

Explore Tumblr Blog
Search Through Tumblr Tags