git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| def highlight(element): | |
| """Highlights (blinks) a Webdriver element. | |
| In pure javascript, as suggested by https://github.com/alp82. | |
| """ | |
| driver = element._parent | |
| driver.execute_script(""" | |
| element = arguments[0]; | |
| original_style = element.getAttribute('style'); | |
| element.setAttribute('style', original_style + "; background: yellow; border: 2px solid red;"); | |
| setTimeout(function(){ |
| /*! | |
| * Fluent Table Cells - An easily extendible fluent interface for programmatically creating table cells in JavaScript. | |
| * Author: Randy Burden | |
| * http://www.randyburden.com | |
| * Open Source Url: https://gist.github.com/2629702 | |
| * | |
| * Example usage: | |
| var row = '<tr>'; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
This is now an actual repo: