some This is Blue italic. text
some This is Red Bold. text
Text
+ this will be highlighted in green
Section "Device" | |
Identifier "Configured Video Device" | |
Driver "vesa" | |
EndSection | |
Section "Monitor" | |
Identifier "Configured Monitor" | |
HorizSync 42.0 - 52.0 | |
VertRefresh 55.0 - 65.0 | |
Modeline "1024x768" 60.80 1024 1056 1128 1272 768 768 770 796 |
### Keybase proof | |
I hereby claim: | |
* I am puzzleduck on github. | |
* I am puzzleduck (https://keybase.io/puzzleduck) on keybase. | |
* I have a public key ASDFTZ--bIZFXAYH2Ha6P-C-maYIXSGEGS4fhmVISWufhQo | |
To claim this, I am signing this object: |
echo "Local Linguist (linguist for non repos)" | |
if git status 2> /dev/null > /dev/null; then | |
echo "!!! This directory is already a git repository... please use the 'linguist' command instead" | |
echo "!!! If this command exits unclean it will leave a git repository behind" | |
echo "!!! You can remove the git repository by running 'rm -Rf .git'" | |
else | |
git init 2> /dev/null > /dev/null | |
git add --all 2> /dev/null > /dev/null | |
git commit -m "local linguist auto commit" 2> /dev/null > /dev/null | |
linguist "$@" |
## original | |
1. First item | |
``` | |
echo "code from item 1" | |
``` | |
1. Second item | |
1. Third item | |
1. Forth |
Why MarkDown is like vegetables
PuZZleDucK <[email protected]> v1.0, 2017-12
This is the optional preamble (an untitled section body). Useful for writing simple sectionless documents consisting only of a preamble.
Note
|
The abstract, preface, appendix, bibliography, glossary and index section titles are significant ('specialsections'). |
#!/usr/bin/python | |
# Simple Genetic Algorithm Atari simulation | |
import gym | |
import numpy as np | |
import sys | |
from pybrain.tools.shortcuts import buildNetwork | |
import random | |
genisis = "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" |
#!/usr/bin/python | |
# My first Atari simulation on the AIgym | |
# Not much happening yet | |
import gym | |
episodes = 500 | |
max_time = 10000 | |
env = gym.make('Qbert-v0') |