Skip to content

Instantly share code, notes, and snippets.

View jdursema's full-sized avatar

Julie Dursema jdursema

View GitHub Profile
const changeTab = (event) => {
$('.selected').removeClass('selected')
$(event.target).addClass('selected')
$('.card-info').addClass('hidden')
$(`.card-${$(event.target).attr('id')}`).removeClass('hidden')
}
const openCard = (event) => {
$(event.target).next().slideToggle('.hidden')
$(event.target).children('div').toggleClass('open')
*{
margin: 0;
font-family: 'Open Sans';
font-weight: 300;
}
header{
background-color: #2F2235;
display: flex;
justify-content: space-between;
<html>
<head>
<title>Pattrn Party</title>
<link rel='stylesheet' href='./styles.css'/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Pattrn <span>Party</span></h1>
DTR Memo
Project: ToDo Box
Group Member Names: Maria and Julie
Project Expectations: What does each group member hope to get out of this project?
Julie: A better understanding of local storage.
Maria: A good partnership and a good project
Build on your professional story by thinking about how you're progressing at Turing. Answer the questions below in your own gist to use your StrengthsFinder themes to add to your story:
• Write 1-2 paragraphs about your StrengthsFinder themes: How have you seen yourself using these strengths at Turing? Has your understanding of these strengths changed since you first reflected on them? If so, how?
My top strength was adaptability. While at Turing, I’d try to plan out how projects would be completed and when certain pieces would get done. But since we were learning about topics at the same time we were implementing them into our projects, things rarely went as planned. Being adaptable, has helped me go with the flow and abandon plans that I figured out wouldn’t work. It’s also helped me pair well with partners that have different work-types. The first partner I had liked to work together on everything while my second partner preferred splitting up the work and working alone. Although these partners were ve
"6. Understand that Code is cheap." I think this is something I will definitely need to work on in the next couple months. When I put effort into something, like anyone, I tend to get attached to it. I think that learning when to scrap a piece of code and when to keep trying to make it work will be essencial to learning to code.
"1. Use google very aggressively." My friend who worked in the IT department once said "I don't know more about technology than most people, I'm just better at googling than them". While doing the pre work so far, I've found myself turing to google a lot to find out more about something I didn't understand in the book. With so many elements and names to memorize, I think google will be a really useful tool.
"26. Act as a leader and not a boss" I think people often don't differentiate between being a leader and being a boss, however it's an important distinction. A boss will tell you what to do, while a leader will be down in the trenches with you showing you how it's done. A leader n
Day 2:
There are three main types of lists in HTML: ordered, unordered, and definition. What are their differences?
Ordered lists are list ordered by numbers. Unorder lists begin with bullet points. And definitiion lists are only made up of terms that are then defined.
What is the basic structure of an element used to link to another website?
<a herf= "url of the page the link takes you to .com"> Text the user clicks on </a>
What attribute should you include in a link to open a new tab when the link is clicked?
You can add an atribute to the link element. After the link, put target= "_blank" and the link will open in a new window.
What role does empathy play in your life and how has it helped you?
It's stopped me from being a comeplete sociopath... I'm not sure if that's helpful though because some of the top CEOs are said to be sociopaths... but, at the end of the day I think I'd rather be an empathetic person than a millionaire sociopath... even if that meant I could get a yacht.
My high school wasn't very diverse and when I went to college, I met people with very different backgrounds which also meant people had very differing opinions than me, unlike high school. Being empathetic and trying to understand where they were coming from, helped me understand their differing opinions and broaden my world veiw.
How does empathy help you build better software?
Empathy helps a programer understand their client/user, allowing them to create a better product that is easy to use. One of the reasons people like iphones so much is because the software is intuitive. Also, empathy helps programsers work together, share ideas, and underst

On a website, what is the purpose of HTML code? HTML code determines the structure of a website. Coders can use it to add text, hyperlinks, and basic structure to a webpage.

What is the difference between an element and a tag? Tags are a part of an element. An element is made up of an opening and closing tag.

Why do we use attributes in HTML elements? Attributes provide more infromaiton to browsers about an element.

Describe the purpose of the head, title, and body HTML elements.