This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo PACO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id":"HkqEDLvxE", | |
"gender":"male", | |
"parents":[ | |
{ | |
"id":"011jVS4rb", | |
"type":"blood" | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ApiCore | |
module TeamInteractor | |
class Create | |
attr_accessor( | |
:team, | |
:team_params, | |
:team_metadata_params, | |
:author | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chmod -x /etc/cron.daily/mlocate | |
sudo dpkg -P mlocate | |
sudo tee /etc/apt/preferences.d/disable-mlocate << EOF | |
Package: mlocate | |
Pin: release o=Ubuntu | |
Pin-Priority: -1 | |
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cart { | |
border: 1px solid #ddd; | |
} | |
.cart li { | |
margin-bottom: 10px; | |
border: 1px solid red; | |
} | |
.cart li.selected { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="cart"> | |
<li> | |
<header>Item 1</header> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p> | |
<button>Remove from cart</button> | |
</li> | |
<li class="premium selected"> | |
<header>Item 2</header> | |
<p>Fusce vel neque sit amet felis fermentum cursus vitae.</p> | |
<button>Remove from cart</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CartList extends React.Component { | |
onClickItem(event, index) { | |
this.state.setState({ | |
selected: [ | |
...this.state.selected, | |
index | |
] | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> | |
<div> | |
<header>Item 1</header> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p> | |
<button>Remove from cart</button> | |
</div> | |
</li> | |
<li class="selected"> <!-- More clear responsibilities (SelectList) --> | |
<div class="premium"> <!-- More clear responsibilities (CartItem) --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.selectable-list { | |
border: 1px solid #ddd; | |
} | |
.selectable-list li { | |
padding-bottom: 10px; /* margin to padding ;) */ | |
} | |
.selectable-list .selected { | |
background-color: blue; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CartItem extends React.Component { | |
onClickRemove () { | |
// Go to your store and remove item | |
} | |
render() { | |
const { item } = this.props; | |
const isPremium = item.premium ? 'premium' : ''; | |
return ( |
NewerOlder