by xero updated 10.29.24
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
| _ | |
| _._ _..._ .-', _.._(`)) | |
| '-. ` ' /-._.-' ',/ | |
| ) \ '. | |
| / _ _ | \ | |
| | a a / | | |
| \ .-. ; | |
| '-('' ).-' ,' ; | |
| '-; | .' | |
| \ \ / |
- References
- Dependency
unittest2
How to get a remote repository (from BitBucket, GitHub or anyone)
$ git clone https://github.com/<username>/<repository>.git
If you have added a SSH key, then you can also use this command:
$ git clone git@bitbucket.org:<username>/<repository>.git
How to create a new repository from the command line
Long ago, the first time I read "The Pragmatic Programmer", I read some advice that really stuck with me.
"Don't Use Manual Procedures".
This in the chapter on Ubiquitous Automation. To summarize, they want you to automate all the things.
The trouble was that I hadn't much of an idea how to actually go
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 python3 | |
| ''' | |
| Thanks to Andres Torres | |
| Source: https://www.pythoncentral.io/introduction-to-sqlite-in-python/ | |
| ''' | |
| import sqlite3 | |
| # Create a database in RAM |
OlderNewer