I hereby claim:
- I am ernstki on github.
- I am ernstki (https://keybase.io/ernstki) on keybase.
- I have a public key whose fingerprint is 13CE B335 8962 AF0C 4489 FD84 DE5F FAB6 821A 05EB
To claim this, I am signing this object:
| @ECHO OFF | |
| :: A simple batch script wrapper around PuTTY's PLINK.EXE | |
| :: to integrate with Eclipse's EGit plugin. Update your | |
| :: remote [username] below and save this script as | |
| :: 'plink.cmd' alongside wherever PLINK.EXE is installed | |
| :: on your system. | |
| :: | |
| :: The SO article referenced below will show you how to | |
| :: use this script with EGit (hint: set the GIT_SSH | |
| :: environment variable to the full pathname to this |
| #!/bin/bash | |
| set -x | |
| export GIT_WORK_TREE=/var/www/tm | |
| export RAILS_ENV=mod_rails | |
| if [ ! -d "$GIT_WORK_TREE" ]; then | |
| echo "ACK! The specified working tree ($GIT_WORK_TREE) doesn't exist. Quitting." >&2 | |
| exit 3 | |
| fi | |
| git checkout -f dev |
| #!/bin/bash | |
| #################################################################### | |
| ## ## | |
| ## post-receive.webhost ## | |
| ## ## | |
| ## A Git 'post-receive' hook for automating deployment to a ## | |
| ## public web directory based on the name of the "bare" repo ## | |
| ## that it belongs to. ## | |
| ## ## | |
| ## Rename to 'post-receive' and 'chmod a+x', then move this ## |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="//code.jquery.com/jquery-2.1.0.min.js"></script> | |
| <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
| <meta charset=utf-8 /> | |
| <title>quadraticCurveTo given three points</title> | |
| <style> | |
| body { background:#000; margin:0px; padding:0px; overflow:hidden; } |
| #!/bin/bash | |
| # Query an LDAP server (assuming OWA via DavMail) for "LastName, FirstName" | |
| # given a list of names from an input file passed on the command line; output | |
| # names and emails in a format acceptable to Listserv for bulk subscription. | |
| # | |
| # The input names can be copied from a Blackboard course's Tools -> Send Email | |
| # -> All Users. These are semicolon-separated, so replace these with newlines | |
| # using a global search-and-replace (e.g., in Vi: :%s/; \?/<CTRL+V><CTRL+M>/g, | |
| # where <CTRL+X> is a literal keypress, holding down the Control key). | |
| # |
| #!/bin/bash | |
| ############################################################################## | |
| ## ## | |
| ## fawk! - a shortcut for `awk '{ print $x }'` ## | |
| ## (also an expression of extreme frustration) ## | |
| ## --------------------------------------------- ## | |
| ## ## | |
| ## Author: Kevin Ernst <ernstki -at- mail.uc.edu> ## | |
| ## Inspiration: http://serverfault.com/a/5551 (but basically rewritten) ## | |
| ## Mnemonic: "Field Awk" ## |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="Appearing/disappearing message box with CSS transitions only" /> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| .box { | |
| border: 1px solid black; | |
| height: 5em; |
I hereby claim:
To claim this, I am signing this object:
| --- CMakeLists.txt.orig 2016-11-13 18:49:46.528795000 -0500 | |
| +++ CMakeLists.txt 2016-11-13 18:52:36.459490000 -0500 | |
| @@ -21,7 +21,6 @@ | |
| # to make sure more people can easily run class code without knowing | |
| # about this compiler argument | |
| set(CUDA_NVCC_FLAGS " | |
| - -ccbin /usr/bin/clang; | |
| -gencode;arch=compute_30,code=sm_30; | |
| -gencode;arch=compute_35,code=sm_35; | |
| -gencode;arch=compute_35,code=compute_35; |
| ############################################################################## | |
| # A basic, functional Apache <VirtualHost> configuration stanza for | |
| # mod_wsgi might look something like what's below. | |
| # | |
| # On an Amazon AMI ECS instance, I would save this in to a config file | |
| # called /etc/httpd/conf.d/flaskapp-wsgi.conf and then 'sudo service httpd | |
| # restart'. | |
| # | |
| # Helpful References: | |
| # - http://flask.pocoo.org/docs/0.11/deploying/mod_wsgi/#configuring-apache |