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
| Question 1: Do you prefer the term: | |
| Adjustment: 92.48% | |
| Manipulation: 1.50% | |
| I do not have a preference: 6.02% | |
| Question 2: Do you think there is a significant difference between an adjustment and a manipulation? | |
| Yes, for sure: 79.65% | |
| No, not at all: 11.50% |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| <?php | |
| $begin = new DateTime('now'); | |
| $beginformat = $begin->format("Y-m-d"); | |
| $beginfinal = strtotime($beginformat); | |
| $end = $begin->modify("+90 day"); | |
| $endformat = $end->format("Y-m-d"); | |
| $endfinal = strtotime($endformat); | |
| $dates = array(); | |
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
| <?php | |
| $begin = new DateTime('now'); | |
| $beginformat = $begin->format("Y-m-d"); | |
| $beginfinal = strtotime($beginformat); | |
| $end = $begin->modify("+90 day"); | |
| $endformat = $end->format("Y-m-d"); | |
| $endfinal = strtotime($endformat); | |
| $dates = array(); | |
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
| <?php | |
| $begin = new DateTime('now'); | |
| $beginformat = $begin->format("Y-m-d"); | |
| $beginfinal = strtotime($beginformat); | |
| $end = $begin->modify("+90 day"); | |
| $endformat = $end->format("Y-m-d"); | |
| $endfinal = strtotime($endformat); | |
| for ($i=$beginfinal; $i<=$endfinal; $i+=86400) { | |
| echo date("Y-m-d", $i).'<br />'; |