download ubuntu image for orangepi zero LTS: http://www.orangepi.org/downloadresources/flash with etcherfiddle with USB to TTL, gave up on trying to get that to workplug ethernet into switchssh orangepi@password orangepicouldn't successfully apt-get update upgrade, getting E: Unable to acquire the dpkg frontend lock- download armbian image for orangepi zero LTS: http://www.orangepi.org/downloadresources/
- flash with etcher
- armbian-config
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 | |
| """How to do regular expressions in sqlite3 (using python).""" | |
| from __future__ import division, absolute_import, print_function, unicode_literals | |
| import re | |
| import sys | |
| import time | |
| import datetime | |
| import sqlite3 |
This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
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
| Set-PSReadLineKeyHandler -Chord "c,i" -ViMode Command -ScriptBlock { VIChangeInnerBlock } | |
| Set-PSReadLineKeyHandler -Chord "c,a" -ViMode Command -ScriptBlock { VIChangeOuterBlock } | |
| Set-PSReadLineKeyHandler -Chord "d,i" -ViMode Command -ScriptBlock { VIDeleteInnerBlock } | |
| Set-PSReadLineKeyHandler -Chord "d,a" -ViMode Command -ScriptBlock { VIDeleteOuterBlock } | |
| Set-PSReadLineKeyHandler -Chord "c,s" -ViMode Command -ScriptBlock { VIChangeSurround } | |
| Set-PSReadLineKeyHandler -Chord "d,s" -ViMode Command -ScriptBlock { VIDeleteSurround } | |
| Set-PSReadLineKeyHandler -Chord "Ctrl+a" -ViMode Command ` | |
| -ScriptBlock { VIIncrement $args[0] $args[1] } | |
| Set-PSReadLineKeyHandler -Chord "Ctrl+x" -ViMode Command ` | |
| -ScriptBlock { VIDecrement $args[0] $args[1] } |