A Pen by VenomSnake on CodePen.
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
Add App specific types | |
Create action types | |
Create app state types (data in reducers) | |
Hook up types to Redux actions | |
Hook up types to Reducers | |
Hook up types to Store | |
Hook up types to middleware | |
Hook up types to React component(mapState,mapDispatch) |
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
# 1. Create a folder named code inside your home directory, cd into it | |
# 2. Inside the code directory create another directory named ruby | |
# 3. cd into the ruby directory and create a week_one directory | |
# 4. cd back to the code directory | |
# 5. Create a javascript directory inside of code | |
# 6. Now delete the javascript directory with the rm command, we don't need javascript yet | |
# 7. cd back into ruby and touch two files, test.rb and command_line.rb | |
# 8. code . to open both files in vs code | |
# 9. Create a hidden file name .secrets | |
# 10. Run ls -la to view it on the command line |
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
<h1>Score Keeping App</h1> | |
<h3 >How many to win:<button onclick="increase();"id="plus"class="plus_minus add">+</button><button onclick="decrease();"id="minus"class="plus_minus subtract">-</button></h3> | |
<h3 id="win">7</h3> | |
<div class="scores"> | |
<div class="player p1"> | |
<h1 id="P1_score"></h1> | |
</div> | |
<div class="player p2"> | |
<h1 id="P2_score"></h1> |
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Title Goes Here</title> | |
<link href="./resources/something.css" type="text/css" rel="stylesheet"> | |
</head> | |
<body> |
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Title Goes Here</title> | |
<link href="./resources/something.css" type="text/css" rel="stylesheet"> | |
</head> |
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Music Search App</title> | |
<link href="./resources/something.css" type="text/css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Righteous" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet"> |
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Title Goes Here</title> | |
<link href="./resources/something.css" type="text/css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet"> | |
</head> |
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
<head> | |
<title>Random Quote generator</title> | |
</head> | |
<body> | |
<h1>This site generate a random quote</h1> | |
<br> | |
<br> | |
<input type="button" class="button" onclick="upDate_quote()" value="Generate"> |
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
<body> | |
<div class="containter-fluid"> | |
<h1 class="text-center">Wikipedia Viewer</h1> | |
<a target="_blank" href="https://en.wikipedia.org/wiki/Special:Random" role="button" class="btn btn-info center-block">Random Article</a> | |
<br> | |
<br> | |
<form onsubmit="return ClickEvent();"> | |
<div class="input-group"> | |
<input type="text" class="form-control" placeholder="Search" id="test" > |
NewerOlder