60 lines
3.5 KiB
PHP
60 lines
3.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="utf-8"
|
|
<title>emma's things to do</title>
|
|
<link rel="icon" type="image/x-icon" href="/img/site/assets/favicon.ico">
|
|
<link rel="stylesheet" href="/style/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/header.php'); ?>
|
|
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
|
<main>
|
|
<h1 id="top">emma's things to do</h1>
|
|
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/self-category.php'); ?>
|
|
<section>
|
|
<p>
|
|
this page is a little less specific than <a href="./goals.php" target="_blank">emma's goals</a> they are things that i'd like to accomplish, but are not truly personal to me. they are things you could look through as well if you are looking for something new to try out or a skill to pick up. sometimes i'll try to include a resource i've found for eventually pursuing a topic if i have researched it far enough to do so. i will mark resources that are paid and resources that are free
|
|
</p>
|
|
|
|
<h3>todo list</h3>
|
|
<ul>
|
|
<li>
|
|
need to get started making websites? i heard <a href="https://htmlforpeople.com/" target="_blank">HTML for People (free)</a> is good for that
|
|
</li>
|
|
<li>
|
|
maybe you want to learn HTML and CSS? i used this <a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank">freeCodeCamp course (free)</a>
|
|
</li>
|
|
<li>
|
|
how about JavaScript? i am working through this <a href="https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/" target="_blank">freeCodeCamp course (free)</a>
|
|
</li>
|
|
<li>
|
|
maybe get a backend going with PHP? i bought this book <a href="https://nostarch.com/php-crash-course" target="_blank">PHP Crash Course (paid)</a> found this handbook on <a href="https://www.freecodecamp.org/news/the-php-handbook/" target="_blank">freeCodeCamp (free)</a> and found out there will be a <a href="https://phpforpeople.com/" target="_blank">PHP for People</a>
|
|
</li>
|
|
<li>
|
|
need to brush up on CSS <a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/#aa-flexbox-properties" target="_blank">flexbox</a> or <a href="https://css-tricks.com/snippets/css/complete-guide-grid/" target="_blank">grid</a>? (both free articles)
|
|
</li>
|
|
<li>
|
|
want to learn how to run linux on a VPS? there's a subreddit built in a course style for that <a href="https://www.reddit.com/r/linuxupskillchallenge/" target="_blank">/r/linuxupskillchallenge</a> (free course, free-tier for free-credit cloud providers usually require a non pre-paid credit card on file)
|
|
</li>
|
|
<li>
|
|
persoanlly, i want to learn pixel art one day. i found this interactive game on steam for a possible startig point <a href="https://store.steampowered.com/app/2330360/Pixel_Art_Academy_Learn_Mode/" target="_blank"> Pixel Art Academy: Learn Mode (paid)</a>
|
|
</li>
|
|
<li>
|
|
maybe PHP isn't your thing, want to learn HTML, CSS, JS and either Ruby on Rails or Node JS? You can use <a href="https://www.theodinproject.com/" target="_blank">The Odin Project (free)</a> for that!
|
|
</li>
|
|
</ul>
|
|
<p>
|
|
i think that's all i have for now that i want to do soon. when i get more things i'll add them to the list! <3
|
|
</p>
|
|
|
|
<p>back to the <a href="#top">top of the page</a></p>
|
|
</section>
|
|
</main>
|
|
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
|
</body>
|
|
</html>
|
|
|