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
| <!doctype html> | |
| <title>dynamic</title> | |
| <button onclick="addGeneratedForms()">addGeneratedForms</button> | |
| <script> | |
| function addGeneratedForms(){ | |
| var div = document.createElement('div'); | |
| div.innerHTML = '<form class="login" method="post" action="login">\ | |
| <input type="text" name="username">\ | |
| <input type="password" name="password">\ | |
| <button type="submit">login</button> stay on this page but update the url with pushState\ |
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
| #!/usr/bin/env python | |
| """ | |
| Exports Issues from a specified repository to a CSV file | |
| Uses basic authentication (Github username + password) to retrieve Issues | |
| from a repository that username has access to. Supports Github API v3. | |
| """ | |
| import csv | |
| import requests | |
| import json |
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
| #!/usr/bin/env python | |
| ''' | |
| Steps: | |
| 1. Create any milestones | |
| 2. Create any labels | |
| 3. Create each issue, linking them to milestones and labels | |
| 3.1: Update status for new issue if closed | |
| 4: Create all the comments for each issue | |
| ''' | |
| import getpass |
NewerOlder