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
const renderField = (field) => ( | |
<div className="form-group"> | |
<label htmlFor={field.input.name}>{field.label}</label> | |
<input | |
{...field.input} | |
id={field.input.name} | |
name={field.input.name} | |
className={`form-control ${field.meta.touched && field.meta.error ? 'error' : ''}`} | |
type={field.type} | |
/> |
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
async () => { | |
try { | |
const [locations, categories] = await Promise.all([ | |
getLocations(), | |
getCategories() | |
]) | |
this.setState({locations, categories, loading: false}); | |
} catch (err) { | |
alert("Error: " + err.code + " " + err.message); | |
this.setState({loading: false}); |
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.exports = { | |
webpack: (config, { dev }) => { | |
// Perform customizations to config | |
config.node = { | |
fs: 'empty' | |
}; | |
return config | |
} | |
} |
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
<div class="animate" ng-hide="loading"> | |
... | |
</div> |
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
/** | |
Flex css start | |
*/ | |
.containerFlexRow { | |
display: flex; | |
flex-direction: row; | |
} | |
.wrapFlex { | |
flex-wrap: wrap; |
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
const findEquilibrium = A => { | |
let firstArray = []; | |
let firstSum = 0; | |
let secondArray = []; | |
let secondSum = 0; | |
for (let i = 0; i < A.length; i++) { | |
let currentIndex = i + 1; | |
firstArray.push(A[i]); |
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
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} -s [OR] | |
RewriteCond %{REQUEST_FILENAME} -l [OR] | |
RewriteCond %{REQUEST_FILENAME} -d | |
RewriteRule ^.*$ - [NC,L] | |
RewriteRule ^(.*) /appname/index.html [NC,L] | |
# or /index.html [NC,L] | |
</IfModule> |
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
app.filter('trusted', function ($sce) { | |
return function (url) { | |
return $sce.trustAsResourceUrl(url); | |
} | |
}); |
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
<form name="form" id="form" action="mail.php" method="POST"> | |
<div class="row"> | |
<div class="col-md-6"> | |
<label for="name">NAME:</label> | |
<input type="text" id="name" name="name" class="form-control" required> | |
</div> | |
<div class="col-md-6"> | |
<label for="email">EMAIL:</label> | |
<input type="email" id="email" name="email" class="form-control" required> |
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
mongoexport --host localhost --port 3001 --db meteor --collection collection_name --out collection_name.json | |
// source http://stackoverflow.com/a/24551885/3632722 |