- Use the Present Tense ("Add feature" not "Added feature").
- Use the Imperative Mood ("Move cursor to..." not "Moves cursor to...").
- Limit the subject line to 50 characters
- Wrap the body at 72 characters
- Reference issues and pull requests
- When only changing documentation, include
[ci skip]
in the commit description - Be creative with emojies
- 🎉
:tada:
Initial commit
- 🎉
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
// ==UserScript== | |
// @name Enable copy, paste and cut in Golomt Bank web app | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Golomt bankniihand yariad heleed, gomdollood hereg alga. | |
// @author Batjaa Batbold batjaa.com | |
// @match https://www.egolomt.mn/* | |
// @grant none | |
// ==/UserScript== |
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 | |
$json = file_get_contents('http://letsrevolutionizetesting.com/challenge.json'); | |
$jsonObj = json_decode($json); | |
while($jsonObj != null){ | |
$json = str_replace("challenge", "challenge.json", $jsonObj->follow); | |
$json = file_get_contents($json); | |
var_dump($json); | |
echo "\n"; | |
$jsonObj = json_decode($json); | |
} |