Skip to content

Instantly share code, notes, and snippets.

DTR Memo

Project: Number Guesser

Group Member Names: Harry & Lili

Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):
-- To be collaborative and enjoy the struggle, and learn more JavaScript! We would like to get more comfortable writing more concise code. Expressive commits.

Team strengths & collaboration styles (consider discussing your Pairin qualities here):

@hborrelli1
hborrelli1 / gear_up_reflection.md
Last active October 26, 2019 21:32
Gear Up Assignment

Gear Up Assignment

What role does empathy play in your life and how has it helped you?

Empathy is a big part of my life. I always try to be respectful to others and concsious of how I am being perceived. Being aware of someone else's struggles and offering to help can have a positive impact on a team or project. Having a high team morale can often improve the work environment. Noticing what puts people off or improves their mood, can help guide the moral which is a result of empathy in the workplace.

How does empathy help you build better software?

Having an empathetic approach to designing a product or software allows you dive deeper into the way people interact with a product. This can raise awareness of issues that may have not been noticed before. Improving the way people interact with a product can have a significant impact on the successfulness of a product. Taking an empathetic approach to designing software will lead to a better built software, and more userfriendly product.

Why is

/**
* Home Why Avero Scroll Section
*/
let scrollContainer = document.querySelectorAll("#scrollWrapper .content-wrap");
let mainNavLinks = document.querySelectorAll("#scrollWrapper .content-wrap .static-col .content-list li a");
let mainSections = document.querySelectorAll("#scrollCol .scroll-item");
let lastId;
let cur = [];

Professional Development Assignment

Pairin Top 4 Results

Screen Shot 2019-10-16 at 11 07 57 PM

Screen Shot 2019-10-16 at 11 08 04 PM

Screen Shot 2019-10-16 at 11 08 13 PM

Screen Shot 2019-10-16 at 11 08 21 PM

Step 3 Responses

<?php
/**
* Product Card used in loops and grids.
*
* @package BigCommerce
* @since v1.7
*
* @var Product $product
* @var string $title
* @var string $brand
<?php
$teamTitleRow = get_field('team_title_row');
$teamSectionBg = get_field('team_section_background_image');
?>
<div class="avero-team-block-wrap" style="background-image:url(<?php echo $teamSectionBg; ?>)">
<div class="content-wrap">
<div class="title-row">
<span class="tiny-head"><?php echo $teamTitleRow['subtitle']; ?></span>
<?php
$teamTitleRow = get_field('team_title_row');
$teamSectionBg = get_field('team_section_background_image');
?>
<div class="avero-team-block-wrap" style="background-image:url(<?php echo $teamSectionBg; ?>)">
<div class="content-wrap">
<div class="title-row">
<span class="tiny-head"><?php echo $teamTitleRow['subtitle']; ?></span>
<script type="text/javascript">
// Scroll bar Process Page
var elementPosition = jQuery('#stepNumber').offset();
jQuery(window).scroll(function () {
if(jQuery(window).scrollTop() > 400) {
jQuery('#stepNumber').addClass('fixed-number');
} else {
jQuery('#stepNumber').removeClass('fixed-number');
}
<?php
$args = array(
'post_type' => 'service',
'posts_per_page' => -1
);
$loop = new WP_Query( $args );
?>
<!-- Nav Slider -->
<div class="slider-nav">
@hborrelli1
hborrelli1 / index.php
Last active March 29, 2019 15:37
Custom Loop for WP posts
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*