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
git add . | |
git commit -m "Soem message" | |
git tag -a v1.0.4 | |
git push --follow-tags | |
This will commit the changes to tav v1.0.4 |
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
@extends('quarx::layouts.dashboard', ['pageTitle' => '_camelUpper_casePlural_ » Edit']) | |
@section('content') | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="pull-right raw-margin-top-24 raw-margin-left-24"> | |
{!! Form::open(['route' => 'assessments.search']) !!} | |
<input class="form-control form-inline pull-right" name="search" placeholder="Search"> | |
{!! Form::close() !!} |
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
git clone -b my-branch [email protected]:user/myproject.git |
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 arr = [7, 4, 1, 4]; | |
{[...arr].map((x, i) => | |
<p>Element</p> | |
)} |
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
this.props.dispatch(change('SubmitResultsForm', `paraprotein_questions.${index}.title`, item.title)); |
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
{item.typing_methods.map((method, methodIndex) => { | |
return method.unitsOfMeasurement.map((unit, unitIndex) => ( | |
<option value={unit.title}>{unit.title}</option> | |
)); | |
})} |
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
{(() => { | |
switch (this.state.color) { | |
case "red": return "#FF0000"; | |
case "green": return "#00FF00"; | |
case "blue": return "#0000FF"; | |
default: return "#FFFFFF"; | |
} | |
})()} |
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
- Update to atleast Wampserver 3.0.4 | |
- Add the PHP version you want for the CLI (e.g. 7.0.10) | |
- Change PHP version from Wamp tray icon | |
- Verify that all works fine | |
- Exit Wampserver | |
- Edit the file wamp/wampmanager.conf to replace phpCliVersion = 5.6.16 with the version number you want to use and save the modified file. | |
- Launch Wampserver and wait for Green icon then exit |
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
if (data instanceof Array) { | |
} |
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
setTimeout(() => ( function(){ if(this.isFetching) window.location.reload(true); console.log("page reloaded due to loading timeout") }), 6000); |
NewerOlder