Code for Keras plays catch blog post
python qlearn.py- Generate figures
| Grant Name Funder Amount Description Deadline/Status Link Fit for RTAI Category | |
| Education & Youth Grant Triangle Community Foundation $40,000 Nonprofits serving youth ages 5-24; youth-led initiatives Mid-cycle https://trianglecf.org/award/our-impact-education-youth/ Direct match - youth AI education NC - Local | |
| GSK IMPACT Awards Triangle Community Foundation / GSK $50,000 Recognition for exceptional nonprofits in Research Triangle Mid-cycle https://trianglecf.org/award/gsk-impact-awards/ Recognition for strong Triangle nonprofits NC - Local | |
| Traditional Grants NC GlaxoSmithKline Foundation $25,000+ Educational needs of society and future generations Closed; new strategy mid-2026 https://www.ncgskfoundation.org/traditional-grants.html Strong fit once reopened NC - State | |
| Community Progress Fund Z. Smith Reynolds Foundation Up to $35,000 Rural NC nonprofits; systemic change Early Feb / Early Aug https://www.zsr.org Good if programs extend to rural NC NC - State | |
| Digital Learning Initiative NC Dept of Public Instruc |
Code for Keras plays catch blog post
python qlearn.py| # http://karpathy.github.io/2016/05/31/rl/ | |
| # https://gist.github.com/karpathy/a4166c7fe253700972fcbc77e4ea32c5 | |
| # pip install gym | |
| # pip install gym[atari] | |
| # Changes to original code - required for Python 3 | |
| # http://stackoverflow.com/questions/10458437/what-is-the-difference-between-dict-items-and-dict-iteritems | |
| # http://stackoverflow.com/questions/37132899/installing-cpickle-with-python-3-5 | |
| # http://stackoverflow.com/questions/15014310/why-is-there-no-xrange-function-in-python3 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
| <title>T.js example - a simple TODO list</title> | |
| <script type="text/javascript" src="coffee-script.js"></script> | |
| <script type="text/javascript" src="../javascripts/jquery-1.8.2.min.js"></script> | |
| <script type="text/javascript" src="../javascripts/t.js"></script> | |
| <script type="text/coffeescript"> |
| module B | |
| def test | |
| puts 'before B' | |
| super | |
| puts 'after B' | |
| end | |
| end | |
| module C | |
| def test |
| rvm use 1.9.3@perf_aspect --create |
| require 'forwardable' | |
| Data = Struct.new(:name) | |
| class Role | |
| extend Forwardable | |
| def_delegators :@data, :name= | |
| def initialize data |
| <html> | |
| <head> | |
| <script src="jquery.js" type="text/javascript"></script> | |
| <script src="jquery-ui.min.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="test">Test</div> | |
| <div style="top: 20px"> | |
| <div id='div1' style="width:100px; height:100px; background:#aaa"> | |
| Something goes here. |
| color molokai | |
| set nospell | |
| set paste | |
| set wrap | |
| set hidden " Don't prompt to save buffer when changing to another buffer | |
| set expandtab "Use :retab to replace tabs with spaces | |
| set shiftwidth=2 | |
| set tabstop=2 | |
| set autoindent |
| #!/usr/bin/ruby | |
| printf "\033[0m0 All attributes off\033[0m\n" | |
| printf "\033[1m1 Bold\033[0m\n" | |
| printf "\033[4m4 Underline\033[0m\n" | |
| printf "\033[5m5 Blink\033[0m\n" | |
| printf "\033[7m7 Invert\033[0m\n" | |
| printf "\033[8m8 Hide\033[0m = Hide\n" | |
| printf "\033[30m30 Black\033[0m = Black\n" | |
| printf "\033[31m31 Red\033[0m\n" |