Action | Shortcut |
---|---|
Scroll line up | ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS) |
Scroll line down | ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS) |
Scroll page up | ctrl+shift+page_up (also ⌘+⇞ on macOS) |
Scroll page down | ctrl+shift+page_down (also ⌘+⇟ on macOS) |
Third generation mexican-american, raised in Texas. She becomes a pop star in her late teens among mexicans and mexican-americans. She had begun to successfully cross over into american pop, but was tragically shot to death at the age of 23, in 1995.
- key figure in american acceptance of latino culture as a part american culture
- top-selling Latin artist of the 90s, worldwide
- to date, #15 top-selling Latin artist, worldwide
- released first spanish-language album to be the #1 US Album
This file contains hidden or 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
// SomeConnectedComponent.js | |
// ============================ | |
// Before: | |
const mapDispatchToProps = (dispatch) => ({ | |
dispatch, | |
}) | |
const mapStateToProps = (state) => ({ | |
resumable: (state.exam.attempt.attemptUUID !== null), |
This file contains hidden or 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
function getWordsByFrequency (text) { | |
return text | |
.replace('\'', '') | |
.replace(/\W+/g, ' ') | |
.toLowerCase() | |
.split(' ') | |
.reduce((acc, word) => { | |
if (acc[word] === undefined) { | |
acc[word] = 1 | |
} else { |
This file contains hidden or 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
/* | |
This only works on Chrome! | |
Steps: | |
1) Execute this in your dev console | |
2) Click anywhere on your current webpage | |
3) Try saying one of the colors in `colorList` | |
4) See if the resulting "alert" prints out the color that you spoke | |
*/ |
This file contains hidden or 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
let buttons = `<button type="button" class="btn btn-warning lessFields"><span class="glyphicon glyphicon-minus"></span></button> | |
<button type="button" class="btn moreFields"><span class="glyphicon glyphicon-plus"></span></button>`; | |
prefillFields(); | |
bindMoreFieldsClickHandler(); | |
function bindMoreFieldsClickHandler() { | |
$(".moreFields").click(function() { | |
console.log("on click moreFields"); | |
// TODO: refactor to permit more than 10 filters |
This requires that the code be stored in a public Github repository (or "repo"), which it is (https://github.com/whroman/kite-lite).
Github listens for new commits on the branch gh-pages
. When new commit(s) are found, Github automagically pushes the new code to aqua-volta.com
. This is one form of a process called "continuous integration".
This file contains hidden or 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
# Sanity - Start | |
echo "Booting up..." | |
# Load environment vars | |
. ~/.env_vars | |
# Aliases | |
alias ns="npm start" | |
alias nr="npm run" | |
alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl" |
NewerOlder