Claudina Sarahe, @itsmisscs
Take a 10-15 minute break after the talk
What qualities do you most value in a code and in a candidate?
Core languages of our craft: JS, CSS, HTML
Sets expectations for the candidate and your team
README.md
?JSDOC style syntax across all file types
Within the root folder:
src/
or app/
dist
, public/
, build/
app
├── js
│ │── vendor/
│ │ ├── jquery.js
│ └── main.js
├── css
│ └── main.css
├── views
│ └── index.html
├──
dist
├── // compiled assets
<div class="price">
${{ price }}
</div>
<output for="price-field" name="price" class="price">
${{ price }}
</output>
Represents the result of a calculation or user action.
<div class="btn">
Get it
</div>
<div>
is not <button>
<div class='item'>
<div class='item__name'>
{{ name }}
</div>
<div class='item_description'>
{{ description }}
</div>
<div class='item_price'>
{{ price }}
</div>
<div class='item__purchase' data-name='{{ name }}' data-price='{{ price }}'>
<div class='btn'>
Get it
</div>
</div>
</div>
<article class='item'>
<h2 class='item__name'>
{{ name }}
</h2>
<p class='item_description'>
{{ description }}
</p>
<output for="price-field" name="price" class="price">
${{ price }}
</output>
<div class='item__purchase' data-name='{{ name }}' data-price='{{ price }}'>
<button class='btn'>
Get it
</button>
</div>
</article>
button.delete {
}
.price {
}
.sidebar {
margin-left: 3%;
padding: 1.5em 40px;
}
@mixin box-sizing( $type: border-box ) {
-webkit-box-sizing: $type;
-moz-box-sizing: $type;
-o-box-sizing: $type;
-ms-box-sizing: $type;
box-sizing: $type;
}
*,
*::before,
*::after {
@include box-sizing(border-box);
}
@mixin box-sizing( $type: border-box ) {
box-sizing: $type;
}
*,
*::before,
*::after {
@include box-sizing(border-box);
}
$(".cart .count").html(count);
$(".cart .total").html(total);
$(".js-cart .js-count").html(count);
$(".js-cart__count").html(count);
-g
recap.md