Name | Description | Exceptions |
---|---|---|
Avoid async void | Prefer async Task methods over async void methods | Event handlers |
Async all the way | Don't mix blocking and async code | Console main method |
Configure context | Use ConfigureAwait(false) when you can |
Methods that require context |
<key name="Palette4" modified="2016-08-07 14:21:13" build="160724"> | |
<value name="Name" type="string" data="DarkConEmu"/> | |
<value name="ExtendColors" type="hex" data="01"/> | |
<value name="ExtendColorIdx" type="hex" data="0f"/> | |
<value name="TextColorIdx" type="hex" data="0f"/> | |
<value name="BackColorIdx" type="hex" data="0d"/> | |
<value name="PopTextColorIdx" type="hex" data="0d"/> | |
<value name="PopBackColorIdx" type="hex" data="0d"/> | |
<value name="ColorTable00" type="dword" data="001e1e1e"/> | |
<value name="ColorTable01" type="dword" data="00cc7a00"/> |
This was taken from http://rxwiki.wikidot.com/101samples, because I wanted to be able to read it more comfortable with syntax highlighting.
Here's the unedited original, translated to Github Markdown glory:
Settting up a Container Registry with docker-gitlab
This should be used for new users to getting started with the container registry feature on docker-gitlab.
-
Docker Distribution >= 2.4
-
Docker GitLab >= 8.8.4 ( #708 must be merged)
-
TLS certificates because it should be run with https it's not designed to use it without https
Whenever we change our templates we still have to use our build script and this can get annoying. Thankfully with webpack-dev-server
and BrowserSync we can fix this:
npm i -D browser-sync browser-sync-webpack-plugin webpack-dev-server
BrowserSync will act like a proxy, waiting for webpack to do its thing and then reloading the browser for us.
redis: | |
image: redis | |
postgres: | |
image: postgres | |
environment: | |
- POSTGRES_PASSWORD=sentry | |
- POSTGRES_USER=sentry | |
volumes: | |
- /var/lib/postgresql/data |
query IntrospectionQuery { | |
__schema { | |
queryType { name } | |
mutationType { name } | |
subscriptionType { name } | |
types { | |
...FullType | |
} | |
directives { |
This gist provides the learning-python3.ipynb notebook file, which can be viewed and edited in a Jupyter Notebook server to learn Python 3.
This is an unofficial manual for the couchdb
Python module I wish I had had.
pip install couchdb