Build and deploy
44
.github/workflows/build-site.yml
vendored
|
@ -1,44 +0,0 @@
|
|||
name: Build and Deploy Site
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: lts/*
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: "latest"
|
||||
extended: true
|
||||
- name: Configure npm
|
||||
run: |
|
||||
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
|
||||
npm config set "//npm.fontawesome.com/:_authToken" ${{ secrets.FONTAWESOME_TOKEN }}
|
||||
- name: Install postcss
|
||||
run: |
|
||||
npm -g install postcss-cli
|
||||
- name: Install npm packages
|
||||
run: |
|
||||
npm install
|
||||
- name: Run Hugo
|
||||
run: |
|
||||
hugo --environment production --minify
|
||||
- name: Deploy to gh-pages
|
||||
if: ${{ !env.ACT }}
|
||||
uses: rdarida/simple-github-pages-deploy-action@v1
|
||||
with:
|
||||
git-user: "MillironX"
|
||||
git-email: "25492070+MillironX@users.noreply.github.com"
|
||||
git-base-folder: "public"
|
||||
commit-message: "Build and deploy"
|
||||
branch: "gh-pages"
|
153
.gitignore
vendored
|
@ -1,153 +0,0 @@
|
|||
### Jekyll gitignore ###
|
||||
_site/
|
||||
.sass-cache/
|
||||
.jekyll-cache/
|
||||
.jekyll-metadata
|
||||
|
||||
### Hugo gitignore ###
|
||||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
# Temporary lock file while building
|
||||
/.hugo_build.lock
|
||||
|
||||
### Node gitignore ###
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
.temp
|
||||
.cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
3
.gitmodules
vendored
|
@ -1,3 +0,0 @@
|
|||
[submodule "themes/ananke"]
|
||||
path = themes/ananke
|
||||
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
|
13
.gitpod.yml
|
@ -1,13 +0,0 @@
|
|||
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
|
||||
tasks:
|
||||
- name: Install Hugo dependencies
|
||||
before: |
|
||||
mkdir -p $HOME/.local/bin
|
||||
curl -L https://github.com/gohugoio/hugo/releases/download/v0.104.3/hugo_extended_0.104.3_linux-amd64.tar.gz | tar xvz -C $HOME/.local/bin
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
init: echo "Your version of Hugo is `hugo version`"
|
||||
command: hugo server -D -F --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0
|
||||
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
|
||||
ports:
|
||||
- port: 1313
|
||||
onOpen: open-preview
|
1
.husky/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
_
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
npx lint-staged
|
|
@ -1,2 +0,0 @@
|
|||
node_modules
|
||||
themes
|
|
@ -1,6 +0,0 @@
|
|||
"$schema": "http://json.schemastore.org/prettierrc"
|
||||
proseWrap: always
|
||||
overrides:
|
||||
- files: "*.html"
|
||||
options:
|
||||
parser: "go-template"
|
21
LICENSE
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Thomas A. Christensen II
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,3 +0,0 @@
|
|||
# millironx.github.io
|
||||
|
||||
My personal website. Now hosted over at https://millironx.com
|
23
academia/cheme-car/index.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>University of Wyoming Honors Program: Laramie, Wyoming</h5><h2>The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li></ul></small></h3><h4>May 14, 2019</h4><p>The ChemE Car That Cud showcases Wyoming’s dominant industries of agriculture
|
||||
and mining by utilizing rumen fluid from a cannulated beef cow to generate
|
||||
hydrogen to be used in a hydrogen fuel cell and radioactive cesium, a byproduct
|
||||
of uranium that is often obtained from Wyoming’s mines, to time the car’s stop.
|
||||
The concentration of cesium-137 source is measured using the radioactive decay
|
||||
of cesium shielded by aluminum. The painted aluminum chassis was obtained from a
|
||||
previous team at UW, and modified using plastic k’nex toys to adapt to the
|
||||
current power source and stopping mechanism.</p><div class="card border-dark m-3 p-3"><a href=/academia/cheme-car/cud_cheme_car_web.pdf>/academia/cheme-car/cud_cheme_car_web.pdf</a>
|
||||
<iframe src=/academia/cheme-car/cud_cheme_car_web.pdf style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
15
academia/how-to-build-a-cow-cud-fuel-cell/index.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>How to Build a Cow-Cud Fuel Cell - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>Idaho INBRE Summer Research Conference: Moscow, Idaho</h5><h2>How to Build a Cow-Cud Fuel Cell</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li></ul></small></h3><h4>August 1, 2018</h4></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
16
academia/hydronium-pva/index.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>ACS ES&T Engineering</h5><h2>Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation</h2><h3><small><ul class=list-inline><li class=list-inline-item>Carson J. Silsby</li><li class=list-inline-item>Jonathan R. Counts</li><li class=list-inline-item>Thomas A. Christensen II</li><li class=list-inline-item>Mark F. Roll</li><li class=list-inline-item>Kristopher V. Waynant</li><li class=list-inline-item>James G. Moberly</li></ul></small></h3><h4>September 2, 2022</h4><p>Bioremediation of chlorinated aliphatic hydrocarbon-contaminated aquifers can be hindered by high contaminant concentrations and acids generated during remediation. Encapsulating microbes in hydrogels may provide a protective, tunable environment from inhibiting compounds; however, current approaches to formulate successful encapsulated systems rely on trial and error rather than engineering approaches because fundamental information on mass-transfer coefficients is lacking. To address this knowledge gap, hydronium ion mass-transfer rates through two commonly used hydrogel materials, poly(vinyl alcohol) and alginic acid, under two solidification methods (chemical and cryogenic) were measured. Variations in hydrogel crosslinking conditions, polymer composition, and solvent ionic strength were investigated to understand how each influenced hydronium ion diffusivity. A three-way ANOVA indicated that the ionic strength, membrane type, and crosslinking method significantly (<em>p</em> < 0.001) contributed to changes in hydronium ion mass transfer. Hydronium ion diffusion increased with ionic strength, counter to what is observed in aqueous-only (no polymer) solutions. Co-occurring mechanisms correlated to increased hydronium ion diffusion with ionic strength included an increased water fraction within hydrogel matrices and hydrogel contraction. Measured diffusion rates determined in this study provide first principal design information to further optimize encapsulating hydrogels for bioremediation.</p><div class="card border-dark m-3 p-3"><a href=https://doi.org/10.1021/acsestengg.2c00107>https://doi.org/10.1021/acsestengg.2c00107</a>
|
||||
<iframe src=https://doi.org/10.1021/acsestengg.2c00107 style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
168
academia/index.html
Normal file
|
@ -0,0 +1,168 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Academic Publications and Presentations - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><div class=blurred-container><div class=motto><h1 id=motto>Academic Publications and Presentations</h1></div><div class=img-src style=background-image:url(/images/library.jpg)></div><div class="img-src blur" style=background-image:url(/images/library_hu6756e41dd5621a1e254550fbe815c3a2_204150_filter_6742909828560968691.jpg)></div></div><br><section class="container-fluid list-main"><div class="container px-5"><h2>Selected Presentations</h2><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-book" data-bs-toggle=tooltip title=Paper></i></h3><a class="btn btn-secondary dogear" href=https://doi.org/10.1016/j.vetmic.2022.109447 data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/rotavirus-virome/>Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease</a></h3>Tyler Doerksen,
|
||||
<strong>Thomas A. Christensen II</strong>,
|
||||
Andrea Lu,
|
||||
Lance Noll,
|
||||
Jianfa Bai,
|
||||
Jamie Henningson,
|
||||
Rachel Palinski<br>Veterinary Microbiology:
|
||||
(27 Apr 2022)<br>Keywords:
|
||||
<a href=#>porcine rotavirus</a>
|
||||
<a href=#>porcine enteric disease</a>
|
||||
<a href=#>virome</a>
|
||||
<a href=#>rotavirus</a><br><details><summary>Abstract</summary><p>Enteric disease is the predominant cause of morbidity and mortality in young
|
||||
mammals including pigs. Viral species involved in porcine enteric disease
|
||||
complex (PEDC) include rotaviruses, coronaviruses, picornaviruses, astroviruses
|
||||
and pestiviruses among others. The virome of three groups of swine samples
|
||||
submitted to the Kansas State University Veterinary Diagnostic Laboratory for
|
||||
routine testing were assessed, namely, a Rotavirus A positive (RVA) group, a
|
||||
Rotavirus co-infection (RV) group and a Rotavirus Negative (RV Neg) group. All
|
||||
groups were designated by qRT-PCR results testing for Porcine Rotavirus A, B, C
|
||||
and H such that samples positive for RVA only went in the RVA group, samples
|
||||
positive for >1 rotavirus went in the RV group and samples negative for all were
|
||||
grouped in the RVNeg group. All of the animals had clinical enteric disease
|
||||
resulting in scours and swollen joints/lameness, enlarged heart and/or a cough.
|
||||
All samples were metagenomic sequenced and analyzed for viral species
|
||||
composition that identified 14 viral species and eight bacterial viruses/phages.
|
||||
Sapovirus and Escherichia coli phages were found at a high prevalence in RVA and
|
||||
RV samples but were found at low or no prevalence in the RV Neg samples.
|
||||
Picobirnavirus was identified at a high proportion and prevalence in RV Neg and
|
||||
RV samples but at a low prevalence in the RVA group. A sequence analysis of the
|
||||
possible host of Picobirnaviruses revealed fungi as the most likely host.
|
||||
Non-rotaviral diversity was highest in RVA samples followed by RV then RV Neg
|
||||
samples. Various sequences were extracted from the sample reads and a
|
||||
phylogenetic update was provided showing a high prevalence of G9 and P[23] RVA
|
||||
genotypes. These data are important for pathogen surveillance and control
|
||||
measures</p></details></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-graduation-cap" data-bs-toggle=tooltip title=Thesis></i></h3><a class="btn btn-secondary dogear" href=https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2 data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/thesis/>Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers</a></h3><strong>Thomas A. Christensen II</strong><br>University of Idaho:
|
||||
Moscow, Idaho
|
||||
(07 Aug 2020)<br>Keywords:
|
||||
<a href=#>bioremediation</a>
|
||||
<a href=#>polyoxometalate</a>
|
||||
<a href=#>hydrogel polymers</a>
|
||||
<a href=#>proton transport</a>
|
||||
<a href=#>chemical engineering</a><br><details><summary>Abstract</summary><p>Polyoxometalate clusters embedded into hydrogel biobeads may be able to solve
|
||||
the challenges posed by free proton generation during remediation of
|
||||
trichloroethylene by acting as buffers and reducing protons to hydrogen gas. In
|
||||
this thesis, the challenges posed by systems that contain both diffusion and
|
||||
reaction processes for protons are considered mathematically, and a computer
|
||||
simulation to was developed to prove the relationship between diaphragm cell lag
|
||||
period and reactive capabilities of membranes. Two polyoxometalate compounds,
|
||||
sodium decavanadate and alumina sulfate, were successfully incorporated into a
|
||||
poly(vinyl alcohol) hydrogel membrane, and the diffusivity changes associated
|
||||
with each compound was determined. It was found that the diffusivity of protons
|
||||
through an unmodified 10% w/v poly(vinyl alcohol) membrane was 1.76 ×
|
||||
10<sup>-5</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
, the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 ×
|
||||
10<sup>-6</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
, and the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 ×
|
||||
10<sup>-7</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
. Through analysis of the
|
||||
diaphragm cell lag period, it was found the incorporation of sodium decavanadate
|
||||
did not increase the reactivity of a poly(vinyl alcohol) hydrogel, and
|
||||
incorporation of alumina sulfate lowered the reactivity. These results indicate
|
||||
that polyoxometalate integration into hydrogel membranes is feasible, but does
|
||||
not provide any advantage to a bioremediation scenario.</p></details></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-presentation" data-bs-toggle=tooltip title=Poster></i></h3><a class="btn btn-secondary dogear" href=/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/metagenomics/>Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery</a></h3><strong>Thomas A. Christensen II</strong>,
|
||||
Kathy J. Austin,
|
||||
Kristi M. Cammack,
|
||||
Hannah C. Cunningham-Hollinger<br>Westion Section American Society of Animal Science Annual Meeting:
|
||||
Boise, Idaho
|
||||
(12 Jun 2019)<br>Keywords:
|
||||
<a href=#>gestation</a>
|
||||
<a href=#>metagenomics</a>
|
||||
<a href=#>microbiome</a>
|
||||
<a href=#>rumen</a><br><details><summary>Abstract</summary><p>Early colonization of the rumen microbiome is critical to host health and long
|
||||
term performance. Factors that influence early colonization include maternal
|
||||
factors such as gestational nutrition and mode of delivery. Therefore, we
|
||||
hypothesized that late gestational nutrition and mode of delivery would
|
||||
influence the calf rumen microbiome. Our objectives were to determine if
|
||||
nutrient restriction during late gestation alters the calf rumen microbiome and
|
||||
determine if ruminal microbiome composition differs in calves born vaginally
|
||||
versus caesarean. Late gestating Angus cows were randomly allocated to one of
|
||||
three treatment groups: control (<strong>CON</strong>; n = 6), caesarean section (<strong>CS</strong>; n =
|
||||
4), and nutrient restricted (<strong>NR</strong>; n = 5), where CON were fed DDGS and hay to
|
||||
meet NRC requirements and calved naturally; CS were fed similarly to CON and
|
||||
calves were born via caesarean section; and NR were fed at a level to reduce BCS
|
||||
by 1.5-2.0 points over the last trimester compared to CON and calved naturally.
|
||||
Rumen fluid was collected via oral lavage prior to partition from cows and at d
|
||||
7 from calves. Microbial DNA was isolated from the rumen fluid and metagenomic
|
||||
shotgun sequencing was performed using the Illumina HiSeq 2500 platform.
|
||||
Sequence data were analyzed using Metaxa2 for taxonomic assignment followed by
|
||||
QIIME1 and QIIME2 to determine differential abundance and alpha- and
|
||||
beta-diversity differences. There were no significant differences in
|
||||
alpha-diversity as measured by shannon index across treatment groups for cows
|
||||
(<em>P</em> = 0.239), but there were significant differences for calves (<em>P</em> = 0.015).
|
||||
Similarly, there were no significant differences in beta-diversity as measured
|
||||
by the bray-curtis dissimilarity matrix for cows (<em>P</em> = 0.059), but there were
|
||||
significant differences for calves (<em>P</em> = 0.007). Alpha-diversity differed (<em>P</em>
|
||||
< 0.001) between cows and calves, with cows having increased species richness
|
||||
compared to calves. Beta-diversity also differed (<em>P</em> = 0.001) between cows and
|
||||
calves. At total of 410 taxa were differentially abundant (<em>P</em> < 0.01) between
|
||||
cows and calves. These results suggest that the mature rumen microbiome of cows
|
||||
is able to withstand changes in feed intake, however the calf microbiome is
|
||||
susceptible to alteration by maternal factors. These data also suggest that
|
||||
there may be opportunities to develop management strategies during late
|
||||
gestation that influence calf health and performance long-term.</p></details></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-graduation-cap" data-bs-toggle=tooltip title=Thesis></i></h3><a class="btn btn-secondary dogear" href=/academia/cheme-car/cud_cheme_car_web.pdf data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/cheme-car/>The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal</a></h3><strong>Thomas A. Christensen II</strong><br>University of Wyoming Honors Program:
|
||||
Laramie, Wyoming
|
||||
(14 May 2019)<br>Keywords:
|
||||
<a href=#>chemical engineering</a>
|
||||
<a href=#>AIChE</a>
|
||||
<a href=#>radiation</a>
|
||||
<a href=#>rumen</a>
|
||||
<a href=#>microbial electrolysis cells</a><br><details><summary>Abstract</summary><p>The ChemE Car That Cud showcases Wyoming’s dominant industries of agriculture
|
||||
and mining by utilizing rumen fluid from a cannulated beef cow to generate
|
||||
hydrogen to be used in a hydrogen fuel cell and radioactive cesium, a byproduct
|
||||
of uranium that is often obtained from Wyoming’s mines, to time the car’s stop.
|
||||
The concentration of cesium-137 source is measured using the radioactive decay
|
||||
of cesium shielded by aluminum. The painted aluminum chassis was obtained from a
|
||||
previous team at UW, and modified using plastic k’nex toys to adapt to the
|
||||
current power source and stopping mechanism.</p></details></div></div><hr><h2>Other Presentations</h2><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-book" data-bs-toggle=tooltip title=Paper></i></h3><a class="btn btn-secondary dogear" href=https://doi.org/10.1021/acsestengg.2c00107 data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/hydronium-pva/>Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation</a></h3>Carson J. Silsby,
|
||||
Jonathan R. Counts,
|
||||
<strong>Thomas A. Christensen II</strong>,
|
||||
Mark F. Roll,
|
||||
Kristopher V. Waynant,
|
||||
James G. Moberly<br>ACS ES&T Engineering:
|
||||
(02 Sep 2022)<br>Keywords:
|
||||
<a href=#>diffusion</a>
|
||||
<a href=#>hydrogels</a>
|
||||
<a href=#>ionic strength</a>
|
||||
<a href=#>polymers</a>
|
||||
<a href=#>transport properties</a><br></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-presentation" data-bs-toggle=tooltip title=Poster></i></h3><a class="btn btn-secondary dogear" href=/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf data-bs-toggle=tooltip title="Full text"><i class="fad fa-file-alt"></i></a></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/pva-aiche/>Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate</a></h3><strong>Thomas A. Christensen II</strong>,
|
||||
Samuel R. Wolfe,
|
||||
Jonathan Counts,
|
||||
Mark F. Roll,
|
||||
Kristopher V. Waynant,
|
||||
James G. Moberly<br>AIChE Annual Meeting:
|
||||
Pittsburgh, Pennsylvania
|
||||
(29 Oct 2018)<br>Keywords:
|
||||
<a href=#>bioremediation</a>
|
||||
<a href=#>polyoxometalate</a>
|
||||
<a href=#>hydrogel polymers</a>
|
||||
<a href=#>proton transport</a>
|
||||
<a href=#>chemical engineering</a><br></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-podium" data-bs-toggle=tooltip title=Presentation></i></h3></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/how-to-build-a-cow-cud-fuel-cell/>How to Build a Cow-Cud Fuel Cell</a></h3><strong>Thomas A. Christensen II</strong><br>Idaho INBRE Summer Research Conference:
|
||||
Moscow, Idaho
|
||||
(01 Aug 2018)<br></div></div><div class="d-flex py-2"><div class=px-2><h3><i class="fad fa-fw fa-presentation" data-bs-toggle=tooltip title=Poster></i></h3></div><div class="flex-grow-1 px-2"><h3><a href=https://millironx.com/academia/pva-inbre/>Measuring diffusion of protons in polyvinyalginate</a></h3><strong>Thomas A. Christensen II</strong>,
|
||||
Jonathan Counts,
|
||||
James G. Moberly<br>Idaho INBRE Summer Research Conference:
|
||||
Moscow, Idaho
|
||||
(31 Jul 2018)<br></div></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
1
academia/index.xml
Normal file
47
academia/metagenomics/index.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>Westion Section American Society of Animal Science Annual Meeting: Boise, Idaho</h5><h2>Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li><li class=list-inline-item>Kathy J. Austin</li><li class=list-inline-item>Kristi M. Cammack</li><li class=list-inline-item>Hannah C. Cunningham-Hollinger</li></ul></small></h3><h4>June 12, 2019</h4><p>Early colonization of the rumen microbiome is critical to host health and long
|
||||
term performance. Factors that influence early colonization include maternal
|
||||
factors such as gestational nutrition and mode of delivery. Therefore, we
|
||||
hypothesized that late gestational nutrition and mode of delivery would
|
||||
influence the calf rumen microbiome. Our objectives were to determine if
|
||||
nutrient restriction during late gestation alters the calf rumen microbiome and
|
||||
determine if ruminal microbiome composition differs in calves born vaginally
|
||||
versus caesarean. Late gestating Angus cows were randomly allocated to one of
|
||||
three treatment groups: control (<strong>CON</strong>; n = 6), caesarean section (<strong>CS</strong>; n =
|
||||
4), and nutrient restricted (<strong>NR</strong>; n = 5), where CON were fed DDGS and hay to
|
||||
meet NRC requirements and calved naturally; CS were fed similarly to CON and
|
||||
calves were born via caesarean section; and NR were fed at a level to reduce BCS
|
||||
by 1.5-2.0 points over the last trimester compared to CON and calved naturally.
|
||||
Rumen fluid was collected via oral lavage prior to partition from cows and at d
|
||||
7 from calves. Microbial DNA was isolated from the rumen fluid and metagenomic
|
||||
shotgun sequencing was performed using the Illumina HiSeq 2500 platform.
|
||||
Sequence data were analyzed using Metaxa2 for taxonomic assignment followed by
|
||||
QIIME1 and QIIME2 to determine differential abundance and alpha- and
|
||||
beta-diversity differences. There were no significant differences in
|
||||
alpha-diversity as measured by shannon index across treatment groups for cows
|
||||
(<em>P</em> = 0.239), but there were significant differences for calves (<em>P</em> = 0.015).
|
||||
Similarly, there were no significant differences in beta-diversity as measured
|
||||
by the bray-curtis dissimilarity matrix for cows (<em>P</em> = 0.059), but there were
|
||||
significant differences for calves (<em>P</em> = 0.007). Alpha-diversity differed (<em>P</em>
|
||||
< 0.001) between cows and calves, with cows having increased species richness
|
||||
compared to calves. Beta-diversity also differed (<em>P</em> = 0.001) between cows and
|
||||
calves. At total of 410 taxa were differentially abundant (<em>P</em> < 0.01) between
|
||||
cows and calves. These results suggest that the mature rumen microbiome of cows
|
||||
is able to withstand changes in feed intake, however the calf microbiome is
|
||||
susceptible to alteration by maternal factors. These data also suggest that
|
||||
there may be opportunities to develop management strategies during late
|
||||
gestation that influence calf health and performance long-term.</p><div class="card border-dark m-3 p-3"><a href=/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf>/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf</a>
|
||||
<iframe src=/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
33
academia/pva-aiche/index.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>AIChE Annual Meeting: Pittsburgh, Pennsylvania</h5><h2>Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li><li class=list-inline-item>Samuel R. Wolfe</li><li class=list-inline-item>Jonathan Counts</li><li class=list-inline-item>Mark F. Roll</li><li class=list-inline-item>Kristopher V. Waynant</li><li class=list-inline-item>James G. Moberly</li></ul></small></h3><h4>October 29, 2018</h4><p>Trichloroethylene (TCE), a toxic and carcinogenic contaminant, presents unique
|
||||
challenges for cleanup because of its water solubility, density, and volatility.
|
||||
Bioremediation of TCE is a promising cleanup method; however, metabolism of TCE
|
||||
results in acid generation that inhibits remediating microorganisms. Calcium
|
||||
alginate(CA)-polyvinylalcohol (PVA) hydrogels show promise for protecting
|
||||
remediating microbes, however diffusion of TCE or its byproducts through these
|
||||
polymers is unknown. To measure the effective diffusion coefficient of TCE and
|
||||
byproducts through hydrogel membranes, we used a modified diaphragm cell.
|
||||
Measured effective diffusion coefficient of each species was (cm <sup>2</sup>
|
||||
/s
|
||||
× 10<sup>6</sup>
|
||||
): 14.0 ± 1.91 for H<sup>+</sup>
|
||||
ions, 12.4 ± 1.64 for TCE,
|
||||
7.83 ± 0.54 for cis-1,2-dichloroethylene (DCE), and 4.68 ± 4.14 for vinyl
|
||||
chloride. These results aid in engineering biobeads and suggest that CA-PVA
|
||||
hydrogel blends are effective in slowing diffusion of protons, buffering acids
|
||||
produced by trichloroethylene metabolism, and remains suitable for encapsulation
|
||||
of microorganisms involved in bioremediation.</p><div class="card border-dark m-3 p-3"><a href=/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf>/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf</a>
|
||||
<iframe src=/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
35
academia/pva-inbre/index.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Measuring diffusion of protons in polyvinyalginate - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>Idaho INBRE Summer Research Conference: Moscow, Idaho</h5><h2>Measuring diffusion of protons in polyvinyalginate</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li><li class=list-inline-item>Jonathan Counts</li><li class=list-inline-item>James G. Moberly</li></ul></small></h3><h4>July 31, 2018</h4><p>Trichloroethylene (TCE) is a toxic and carcinogenic contaminant that presents
|
||||
unique challenges for cleanup because of its density and volatility. Use of
|
||||
microorganisms may be a promising remediation method, however metabolism of TCE
|
||||
results in acid buildup, which consequently impedes the ability of
|
||||
microorganisms to perform this remediation. Polyvinylalginate (PVA) shows
|
||||
promise as a useful shield for microorganisms carrying out bioremediation of TCE
|
||||
by surrounding them in a protective biofilm-like layer, however, key information
|
||||
is missing which relates diffusion of TCE or its metabolic products through PVA.
|
||||
To measure the effective diffusion coefficient of H<sup>+</sup>
|
||||
ions through
|
||||
a PVA membrane cross-linked with boric acid and calcium ions, we used a modified
|
||||
diaphragm cell. We found the effective diffusion coefficient to be 1.40 ×
|
||||
10<sup>-5</sup>
|
||||
± 1.91 × 10<sup>-6</sup>
|
||||
cm<sup>2</sup>
|
||||
s, a nearly
|
||||
seven-fold decrease in diffusivity compared to protons in water, with an
|
||||
unexpected significant but as of yet unquantified adsorption capacity. These
|
||||
results suggest that polyvinylalginate is effective in slowing diffusion of
|
||||
protons and buffering these acids produced by trichloroethylene metabolism, and
|
||||
remains suitable for encapsulation of microorganisms involved in bioremediation.</p></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
39
academia/rotavirus-virome/index.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>Veterinary Microbiology</h5><h2>Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease</h2><h3><small><ul class=list-inline><li class=list-inline-item>Tyler Doerksen</li><li class=list-inline-item>Thomas A. Christensen II</li><li class=list-inline-item>Andrea Lu</li><li class=list-inline-item>Lance Noll</li><li class=list-inline-item>Jianfa Bai</li><li class=list-inline-item>Jamie Henningson</li><li class=list-inline-item>Rachel Palinski</li></ul></small></h3><h4>April 27, 2022</h4><p>Enteric disease is the predominant cause of morbidity and mortality in young
|
||||
mammals including pigs. Viral species involved in porcine enteric disease
|
||||
complex (PEDC) include rotaviruses, coronaviruses, picornaviruses, astroviruses
|
||||
and pestiviruses among others. The virome of three groups of swine samples
|
||||
submitted to the Kansas State University Veterinary Diagnostic Laboratory for
|
||||
routine testing were assessed, namely, a Rotavirus A positive (RVA) group, a
|
||||
Rotavirus co-infection (RV) group and a Rotavirus Negative (RV Neg) group. All
|
||||
groups were designated by qRT-PCR results testing for Porcine Rotavirus A, B, C
|
||||
and H such that samples positive for RVA only went in the RVA group, samples
|
||||
positive for >1 rotavirus went in the RV group and samples negative for all were
|
||||
grouped in the RVNeg group. All of the animals had clinical enteric disease
|
||||
resulting in scours and swollen joints/lameness, enlarged heart and/or a cough.
|
||||
All samples were metagenomic sequenced and analyzed for viral species
|
||||
composition that identified 14 viral species and eight bacterial viruses/phages.
|
||||
Sapovirus and Escherichia coli phages were found at a high prevalence in RVA and
|
||||
RV samples but were found at low or no prevalence in the RV Neg samples.
|
||||
Picobirnavirus was identified at a high proportion and prevalence in RV Neg and
|
||||
RV samples but at a low prevalence in the RVA group. A sequence analysis of the
|
||||
possible host of Picobirnaviruses revealed fungi as the most likely host.
|
||||
Non-rotaviral diversity was highest in RVA samples followed by RV then RV Neg
|
||||
samples. Various sequences were extracted from the sample reads and a
|
||||
phylogenetic update was provided showing a high prevalence of G9 and P[23] RVA
|
||||
genotypes. These data are important for pathogen surveillance and control
|
||||
measures</p><div class="card border-dark m-3 p-3"><a href=https://doi.org/10.1016/j.vetmic.2022.109447>https://doi.org/10.1016/j.vetmic.2022.109447</a>
|
||||
<iframe src=https://doi.org/10.1016/j.vetmic.2022.109447 style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
45
academia/thesis/index.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><section class="container-fluid list-main"><div class="container px-5"><h5>University of Idaho: Moscow, Idaho</h5><h2>Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers</h2><h3><small><ul class=list-inline><li class=list-inline-item>Thomas A. Christensen II</li></ul></small></h3><h4>August 7, 2020</h4><p>Polyoxometalate clusters embedded into hydrogel biobeads may be able to solve
|
||||
the challenges posed by free proton generation during remediation of
|
||||
trichloroethylene by acting as buffers and reducing protons to hydrogen gas. In
|
||||
this thesis, the challenges posed by systems that contain both diffusion and
|
||||
reaction processes for protons are considered mathematically, and a computer
|
||||
simulation to was developed to prove the relationship between diaphragm cell lag
|
||||
period and reactive capabilities of membranes. Two polyoxometalate compounds,
|
||||
sodium decavanadate and alumina sulfate, were successfully incorporated into a
|
||||
poly(vinyl alcohol) hydrogel membrane, and the diffusivity changes associated
|
||||
with each compound was determined. It was found that the diffusivity of protons
|
||||
through an unmodified 10% w/v poly(vinyl alcohol) membrane was 1.76 ×
|
||||
10<sup>-5</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
, the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 ×
|
||||
10<sup>-6</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
, and the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 ×
|
||||
10<sup>-7</sup>
|
||||
cm<sup>2</sup>
|
||||
s<sup>-1</sup>
|
||||
. Through analysis of the
|
||||
diaphragm cell lag period, it was found the incorporation of sodium decavanadate
|
||||
did not increase the reactivity of a poly(vinyl alcohol) hydrogel, and
|
||||
incorporation of alumina sulfate lowered the reactivity. These results indicate
|
||||
that polyoxometalate integration into hydrogel membranes is feasible, but does
|
||||
not provide any advantage to a bioremediation scenario.</p><div class="card border-dark m-3 p-3"><a href=https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2>https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2</a>
|
||||
<iframe src=https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2 style=width:100%;height:75vh></iframe></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
20
ai/index.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Artificial Insemination - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><div class=blurred-container><div class=motto><h1 id=motto>Artificial Insemination</h1></div><div class=img-src style=background-image:url(/images/Ai-calf.jpg)></div><div class="img-src blur" style=background-image:url(/images/Ai-calf_hu1143faa57f5b1acd11a97eda612b56ee_469394_filter_6742909828560968691.jpg)></div></div><br><section class="container-fluid list-main"><div class="container px-5"><p>I am licensed in the Great State of Wyoming as a food animal artificial
|
||||
insemination technician, which means I can legally AI cows, goats, and sheep.
|
||||
Practically speaking, I have only ever AIed cows, but my conception rates are
|
||||
very good for both beef and dairy cows. When (if?) I standardize my rates, I
|
||||
will include them here. Until then, you will have to <a href=/contact>contact me</a>
|
||||
directly and we can negotiate prices then.</p></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
1
ai/index.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Artificial Insemination on MillironX</title><link>https://millironx.com/ai/</link><description>Recent content in Artificial Insemination on MillironX</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://millironx.com/ai/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
@ -1,20 +0,0 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
cardImage: library
|
||||
draft: true
|
||||
featured: false
|
||||
keywords:
|
||||
- smart
|
||||
- profound
|
||||
type: "Journal Article"
|
||||
authors:
|
||||
- Christensen, Thomas Allen, II
|
||||
link: 'https://dx.doi.org/...'
|
||||
journal: "Journal of Hard Knocks"
|
||||
location: "Life"
|
||||
awards:
|
||||
- 'Everything is Awesome 2020'
|
||||
---
|
||||
|
||||
Abstract goes here
|
Before Width: | Height: | Size: 256 KiB |
Before Width: | Height: | Size: 365 KiB |
|
@ -1,74 +0,0 @@
|
|||
import { library, icon, config, dom } from "@fortawesome/fontawesome-svg-core";
|
||||
import {
|
||||
faBook,
|
||||
faBrowser,
|
||||
faComment,
|
||||
faEllipsis,
|
||||
faFileAlt,
|
||||
faFileSignature,
|
||||
faGraduationCap,
|
||||
faHome,
|
||||
faNotebook,
|
||||
faPodium,
|
||||
faPresentation,
|
||||
faUniversity,
|
||||
faUserAstronaut,
|
||||
faVideo,
|
||||
faW,
|
||||
} from "@fortawesome/pro-duotone-svg-icons";
|
||||
import {
|
||||
faDiscord,
|
||||
faGithub,
|
||||
faGitlab,
|
||||
faGolang,
|
||||
faHtml5,
|
||||
faOrcid,
|
||||
faStackOverflow,
|
||||
faSteam,
|
||||
faVimeo,
|
||||
} from "@fortawesome/free-brands-svg-icons";
|
||||
|
||||
config.familyDefault = "duotone";
|
||||
config.styleDefault = "duotone";
|
||||
|
||||
const faBullSperm = {
|
||||
prefix: "fax",
|
||||
iconName: "bull-sperm",
|
||||
icon: [
|
||||
512,
|
||||
512,
|
||||
[],
|
||||
null,
|
||||
"M96 32c-6.691.363-12.375 4.062-15.375 7.062l-64 64c-12.8 12.8-5.333 26.667 0 32l96 64c10.3 10.301 22.938 4.887 37.563-7.812 8.635 9.735 16.63 18.38 23.125 24.875 8.33 8.33 23.436 16.284 41.75 24.313 18.313 8.028 39.82 16.065 60.812 24.062 20.992 7.997 41.474 15.986 57.625 23.938 16.15 7.95 27.882 16.013 31.5 23.25 6.52 13.038 26.468 44.939 48.875 79.75 22.32 34.674 46.99 72.043 63 96.062.02.029.042.096.064.125.045.064.144.185.189.25l2.812-1.5c-10.685-26.697-28.285-68.26-46.44-106.437-18.155-38.179-36.666-72.792-49.937-86.063-16.566-16.566-56.5-32.375-96.5-48.375s-80.066-32.19-95.5-47.625c-6.45-6.45-14.409-15.11-23.063-24.875 12.926-14.779 18.51-27.552 8.125-37.938-16-26.666-51.2-83.2-64-96-5.6-5.6-11.42-7.345-16.625-7.062zm372.688 436.75c.201.487.488 1.079.687 1.563-.291-.44-.644-.995-.937-1.438.023-.012.06.001.064 0 .002 0 .185-.06.188-.064.002-.001-.011-.038 0-.064z",
|
||||
],
|
||||
};
|
||||
|
||||
library.add(
|
||||
faBook,
|
||||
faBrowser,
|
||||
faBullSperm,
|
||||
faComment,
|
||||
faDiscord,
|
||||
faEllipsis,
|
||||
faFileAlt,
|
||||
faFileSignature,
|
||||
faGithub,
|
||||
faGitlab,
|
||||
faGolang,
|
||||
faGraduationCap,
|
||||
faHome,
|
||||
faHtml5,
|
||||
faNotebook,
|
||||
faOrcid,
|
||||
faPodium,
|
||||
faPresentation,
|
||||
faStackOverflow,
|
||||
faSteam,
|
||||
faUniversity,
|
||||
faUserAstronaut,
|
||||
faVideo,
|
||||
faVimeo,
|
||||
faW
|
||||
);
|
||||
|
||||
dom.i2svg();
|
|
@ -1 +0,0 @@
|
|||
$("#phone").mask("(000) 000-0000");
|
|
@ -1,5 +0,0 @@
|
|||
$(window).scroll(function (e) {
|
||||
oVal = $(window).scrollTop() / 170;
|
||||
$(".blur").css("opacity", oVal);
|
||||
});
|
||||
$("#motto").fitText();
|
|
@ -1,6 +0,0 @@
|
|||
var tooltipTriggerList = [].slice.call(
|
||||
document.querySelectorAll('[data-bs-toggle="tooltip"]')
|
||||
);
|
||||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
||||
return new bootstrap.Tooltip(tooltipTriggerEl);
|
||||
});
|
|
@ -1,123 +0,0 @@
|
|||
.blurred-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-height: 35vh;
|
||||
height: 350px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.blurred-container .motto {
|
||||
color: #fff;
|
||||
font-size: 76px;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
|
||||
text-transform: uppercase;
|
||||
top: 7.5vh;
|
||||
z-index: 3;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
width: 60%;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.motto h1 {
|
||||
background: #0000007d;
|
||||
}
|
||||
|
||||
.blurred-container .img-src {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
min-height: 35vh;
|
||||
height: 350px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
.blur {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.list-main {
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/* Gives me greater control over fonts */
|
||||
.font-serif {
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
}
|
||||
|
||||
.font-sans {
|
||||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.font-mono {
|
||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||
}
|
||||
|
||||
.font-small-caps {
|
||||
font-variant-caps: small-caps;
|
||||
}
|
||||
|
||||
.strikethrough {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.sfTable {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.text-align-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-align-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.media-object {
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.pull-left {
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.w-md-50 {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
h1 small {
|
||||
font-size: 60%;
|
||||
color: #9a9a9a;
|
||||
font-weight: 300;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight: 400;
|
||||
margin: 30px 0 15px;
|
||||
}
|
||||
|
||||
.dogear {
|
||||
clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
|
||||
}
|
||||
|
||||
.fa-stack-top {
|
||||
vertical-align: top;
|
||||
}
|
15
categories/index.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Categories - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><div class=blurred-container><div class=motto><h1 id=motto></h1></div><div class=img-src style=background-image:url(/images/saddles.jpg)></div><div class="img-src blur" style=background-image:url(/images/saddles_hu1143faa57f5b1acd11a97eda612b56ee_388130_filter_6742909828560968691.jpg)></div></div><br><section class="container-fluid list-main"><div class="container px-5"></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
1
categories/index.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on MillironX</title><link>https://millironx.com/categories/</link><description>Recent content in Categories on MillironX</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://millironx.com/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
61
config.toml
|
@ -1,61 +0,0 @@
|
|||
baseURL = "https://millironx.com"
|
||||
languageCode = "en-us"
|
||||
title = "MillironX"
|
||||
paginate = 5
|
||||
|
||||
[build]
|
||||
writeStats = true
|
||||
|
||||
[Params]
|
||||
cardImage = "saddles"
|
||||
motto = ""
|
||||
|
||||
[module]
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/graphics"
|
||||
target = "assets/graphics"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/images"
|
||||
target = "assets/images"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/scripts"
|
||||
target = "assets/scripts"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/styles"
|
||||
target = "assets/styles"
|
||||
|
||||
[[modules.mounts]]
|
||||
source = "assets/scripts/custom"
|
||||
target = "assets/scripts/custom"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@fortawesome/fontawesome-pro/js"
|
||||
target = "assets/scripts/fontawesome"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@popperjs/core/dist/umd"
|
||||
target = "assets/scripts/popper"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/scss"
|
||||
target = "assets/styles/bootstrap"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/dist/js"
|
||||
target = "assets/scripts/bootstrap"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/fittext.js"
|
||||
target = "assets/scripts/fittext"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery/dist"
|
||||
target = "assets/scripts/jquery"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery-mask-plugin/dist"
|
||||
target = "assets/scripts/jquery-mask-plugin"
|
18
contact/index.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Contact Me - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><div class=blurred-container><div class=motto><h1 id=motto>Contact Me</h1></div><div class=img-src style=background-image:url(/images/venice-mailbox.jpg)></div><div class="img-src blur" style=background-image:url(/images/venice-mailbox_huaca7206bc3a55ef0548c2d4a3e1778c4_598517_filter_6742909828560968691.jpg)></div></div><br><section class="container-fluid list-main"><div class="container px-5"><form class=form-horizontal action=https://usebasin.com/f/787df7bfd22e method=post><fieldset><legend>Contact Me</legend>
|
||||
<input type=hidden name=_gotcha><div class=form-group><label for=name class="col-lg-2 control-label">Name</label><div class=col-lg-10><input type=text class=form-control id=name name=name placeholder="Jay Lush" required></div></div><div class=form-group><label for=email class="col-lg-2 control-label">Email</label><div class=col-lg-10><input type=email class=form-control id=email name=email placeholder=jlush@iastate.edu required></div></div><div class=form-group><label for=phone class="col-lg-2 control-label">Phone number</label><div class=col-lg-10><input type=tel class=form-control id=phone name=phone placeholder="(515) 294-2160"></div></div><div class=form-group><label for=subject class="col-lg-2 control-label">Subject</label><div class=col-lg-10><input type=text class=form-control id=subject name=subject placeholder="Beef genetics" required></div></div><div class=form-group><label for=message class="col-lg-2 control-label">Message</label><div class=col-lg-10><textarea rows=5 class="form-control font-sans" id=message name=body required style=min-height:72pt></textarea></div></div><div class=form-group><div class="col-lg-10 col-lg-offset-2"><button type=reset class="btn btn-default">Cancel</button>
|
||||
<button type=submit class="btn btn-primary pageclip-form__submit">
|
||||
<span>Submit</span></button></div></div></fieldset></form></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
1
contact/index.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Contact Me on MillironX</title><link>https://millironx.com/contact/</link><description>Recent content in Contact Me on MillironX</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://millironx.com/contact/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
|
@ -1,164 +0,0 @@
|
|||
---
|
||||
title: Home
|
||||
cardImage: charolette
|
||||
motto: <small>My name is Thomas Christensen</small><br />I am Milliron X
|
||||
description: The homepage of Thomas A. Christensen II
|
||||
layout: _default/list
|
||||
---
|
||||
|
||||
<h2>What is a "Milliron X"?</h2>
|
||||
|
||||
<h3>
|
||||
It's a
|
||||
<a href="https://en.wikipedia.org/wiki/Livestock_branding">cattle brand</a>,
|
||||
of course! My cattle brand!
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
The <dfn>milliron</dfn> is the bar with a bend in the middle. It does not
|
||||
represent anything physical or textual <i>per se</i>, and is therefore a
|
||||
rather unique element in cattle brands. Millirons are difficult to modify into
|
||||
another brand, and provide a guarantee of authentic ownership.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<dfn>X</dfn> is the letter of mystery and mystique. For nerds, it's the
|
||||
unknown in any algebra problem. Ranchers and cowboys will associate it with
|
||||
big names like the "Bar X" and the "Double X." In either case, it lends itself
|
||||
to a sense of withholding, prestige, and power.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Together, these two symbols represent the qualities I strive for in each of my
|
||||
works: authenticity, originality, power, depth, and prestige.
|
||||
</p>
|
||||
|
||||
<h2>Who am I?</h2>
|
||||
|
||||
{{% imgproc me-and-lady Resize "768x" "float-md-end w-md-50 p-3" %}}
|
||||
Image courtesy [Guy McCutcheon Photography](https://www.guymccutcheon.com/)
|
||||
{{% /imgproc %}}
|
||||
|
||||
|
||||
<p>I am</p>
|
||||
|
||||
<ul>
|
||||
<li>🧬 A bioinformatician (by profession)</li>
|
||||
<li>📐 An engineer (by education)</li>
|
||||
<li>🐂 A rancher (by lifestyle)</li>
|
||||
<li>🖥️ A techie (self-taught)</li>
|
||||
<li>🎥 And a filmmaker (at heart)</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
I've got a soft spot for Brown Swiss dairy cows (just in case you couldn't
|
||||
tell by the pictures), and am sometimes called "one of those crazy, Wyoming
|
||||
dairy cow people." I love anything to do with cattle or technology, but
|
||||
especially anything to do with both of them.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<em>
|
||||
<abbr
|
||||
title="Born again, fundamentalist, dispensationalist, King James Bible-believing, independent Baptist"
|
||||
>Christian</abbr
|
||||
>, American, Convervative, Pro-gun, Heterosexual - any questions?
|
||||
</em>
|
||||
</p>
|
||||
|
||||
<h2>Where am I?</h2>
|
||||
|
||||
{{% imgproc wy-in-ks Resize "768x" "float-md-start w-md-50 p-3" /%}}
|
||||
|
||||
<p>
|
||||
I am a Wyomingite sojurning in Kansas. That ought to lead to some interesting
|
||||
stories.
|
||||
</p>
|
||||
|
||||
Around the web you can find me at (in order of subjective importance)
|
||||
|
||||
<ul class="float-md-end w-md-50">
|
||||
<li>
|
||||
<i class="fab fa-fw fa-github"></i> GitHub:
|
||||
<a href="https://github.com/MillironX">@MillironX</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-orcid"></i>
|
||||
ORCiD:
|
||||
<a href="https://orcid.org/0000-0003-1219-9320">0000-0003-1219-9320</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-gitlab"></i>
|
||||
GitLab: <a href="https://gitlab.com/MillironX">@MillironX</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-vimeo"></i>
|
||||
Vimeo: <a href="https://vimeo.com/tchristensenii">Thomas Christensen II</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-stack-overflow"></i>
|
||||
Stack Exchange:
|
||||
<a href="https://stackexchange.com/users/4863541/milliron-x">Milliron X</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fad fa-fw fa-user-astronaut"></i>
|
||||
Odysee: <a href="https://odysee.com/@millironx:f">@millironx</a>
|
||||
</li>
|
||||
<li>
|
||||
<span class="fa-layers fa-fw">
|
||||
<i class="fad fa-fw fa-comment"></i>
|
||||
<span class="fa-layers-text" data-fa-transform="shrink-6 up-2">g</span>
|
||||
</span>
|
||||
Gab: <a href="https://gab.com/millironx">@MillironX</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-steam"></i>
|
||||
Steam: <a href="https://steamcommunity.com/id/millironx">MillironX</a>
|
||||
</li>
|
||||
<li>
|
||||
<span class="fa-layers fa-fw">
|
||||
<i class="fad fa-fw fa-w" data-fa-transform="shrink-2 down-2"></i>
|
||||
<i class="fad fa-fw fa-ellipsis" data-fa-transform="grow-3 up-8"></i>
|
||||
</span>
|
||||
MeWe:
|
||||
<a href="https://mewe.com/i/thomaschristensenii">Thomas Christensen II</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fab fa-fw fa-discord"></i>
|
||||
Discord:
|
||||
<a href="https://discord.com/users/484492414837587978">@MillironX</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="card border-warning m-3">
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
This list is intended to verify my identity on other sites. Please do
|
||||
<em>not</em> use it as fodder to try and "follow" me on each of these
|
||||
platforms. I stand with RMS:
|
||||
</p>
|
||||
<figure>
|
||||
<blockquote class="blockquote">
|
||||
<p>
|
||||
Facebook is a bad place for a person to be. When people find us on
|
||||
Facebook, we lead them away from Facebook and then talk with them
|
||||
elsewhere.
|
||||
</p>
|
||||
</blockquote>
|
||||
<figcaption class="blockquote-footer">
|
||||
Richard Stallman in
|
||||
<cite
|
||||
><a href="https://stallman.org/facebook-presence.html"
|
||||
>If you feel your organization needs a 'presence' in Facebook</a
|
||||
></cite
|
||||
>
|
||||
</figcaption>
|
||||
</figure>
|
||||
<p class="card-text">
|
||||
I typically don't respond to inqueries made on these platforms. Please use
|
||||
<a href="/contact">my contact form</a>, instead.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
title: Academic Publications and Presentations
|
||||
motto: Academic Publications and Presentations
|
||||
cardImage: library
|
||||
---
|
||||
|
||||
### Academic Papers
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
title: "The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal"
|
||||
date: 2019-05-14
|
||||
cardImage: cannulated-cows
|
||||
draft: false
|
||||
featured: true
|
||||
keywords:
|
||||
- chemical engineering
|
||||
- AIChE
|
||||
- radiation
|
||||
- rumen
|
||||
- microbial electrolysis cells
|
||||
medium: thesis
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
link: "/academia/cheme-car/cud_cheme_car_web.pdf"
|
||||
journal: "University of Wyoming Honors Program"
|
||||
location: "Laramie, Wyoming"
|
||||
---
|
||||
|
||||
The ChemE Car That Cud showcases Wyoming's dominant industries of agriculture
|
||||
and mining by utilizing rumen fluid from a cannulated beef cow to generate
|
||||
hydrogen to be used in a hydrogen fuel cell and radioactive cesium, a byproduct
|
||||
of uranium that is often obtained from Wyoming's mines, to time the car's stop.
|
||||
The concentration of cesium-137 source is measured using the radioactive decay
|
||||
of cesium shielded by aluminum. The painted aluminum chassis was obtained from a
|
||||
previous team at UW, and modified using plastic k'nex toys to adapt to the
|
||||
current power source and stopping mechanism.
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "How to Build a Cow-Cud Fuel Cell"
|
||||
date: 2018-08-01
|
||||
cardImage: library
|
||||
draft: false
|
||||
featured: false
|
||||
medium: presentation
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
journal: "Idaho INBRE Summer Research Conference"
|
||||
location: "Moscow, Idaho"
|
||||
awards:
|
||||
- "3rd Place Fast-Pitch Science Presentation Contest"
|
||||
---
|
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
title: "Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation"
|
||||
date: 2022-09-02
|
||||
featured: false
|
||||
keywords:
|
||||
- diffusion
|
||||
- hydrogels
|
||||
- ionic strength
|
||||
- polymers
|
||||
- transport properties
|
||||
medium: paper
|
||||
authors:
|
||||
- Carson J. Silsby
|
||||
- Jonathan R. Counts
|
||||
- Thomas A. Christensen II
|
||||
- Mark F. Roll
|
||||
- Kristopher V. Waynant
|
||||
- James G. Moberly
|
||||
link: https://doi.org/10.1021/acsestengg.2c00107
|
||||
journal: "ACS ES&T Engineering"
|
||||
---
|
||||
|
||||
Bioremediation of chlorinated aliphatic hydrocarbon-contaminated aquifers can be hindered by high contaminant concentrations and acids generated during remediation. Encapsulating microbes in hydrogels may provide a protective, tunable environment from inhibiting compounds; however, current approaches to formulate successful encapsulated systems rely on trial and error rather than engineering approaches because fundamental information on mass-transfer coefficients is lacking. To address this knowledge gap, hydronium ion mass-transfer rates through two commonly used hydrogel materials, poly(vinyl alcohol) and alginic acid, under two solidification methods (chemical and cryogenic) were measured. Variations in hydrogel crosslinking conditions, polymer composition, and solvent ionic strength were investigated to understand how each influenced hydronium ion diffusivity. A three-way ANOVA indicated that the ionic strength, membrane type, and crosslinking method significantly (_p_ < 0.001) contributed to changes in hydronium ion mass transfer. Hydronium ion diffusion increased with ionic strength, counter to what is observed in aqueous-only (no polymer) solutions. Co-occurring mechanisms correlated to increased hydronium ion diffusion with ionic strength included an increased water fraction within hydrogel matrices and hydrogel contraction. Measured diffusion rates determined in this study provide first principal design information to further optimize encapsulating hydrogels for bioremediation.
|
|
@ -1,58 +0,0 @@
|
|||
---
|
||||
title:
|
||||
"Metagenomic analysis of rumen populations in week-old calves as altered by
|
||||
maternal late gestational nutrition and mode of delivery"
|
||||
date: 2019-06-12
|
||||
cardImage: cannulated-cows
|
||||
draft: false
|
||||
featured: true
|
||||
keywords:
|
||||
- gestation
|
||||
- metagenomics
|
||||
- microbiome
|
||||
- rumen
|
||||
medium: poster
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
- Kathy J. Austin
|
||||
- Kristi M. Cammack
|
||||
- Hannah C. Cunningham-Hollinger
|
||||
link: "/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf"
|
||||
journal: "Westion Section American Society of Animal Science Annual Meeting"
|
||||
location: "Boise, Idaho"
|
||||
awards:
|
||||
- "1st Place Undergraduate Poster Competition"
|
||||
---
|
||||
|
||||
Early colonization of the rumen microbiome is critical to host health and long
|
||||
term performance. Factors that influence early colonization include maternal
|
||||
factors such as gestational nutrition and mode of delivery. Therefore, we
|
||||
hypothesized that late gestational nutrition and mode of delivery would
|
||||
influence the calf rumen microbiome. Our objectives were to determine if
|
||||
nutrient restriction during late gestation alters the calf rumen microbiome and
|
||||
determine if ruminal microbiome composition differs in calves born vaginally
|
||||
versus caesarean. Late gestating Angus cows were randomly allocated to one of
|
||||
three treatment groups: control (**CON**; n = 6), caesarean section (**CS**; n =
|
||||
4), and nutrient restricted (**NR**; n = 5), where CON were fed DDGS and hay to
|
||||
meet NRC requirements and calved naturally; CS were fed similarly to CON and
|
||||
calves were born via caesarean section; and NR were fed at a level to reduce BCS
|
||||
by 1.5-2.0 points over the last trimester compared to CON and calved naturally.
|
||||
Rumen fluid was collected via oral lavage prior to partition from cows and at d
|
||||
7 from calves. Microbial DNA was isolated from the rumen fluid and metagenomic
|
||||
shotgun sequencing was performed using the Illumina HiSeq 2500 platform.
|
||||
Sequence data were analyzed using Metaxa2 for taxonomic assignment followed by
|
||||
QIIME1 and QIIME2 to determine differential abundance and alpha- and
|
||||
beta-diversity differences. There were no significant differences in
|
||||
alpha-diversity as measured by shannon index across treatment groups for cows
|
||||
(_P_ = 0.239), but there were significant differences for calves (_P_ = 0.015).
|
||||
Similarly, there were no significant differences in beta-diversity as measured
|
||||
by the bray-curtis dissimilarity matrix for cows (_P_ = 0.059), but there were
|
||||
significant differences for calves (_P_ = 0.007). Alpha-diversity differed (_P_
|
||||
< 0.001) between cows and calves, with cows having increased species richness
|
||||
compared to calves. Beta-diversity also differed (_P_ = 0.001) between cows and
|
||||
calves. At total of 410 taxa were differentially abundant (_P_ < 0.01) between
|
||||
cows and calves. These results suggest that the mature rumen microbiome of cows
|
||||
is able to withstand changes in feed intake, however the calf microbiome is
|
||||
susceptible to alteration by maternal factors. These data also suggest that
|
||||
there may be opportunities to develop management strategies during late
|
||||
gestation that influence calf health and performance long-term.
|
|
@ -1,44 +0,0 @@
|
|||
---
|
||||
title:
|
||||
"Measuring Diffusion of Trichlorethylene Breakdown Products in
|
||||
Polyvinylalginate"
|
||||
date: 2018-10-29
|
||||
cardImage: library
|
||||
draft: false
|
||||
featured: false
|
||||
keywords:
|
||||
- bioremediation
|
||||
- polyoxometalate
|
||||
- hydrogel polymers
|
||||
- proton transport
|
||||
- chemical engineering
|
||||
medium: poster
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
- Samuel R. Wolfe
|
||||
- Jonathan Counts
|
||||
- Mark F. Roll
|
||||
- Kristopher V. Waynant
|
||||
- James G. Moberly
|
||||
journal: "AIChE Annual Meeting"
|
||||
location: "Pittsburgh, Pennsylvania"
|
||||
awards:
|
||||
- "3rd Place Environmental III Division Undergraduate Poster Competition"
|
||||
link: /academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf
|
||||
---
|
||||
|
||||
Trichloroethylene (TCE), a toxic and carcinogenic contaminant, presents unique
|
||||
challenges for cleanup because of its water solubility, density, and volatility.
|
||||
Bioremediation of TCE is a promising cleanup method; however, metabolism of TCE
|
||||
results in acid generation that inhibits remediating microorganisms. Calcium
|
||||
alginate(CA)-polyvinylalcohol (PVA) hydrogels show promise for protecting
|
||||
remediating microbes, however diffusion of TCE or its byproducts through these
|
||||
polymers is unknown. To measure the effective diffusion coefficient of TCE and
|
||||
byproducts through hydrogel membranes, we used a modified diaphragm cell.
|
||||
Measured effective diffusion coefficient of each species was (cm {{< sup 2 >}}/s
|
||||
× 10{{< sup 6 >}}): 14.0 ± 1.91 for H{{< sup "+" >}} ions, 12.4 ± 1.64 for TCE,
|
||||
7.83 ± 0.54 for cis-1,2-dichloroethylene (DCE), and 4.68 ± 4.14 for vinyl
|
||||
chloride. These results aid in engineering biobeads and suggest that CA-PVA
|
||||
hydrogel blends are effective in slowing diffusion of protons, buffering acids
|
||||
produced by trichloroethylene metabolism, and remains suitable for encapsulation
|
||||
of microorganisms involved in bioremediation.
|
|
@ -1,32 +0,0 @@
|
|||
---
|
||||
title: "Measuring diffusion of protons in polyvinyalginate"
|
||||
date: 2018-07-31
|
||||
cardImage: library
|
||||
draft: false
|
||||
featured: false
|
||||
medium: poster
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
- Jonathan Counts
|
||||
- James G. Moberly
|
||||
journal: "Idaho INBRE Summer Research Conference"
|
||||
location: "Moscow, Idaho"
|
||||
---
|
||||
|
||||
Trichloroethylene (TCE) is a toxic and carcinogenic contaminant that presents
|
||||
unique challenges for cleanup because of its density and volatility. Use of
|
||||
microorganisms may be a promising remediation method, however metabolism of TCE
|
||||
results in acid buildup, which consequently impedes the ability of
|
||||
microorganisms to perform this remediation. Polyvinylalginate (PVA) shows
|
||||
promise as a useful shield for microorganisms carrying out bioremediation of TCE
|
||||
by surrounding them in a protective biofilm-like layer, however, key information
|
||||
is missing which relates diffusion of TCE or its metabolic products through PVA.
|
||||
To measure the effective diffusion coefficient of H{{< sup "+" >}} ions through
|
||||
a PVA membrane cross-linked with boric acid and calcium ions, we used a modified
|
||||
diaphragm cell. We found the effective diffusion coefficient to be 1.40 ×
|
||||
10{{< sup -5 >}} ± 1.91 × 10{{<sup -6 >}} cm{{< sup 2 >}}s, a nearly
|
||||
seven-fold decrease in diffusivity compared to protons in water, with an
|
||||
unexpected significant but as of yet unquantified adsorption capacity. These
|
||||
results suggest that polyvinylalginate is effective in slowing diffusion of
|
||||
protons and buffering these acids produced by trichloroethylene metabolism, and
|
||||
remains suitable for encapsulation of microorganisms involved in bioremediation.
|
|
@ -1,49 +0,0 @@
|
|||
---
|
||||
title:
|
||||
"Assessment of Porcine Rotavirus-associated virome variations in pigs with
|
||||
enteric disease"
|
||||
date: 2022-04-27
|
||||
cardImage: cannulated-cows
|
||||
featured: true
|
||||
keywords:
|
||||
- porcine rotavirus
|
||||
- porcine enteric disease
|
||||
- virome
|
||||
- rotavirus
|
||||
medium: paper
|
||||
authors:
|
||||
- Tyler Doerksen
|
||||
- Thomas A. Christensen II
|
||||
- Andrea Lu
|
||||
- Lance Noll
|
||||
- Jianfa Bai
|
||||
- Jamie Henningson
|
||||
- Rachel Palinski
|
||||
link: https://doi.org/10.1016/j.vetmic.2022.109447
|
||||
journal: Veterinary Microbiology
|
||||
---
|
||||
|
||||
Enteric disease is the predominant cause of morbidity and mortality in young
|
||||
mammals including pigs. Viral species involved in porcine enteric disease
|
||||
complex (PEDC) include rotaviruses, coronaviruses, picornaviruses, astroviruses
|
||||
and pestiviruses among others. The virome of three groups of swine samples
|
||||
submitted to the Kansas State University Veterinary Diagnostic Laboratory for
|
||||
routine testing were assessed, namely, a Rotavirus A positive (RVA) group, a
|
||||
Rotavirus co-infection (RV) group and a Rotavirus Negative (RV Neg) group. All
|
||||
groups were designated by qRT-PCR results testing for Porcine Rotavirus A, B, C
|
||||
and H such that samples positive for RVA only went in the RVA group, samples
|
||||
positive for >1 rotavirus went in the RV group and samples negative for all were
|
||||
grouped in the RVNeg group. All of the animals had clinical enteric disease
|
||||
resulting in scours and swollen joints/lameness, enlarged heart and/or a cough.
|
||||
All samples were metagenomic sequenced and analyzed for viral species
|
||||
composition that identified 14 viral species and eight bacterial viruses/phages.
|
||||
Sapovirus and Escherichia coli phages were found at a high prevalence in RVA and
|
||||
RV samples but were found at low or no prevalence in the RV Neg samples.
|
||||
Picobirnavirus was identified at a high proportion and prevalence in RV Neg and
|
||||
RV samples but at a low prevalence in the RVA group. A sequence analysis of the
|
||||
possible host of Picobirnaviruses revealed fungi as the most likely host.
|
||||
Non-rotaviral diversity was highest in RVA samples followed by RV then RV Neg
|
||||
samples. Various sequences were extracted from the sample reads and a
|
||||
phylogenetic update was provided showing a high prevalence of G9 and P[23] RVA
|
||||
genotypes. These data are important for pathogen surveillance and control
|
||||
measures
|
|
@ -1,43 +0,0 @@
|
|||
---
|
||||
title:
|
||||
"Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel
|
||||
Polymers"
|
||||
date: 2020-08-07
|
||||
cardImage: library
|
||||
draft: false
|
||||
featured: true
|
||||
keywords:
|
||||
- bioremediation
|
||||
- polyoxometalate
|
||||
- hydrogel polymers
|
||||
- proton transport
|
||||
- chemical engineering
|
||||
medium: thesis
|
||||
authors:
|
||||
- Thomas A. Christensen II
|
||||
link: "https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2"
|
||||
journal: "University of Idaho"
|
||||
location: "Moscow, Idaho"
|
||||
---
|
||||
|
||||
Polyoxometalate clusters embedded into hydrogel biobeads may be able to solve
|
||||
the challenges posed by free proton generation during remediation of
|
||||
trichloroethylene by acting as buffers and reducing protons to hydrogen gas. In
|
||||
this thesis, the challenges posed by systems that contain both diffusion and
|
||||
reaction processes for protons are considered mathematically, and a computer
|
||||
simulation to was developed to prove the relationship between diaphragm cell lag
|
||||
period and reactive capabilities of membranes. Two polyoxometalate compounds,
|
||||
sodium decavanadate and alumina sulfate, were successfully incorporated into a
|
||||
poly(vinyl alcohol) hydrogel membrane, and the diffusivity changes associated
|
||||
with each compound was determined. It was found that the diffusivity of protons
|
||||
through an unmodified 10% w/v poly(vinyl alcohol) membrane was 1.76 ×
|
||||
10{{< sup -5 >}} cm{{< sup 2 >}} s{{< sup -1 >}}, the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 ×
|
||||
10{{< sup -6 >}} cm{{< sup 2 >}} s{{< sup -1 >}}, and the diffusivity through a
|
||||
10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 ×
|
||||
10{{< sup -7 >}} cm{{< sup 2 >}} s{{< sup -1 >}}. Through analysis of the
|
||||
diaphragm cell lag period, it was found the incorporation of sodium decavanadate
|
||||
did not increase the reactivity of a poly(vinyl alcohol) hydrogel, and
|
||||
incorporation of alumina sulfate lowered the reactivity. These results indicate
|
||||
that polyoxometalate integration into hydrogel membranes is feasible, but does
|
||||
not provide any advantage to a bioremediation scenario.
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: Artificial Insemination
|
||||
cardImage: Ai-calf
|
||||
motto: Artificial Insemination
|
||||
---
|
||||
|
||||
I am licensed in the Great State of Wyoming as a food animal artificial
|
||||
insemination technician, which means I can legally AI cows, goats, and sheep.
|
||||
Practically speaking, I have only ever AIed cows, but my conception rates are
|
||||
very good for both beef and dairy cows. When (if?) I standardize my rates, I
|
||||
will include them here. Until then, you will have to [contact me](/contact)
|
||||
directly and we can negotiate prices then.
|
|
@ -1,45 +0,0 @@
|
|||
---
|
||||
draft: true
|
||||
---
|
||||
|
||||
## Stuff I like on the internet
|
||||
|
||||
This section of a website used to be called a "blogroll." I don't know what it's
|
||||
called now. In order to be on this list, I must have been subscribed or
|
||||
otherwise follow it for over a year. It's amazing how little stuff on the
|
||||
internet can't make that cut.
|
||||
|
||||
### [Thru the Bible](https://ttb.org/)
|
||||
|
||||
I'm convinced that the word of God is timeless, and we need less commentary and
|
||||
cherry-picking of favorite verses, and more study of the complete Bible. Dr.
|
||||
McGee does just that.
|
||||
|
||||
### [Enoch the Cow Vet](https://youtube.com/channel/UC6PPmHUbcdOSzX5tLB3uXdw)
|
||||
|
||||
A veternarian/agricultural channel that doesn't make me cringe. "God built these
|
||||
things for cows for vets ... [there are] so many aspects of the cow that are
|
||||
just designed for vets." Amen, Enoch. Amen.
|
||||
|
||||
### [Proglogion](https://blog.drwile.com/)
|
||||
|
||||
The blog of my high school science teacher (of sorts). It is refreshing to find
|
||||
a creationist who can still think critically. I love his "bad sermon
|
||||
illustrations" posts.
|
||||
|
||||
### [The Milk Check](https://www.jacoby.com/learning-center/podcasts-overview/)
|
||||
|
||||
A pragmatic inside look at dairy marketing. I only understand half of what
|
||||
they're talking about, but I learn something new every episode.
|
||||
|
||||
### [Brian Harry's Blog](https://devblogs.microsoft.com/bharry/)
|
||||
|
||||
Where else are you going to find a blog about cows _and_ version control? The
|
||||
blog is basically dead now, but it's still fun to go back and read the farm
|
||||
stories.
|
||||
|
||||
### [Car Talk](https://cartalk.com/)
|
||||
|
||||
The antics of these guys are enough to make anyone have to pull over to the side
|
||||
of the road from laughing too much. I dread the day when NPR fully axes the only
|
||||
good program to cross their airwaves.
|
|
@ -1,88 +0,0 @@
|
|||
---
|
||||
title: Contact Me
|
||||
cardImage: venice-mailbox
|
||||
motto: Contact Me
|
||||
---
|
||||
|
||||
<form
|
||||
class="form-horizontal"
|
||||
action="https://usebasin.com/f/787df7bfd22e"
|
||||
method="post"
|
||||
>
|
||||
<fieldset>
|
||||
<legend>Contact Me</legend>
|
||||
<input type="hidden" name="_gotcha" />
|
||||
<div class="form-group">
|
||||
<label for="name" class="col-lg-2 control-label">Name</label>
|
||||
<div class="col-lg-10">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
id="name"
|
||||
name="name"
|
||||
placeholder="Jay Lush"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email" class="col-lg-2 control-label">Email</label>
|
||||
<div class="col-lg-10">
|
||||
<input
|
||||
type="email"
|
||||
class="form-control"
|
||||
id="email"
|
||||
name="email"
|
||||
placeholder="jlush@iastate.edu"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="phone" class="col-lg-2 control-label">Phone number</label>
|
||||
<div class="col-lg-10">
|
||||
<input
|
||||
type="tel"
|
||||
class="form-control"
|
||||
id="phone"
|
||||
name="phone"
|
||||
placeholder="(515) 294-2160"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="subject" class="col-lg-2 control-label">Subject</label>
|
||||
<div class="col-lg-10">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
id="subject"
|
||||
name="subject"
|
||||
placeholder="Beef genetics"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="message" class="col-lg-2 control-label">Message</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea
|
||||
rows="5"
|
||||
class="form-control font-sans"
|
||||
id="message"
|
||||
name="body"
|
||||
required
|
||||
style="min-height: 72pt;"
|
||||
></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-lg-10 col-lg-offset-2">
|
||||
<button type="reset" class="btn btn-default">Cancel</button>
|
||||
<button type="submit" class="btn btn-primary pageclip-form__submit">
|
||||
<span>Submit</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
title: "New Site"
|
||||
date: 2022-01-13T19:09:50-06:00
|
||||
draft: true
|
||||
---
|
||||
|
||||
I have a new website! Narf!
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
title: Videos
|
||||
cardImage: camera
|
||||
motto: Videography Portfolio
|
||||
---
|
||||
|
||||
> ### The culmination of all art forms is that of film.
|
||||
|
||||
A good film must have the plot and language of a good novel, characters as bold
|
||||
and stunning as sculpture, a rhythm as driving and delicate as poetry, frame
|
||||
compositions more stellar that those of photography, and music that speaks to
|
||||
the souls of both the characters on screen and the viewers off.
|
||||
|
||||
But I digress. Most of my forays into the world of film are immortalized on [my
|
||||
Vimeo account](https://vimeo.com/tchristensenii), but I decided to share a few
|
||||
highlights here. Enjoy!
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: "Farm Bureau Ag Olympics Reel"
|
||||
date: 2017-02-16
|
||||
storage: yt
|
||||
storageId: jhLJp3OFsYM
|
||||
thumbnail: https://i.ytimg.com/vi_webp/jhLJp3OFsYM/maxresdefault.webp
|
||||
---
|
||||
|
||||
The Albany County Farm Bureau Young Farmer's and Rancher's committee asked me to
|
||||
come and shoot a highlight reel of the Ag Olympics booth they ran at the Wyoming
|
||||
Football Wyoming Needs Agriculture Day. I gave away all rights to this one
|
||||
except for bragging rights.
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
title: If You Come Out to the Fair
|
||||
date: 2016-10-13
|
||||
storage: vimeo
|
||||
storageId: 191326975
|
||||
thumbnail: https://i.vimeocdn.com/video/604398739-ad61494f60c56836508e11001b39ad5228c2cc41c2b7ab1ca6f1bc8255a173e2-d?mw=1200&mh=675&q=70
|
||||
---
|
||||
|
||||
My extension agent asked me to make a promotional video for our county fair.
|
||||
This is the only film of mine that has drawn an emotional response. I think I
|
||||
retired after this.
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: In The Hayfields
|
||||
date: 2015-10-05
|
||||
storage: vimeo
|
||||
storageId: 144811104
|
||||
thumbnail: https://i.vimeocdn.com/video/542754357-e316fb6ef98be3ed442c582ff2982f9a00c79c854c3afd2a07ed17f985bde60d-d?mw=1200&mh=675&q=70
|
||||
---
|
||||
|
||||
I always get the comment that our implements are _old_ whenever I show this
|
||||
video off. I just ignore the naysayers, though, and good thing, too, because a
|
||||
version of this video won a [GoPro Award](https://gopro.com/awards). Still
|
||||
waiting to see my footage on their channel, though.
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Non. Verum: The Mystery Killer"
|
||||
date: 2015-06-12
|
||||
storage: vimeo
|
||||
storageId: 130557155
|
||||
thumbnail: https://i.vimeocdn.com/video/522472352-4e0adaa9150464843aff5ffd20540b1cf98912536bcd847892a759fa82fe1725-d?mw=1200&mh=675&q=70
|
||||
---
|
||||
|
||||
My first ~~documentary~~ mockumentary. This film won 2{{< sup nd >}} place at
|
||||
the [2016 National 4-H Film Festival](http://4h.missouri.edu/filmfest4h/), and
|
||||
I've been told that it's more polished than the pieces done by the local TV
|
||||
stations. No one seems to think it's funny, though, so I'm not sure how
|
||||
successful it was. Please do me a favor and google **every** term you don't
|
||||
understand while watching it, and perhaps you'll fare better.
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
title: My Websites
|
||||
cardImage: eclipse
|
||||
motto: Websites
|
||||
---
|
||||
|
||||
I do occasionally build websites for myself and other people. Here is a list of
|
||||
websites I have contributed code to directly, in a vain attempt to gain each of
|
||||
them some
|
||||
[search engine cred](https://en.wikipedia.org/wiki/Search_engine_optimization).
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
title: Milliron X
|
||||
date: 2022-03-01
|
||||
platform: Hugo
|
||||
platformIcon: fab fa-golang
|
||||
platformURL: https://gohugo.io/
|
||||
deployURL: https://millironx.com
|
||||
sourceURL: https://github.com/MillironX/millironx.github.io
|
||||
---
|
||||
|
||||
Lo and behold: I made my own website!
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: Albany County 4-H Record Books
|
||||
date: 2019-08-10
|
||||
platform: Plain ol' HTML5
|
||||
platformIcon: fab fa-html5
|
||||
platformURL: https://www.w3.org/html/
|
||||
deployURL: http://wyoming4h.org/albany4h/record-book
|
||||
sourceURL: https://github.com/MillironX/4h-record-books
|
||||
---
|
||||
|
||||
I constructed this site to hold the record book helps of the rebellious Albany
|
||||
County, Wyoming. Due to the bureaucratic lag that it takes to update, it got
|
||||
updated just in time for Wyoming 4-H to ditch paper record books entirely. Oh,
|
||||
well.
|
Before Width: | Height: | Size: 298 KiB After Width: | Height: | Size: 298 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 458 KiB After Width: | Height: | Size: 458 KiB |
After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 158 KiB |
After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 343 KiB After Width: | Height: | Size: 343 KiB |
After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 199 KiB |
After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 379 KiB After Width: | Height: | Size: 379 KiB |
After Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 584 KiB After Width: | Height: | Size: 584 KiB |
After Width: | Height: | Size: 120 KiB |
50
index.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!doctype html><html class=no-js lang=en><head><meta name=generator content="Hugo 0.104.3"><meta charset=utf-8><meta http-equiv=x-ua-compatible content="ie=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Home - MillironX</title><link href="https://millironx.com/css/bundle.min.d68b6135772e7077b2931ddcfac9fc4cdb0643d18a59b24d9311ef9e5196126a.css" rel=stylesheet></head><body><div class=container-fluid><div class="row wrapper min-vh-100 flex-column flex-sm-row"><aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1"><nav class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"><div class=container-fluid><a class="navbar-brand d-block d-md-none" href=#><object class="d-inline-block align-text-top" width=80 height=24 style=filter:invert(100%) data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span></a>
|
||||
<a href class=navbar-toggler data-bs-toggle=collapse data-bs-target=.sidebar><span class=navbar-toggler-icon></span></a><div class="collapse navbar-collapse sidebar"><ul class="flex-column navbar-nav w-100 justify-content-between"><li class=nav-item><a class="nav-link pl-0" href=/><i class="fad fa-home fa-fw"></i>
|
||||
<span>Home</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/contact><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span>Contact</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/academia><i class="fad fa-university fa-fw"></i>
|
||||
<span>Academia</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/ai><i class="fax fa-bull-sperm"></i>
|
||||
<span>Artificial Insemination</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/videos><i class="fad fa-video fa-fw"></i>
|
||||
<span>Videos</span></a></li><li class=nav-item><a class="nav-link pl-0" href=/websites><i class="fad fa-browser fa-fw"></i>
|
||||
<span>Websites</span></a></li></ul></div></div></nav></aside><main class="col bg-faded py-3 gx-0"><div class=container><header class="d-none d-sm-none d-md-block text-center"><h1 class="font-serif font-small-caps"><object data=https://millironx.com/graphics/millironx.svg>
|
||||
<img src=https://millironx.com/graphics/millironx.svg alt="Milliron X"></object>
|
||||
  Milliron X</h1></header></div><div class=blurred-container><div class=motto><h1 id=motto><small>My name is Thomas Christensen</small><br>I am Milliron X</h1></div><div class=img-src style=background-image:url(/images/charolette.jpg)></div><div class="img-src blur" style=background-image:url(/images/charolette_hu3443e2e07cb5f8d9bccf60b0005a6a7f_350799_filter_6742909828560968691.jpg)></div></div><br><section class="container-fluid list-main"><div class="container px-5"><h2>What is a "Milliron X"?</h2><h3>It's a
|
||||
<a href=https://en.wikipedia.org/wiki/Livestock_branding>cattle brand</a>,
|
||||
of course! My cattle brand!</h3><p>The <dfn>milliron</dfn> is the bar with a bend in the middle. It does not
|
||||
represent anything physical or textual <i>per se</i>, and is therefore a
|
||||
rather unique element in cattle brands. Millirons are difficult to modify into
|
||||
another brand, and provide a guarantee of authentic ownership.</p><p><dfn>X</dfn> is the letter of mystery and mystique. For nerds, it's the
|
||||
unknown in any algebra problem. Ranchers and cowboys will associate it with
|
||||
big names like the "Bar X" and the "Double X." In either case, it lends itself
|
||||
to a sense of withholding, prestige, and power.</p><p>Together, these two symbols represent the qualities I strive for in each of my
|
||||
works: authenticity, originality, power, depth, and prestige.</p><h2>Who am I?</h2><figure class="figure float-md-end w-md-50 p-3"><img class="figure-img img img-fluid" src=/me-and-lady_hu7060dc4dab919d51d7854024d27698e6_13657210_768x0_resize_q75_box.jpg width=768 height=513><figcaption class=figure-caption><small>Image courtesy <a href=https://www.guymccutcheon.com/>Guy McCutcheon Photography</a></small></figcaption></figure><p>I am</p><ul><li>🧬 A bioinformatician (by profession)</li><li>📐 An engineer (by education)</li><li>🐂 A rancher (by lifestyle)</li><li>🖥️ A techie (self-taught)</li><li>🎥 And a filmmaker (at heart)</li></ul><p>I've got a soft spot for Brown Swiss dairy cows (just in case you couldn't
|
||||
tell by the pictures), and am sometimes called "one of those crazy, Wyoming
|
||||
dairy cow people." I love anything to do with cattle or technology, but
|
||||
especially anything to do with both of them.</p><p><em><abbr title="Born again, fundamentalist, dispensationalist, King James Bible-believing, independent Baptist">Christian</abbr>, American, Convervative, Pro-gun, Heterosexual - any questions?</em></p><h2>Where am I?</h2><figure class="figure float-md-start w-md-50 p-3"><img class="figure-img img img-fluid" src=/wy-in-ks_hudc7807e3bcd929cdfa1bf6a15cff914e_370962_768x0_resize_box_3.png width=768 height=499></figure><p>I am a Wyomingite sojurning in Kansas. That ought to lead to some interesting
|
||||
stories.</p>Around the web you can find me at (in order of subjective importance)<ul class="float-md-end w-md-50"><li><i class="fab fa-fw fa-github"></i> GitHub:
|
||||
<a href=https://github.com/MillironX>@MillironX</a></li><li><i class="fab fa-fw fa-orcid"></i>
|
||||
ORCiD:
|
||||
<a href=https://orcid.org/0000-0003-1219-9320>0000-0003-1219-9320</a></li><li><i class="fab fa-fw fa-gitlab"></i>
|
||||
GitLab: <a href=https://gitlab.com/MillironX>@MillironX</a></li><li><i class="fab fa-fw fa-vimeo"></i>
|
||||
Vimeo: <a href=https://vimeo.com/tchristensenii>Thomas Christensen II</a></li><li><i class="fab fa-fw fa-stack-overflow"></i>
|
||||
Stack Exchange:
|
||||
<a href=https://stackexchange.com/users/4863541/milliron-x>Milliron X</a></li><li><i class="fad fa-fw fa-user-astronaut"></i>
|
||||
Odysee: <a href=https://odysee.com/@millironx:f>@millironx</a></li><li><span class="fa-layers fa-fw"><i class="fad fa-fw fa-comment"></i>
|
||||
<span class=fa-layers-text data-fa-transform="shrink-6 up-2">g</span></span>
|
||||
Gab: <a href=https://gab.com/millironx>@MillironX</a></li><li><i class="fab fa-fw fa-steam"></i>
|
||||
Steam: <a href=https://steamcommunity.com/id/millironx>MillironX</a></li><li><span class="fa-layers fa-fw"><i class="fad fa-fw fa-w" data-fa-transform="shrink-2 down-2"></i>
|
||||
<i class="fad fa-fw fa-ellipsis" data-fa-transform="grow-3 up-8"></i></span>
|
||||
MeWe:
|
||||
<a href=https://mewe.com/i/thomaschristensenii>Thomas Christensen II</a></li><li><i class="fab fa-fw fa-discord"></i>
|
||||
Discord:
|
||||
<a href=https://discord.com/users/484492414837587978>@MillironX</a></li></ul><div style=clear:both></div><div class="card border-warning m-3"><div class=card-body><p class=card-text>This list is intended to verify my identity on other sites. Please do
|
||||
<em>not</em> use it as fodder to try and "follow" me on each of these
|
||||
platforms. I stand with RMS:</p><figure><blockquote class=blockquote><p>Facebook is a bad place for a person to be. When people find us on
|
||||
Facebook, we lead them away from Facebook and then talk with them
|
||||
elsewhere.</p></blockquote><figcaption class=blockquote-footer>Richard Stallman in
|
||||
<cite><a href=https://stallman.org/facebook-presence.html>If you feel your organization needs a 'presence' in Facebook</a></cite></figcaption></figure><p class=card-text>I typically don't respond to inqueries made on these platforms. Please use
|
||||
<a href=/contact>my contact form</a>, instead.</p></div></div></div></section></main></div></div><script src=https://millironx.com/js/fontawesome.min.aaac087effe105b2021e36c0792fad5ba9e850de51c098f2e6db8ff3e29f8d01.js></script>
|
||||
<script src=https://millironx.com/js/jquery-bundle.2441e5a247357db17ad1c93e111c8691df9a20704f239054997cb71beeda1a4b.js></script>
|
||||
<script src=https://millironx.com/js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js></script></body></html>
|
1
index.xml
Normal file
17
js/bootstrap-bundle.ee55eb3d070edbafaf27db8471c6bb76a0851660b6a17c19cf50d8b0c9f53102.js
vendored
Normal file
|
@ -1,133 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
||||
{{ $twbscss := resources.Get "styles/bootstrap/bootstrap.scss" | resources.ToCSS }}
|
||||
{{ $mycss := resources.Get "styles/main.css" }}
|
||||
{{ $allcss := slice $twbscss $mycss | resources.Concat "css/bundle.css" }}
|
||||
{{ $allcsspure := $allcss | resources.PostCSS (dict "nomap" true) | minify | fingerprint | resources.PostProcess }}
|
||||
<link href="{{ $allcsspure.Permalink }}" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
{{ $millironx := resources.Get "graphics/millironx.svg" }}
|
||||
|
||||
<body>
|
||||
<div class="container-fluid">
|
||||
<div class="row wrapper min-vh-100 flex-column flex-sm-row">
|
||||
<aside class="col-12 col-md-3 p-0 bg-dark flex-shrink-1">
|
||||
<nav
|
||||
class="navbar navbar-expand-md navbar-dark bg-dark align-items-start flex-md-column flex-row"
|
||||
>
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand d-block d-md-none" href="#">
|
||||
<object
|
||||
class="d-inline-block align-text-top"
|
||||
width="80"
|
||||
height="24"
|
||||
style="filter: invert(100%)"
|
||||
data="{{ $millironx.Permalink }}"
|
||||
>
|
||||
<img src="{{ $millironx.Permalink }}" alt="Milliron X" />
|
||||
</object>
|
||||
 
|
||||
<span class="font-small-caps font-serif">Milliron X</span>
|
||||
</a>
|
||||
<a
|
||||
href
|
||||
class="navbar-toggler"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target=".sidebar"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</a>
|
||||
<div class="collapse navbar-collapse sidebar">
|
||||
<ul
|
||||
class="flex-column navbar-nav w-100 justify-content-between"
|
||||
>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/"
|
||||
><i class="fad fa-home fa-fw"></i>
|
||||
<span class="">Home</span></a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/contact"
|
||||
><i class="fad fa-file-signature fa-fw"></i>
|
||||
<span class="">Contact</span></a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/academia"
|
||||
><i class="fad fa-university fa-fw"></i>
|
||||
<span class="">Academia</span></a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/ai">
|
||||
<i class="fax fa-bull-sperm"></i>
|
||||
<span class="">Artificial Insemination</span
|
||||
>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/videos"
|
||||
><i class="fad fa-video fa-fw"></i>
|
||||
<span class="">Videos</span></a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link pl-0" href="/websites"
|
||||
><i class="fad fa-browser fa-fw"></i>
|
||||
<span class="">Websites</span></a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</aside>
|
||||
<main class="col bg-faded py-3 gx-0">
|
||||
<div class="container">
|
||||
<header class="d-none d-sm-none d-md-block text-center">
|
||||
<h1 class="font-serif font-small-caps">
|
||||
<object data="{{ $millironx.Permalink }}">
|
||||
<img src="{{ $millironx.Permalink }}" alt="Milliron X" />
|
||||
</object>
|
||||
  Milliron X
|
||||
</h1>
|
||||
</header>
|
||||
</div>
|
||||
{{ block "main" . }}
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Font Awesome -->
|
||||
{{ $fontawesome := resources.Get "scripts/fa-icons.js" | js.Build "js/fontawesome.js" | minify | fingerprint }}
|
||||
<script src="{{ $fontawesome.Permalink }}"></script>
|
||||
|
||||
<!-- JQuery -->
|
||||
{{ $jquery := resources.Get "scripts/jquery/jquery.min.js" }}
|
||||
{{ $jqmaskjs := resources.Get "scripts/jquery-mask-plugin/jquery.mask.min.js" }}
|
||||
{{ $fittextjs := resources.Get "scripts/fittext/jquery.fittext.js" | minify }}
|
||||
{{ $scrolljs := resources.Get "scripts/scroll-effect.js" | minify }}
|
||||
{{ $maskjs := resources.Get "scripts/phone-masking.js" | minify }}
|
||||
{{ $jquerybundle := slice $jquery $jqmaskjs $fittextjs $scrolljs $maskjs | resources.Concat "js/jquery-bundle.js" | fingerprint }}
|
||||
<script src="{{ $jquerybundle.Permalink }}"></script>
|
||||
|
||||
<!-- Bootstrap -->
|
||||
{{ $popperjs := resources.Get "scripts/popper/popper.min.js" }}
|
||||
{{ $twbsjs := resources.Get "scripts/bootstrap/bootstrap.min.js" }}
|
||||
{{ $ttjs := resources.Get "scripts/tooltip-enable.js" | minify }}
|
||||
{{ $bootstrapbundle := slice $popperjs $twbsjs $ttjs | resources.Concat "js/bootstrap-bundle.js" | fingerprint }}
|
||||
<script src="{{ $bootstrapbundle.Permalink }}"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
{{ define "main" }}
|
||||
{{ partial "scrolling-image-header" . }}
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
{{ block "content" . }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
|
@ -1,8 +0,0 @@
|
|||
{{ define "main" }}
|
||||
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
|
@ -1,24 +0,0 @@
|
|||
{{ define "main" }}
|
||||
{{ partial "scrolling-image-header" . }}
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
|
||||
|
||||
|
||||
<h2>Selected Presentations</h2>
|
||||
{{ $featuredpubs := where .Pages ".Params.featured" "==" true }}
|
||||
{{ range $featuredpubs }}
|
||||
{{ .Scratch.Set "showAbstract" true }}
|
||||
{{ partial "academia/list-single.html" . }}
|
||||
{{ end }}
|
||||
<hr />
|
||||
<h2>Other Presentations</h2>
|
||||
{{ $nonfeaturedpubs := where .Pages ".Params.featured" "==" false }}
|
||||
{{ range $nonfeaturedpubs }}
|
||||
{{ partial "academia/list-single.html" . }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
|
@ -1,27 +0,0 @@
|
|||
{{ define "main" }}
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
<h5>
|
||||
{{ .Params.journal }}{{ with .Params.location }}: {{ . }}{{ end }}
|
||||
</h5>
|
||||
<h2>{{ .Title }}</h2>
|
||||
<h3>
|
||||
<small>
|
||||
<ul class="list-inline">
|
||||
{{ range .Params.authors }}
|
||||
<li class="list-inline-item">{{ . }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</small>
|
||||
</h3>
|
||||
<h4>{{ .Date | time.Format "January 2, 2006" }}</h4>
|
||||
{{ .Content }}
|
||||
{{ with .Params.link }}
|
||||
<div class="card border-dark m-3 p-3">
|
||||
<a href="{{ . }}">{{ . }}</a>
|
||||
<iframe src="{{ . }}" style="width: 100%; height: 75vh"></iframe>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
|
@ -1,74 +0,0 @@
|
|||
<div class="d-flex py-2">
|
||||
<div class="px-2">
|
||||
{{ if eq .Params.medium "paper" }}
|
||||
{{ .Scratch.Set "fa" "fa-book" }}
|
||||
{{ else if eq .Params.medium "poster" }}
|
||||
{{ .Scratch.Set "fa" "fa-presentation" }}
|
||||
{{ else if eq .Params.medium "thesis" }}
|
||||
{{ .Scratch.Set "fa" "fa-graduation-cap" }}
|
||||
{{ else if eq .Params.medium "presentation" }}
|
||||
{{ .Scratch.Set "fa" "fa-podium" }}
|
||||
{{ else }}
|
||||
{{ .Scratch.Set "fa" "fa-notebook" }}
|
||||
{{ end }}
|
||||
|
||||
{{ $fa := (.Scratch.Get "fa") }}
|
||||
|
||||
|
||||
<h3>
|
||||
<i
|
||||
class="fad fa-fw {{ $fa }}"
|
||||
data-bs-toggle="tooltip"
|
||||
title="{{ humanize .Params.medium }}"
|
||||
></i>
|
||||
</h3>
|
||||
{{ with .Params.link }}
|
||||
<a
|
||||
class="btn btn-secondary dogear"
|
||||
href="{{ . }}"
|
||||
data-bs-toggle="tooltip"
|
||||
title="Full text"
|
||||
><i class="fad fa-file-alt"></i
|
||||
></a>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="flex-grow-1 px-2">
|
||||
<h3>
|
||||
<a href="{{ .Permalink }}">
|
||||
{{ .Title }}
|
||||
</a>
|
||||
</h3>
|
||||
{{ $authlist := .Params.authors }}
|
||||
{{ range $idx, $auth := .Params.authors }}
|
||||
{{ if and (eq $idx (sub (len $authlist) 1)) (gt 1 (len $authlist)) }}
|
||||
and
|
||||
{{ end }}
|
||||
{{- if eq $auth "Thomas A. Christensen II" }}
|
||||
<strong>{{ $auth }}</strong>
|
||||
{{- else }}
|
||||
{{ $auth }}
|
||||
{{- end }}
|
||||
{{- if lt $idx (sub (len $authlist) 1) -}}
|
||||
,
|
||||
{{- end }}
|
||||
{{ end }}
|
||||
<br />
|
||||
{{ .Params.journal }}:
|
||||
{{ .Params.location }}
|
||||
({{ dateFormat "02 Jan 2006" .Params.date }})
|
||||
<br />
|
||||
{{ with .Params.keywords }}
|
||||
Keywords:
|
||||
{{ range . }}
|
||||
<a href="#">{{ . }}</a>
|
||||
{{ end }}
|
||||
<br />
|
||||
{{ end }}
|
||||
{{ if eq (.Scratch.Get "showAbstract") true }}
|
||||
<details>
|
||||
<summary>Abstract</summary>
|
||||
{{ .Content }}
|
||||
</details>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
|
@ -1,20 +0,0 @@
|
|||
{{ $millironx := resources.Get "graphics/millironx.svg" }}
|
||||
<div class="blurred-container">
|
||||
<div class="motto">
|
||||
<h1 id="motto">
|
||||
{{ safeHTML (.Param "motto") }}
|
||||
</h1>
|
||||
</div>
|
||||
{{ $imgsrc := print "images/" (.Param "cardImage") ".jpg" }}
|
||||
{{ $mainimg := resources.Get $imgsrc }}
|
||||
{{ $blurimg := $mainimg.Filter (images.GaussianBlur 100) }}
|
||||
<div
|
||||
class="img-src"
|
||||
style="background-image: url('{{ $mainimg.RelPermalink }}');"
|
||||
></div>
|
||||
<div
|
||||
class="img-src blur"
|
||||
style="background-image: url('{{ $blurimg.RelPermalink }}');"
|
||||
></div>
|
||||
</div>
|
||||
<br />
|
|
@ -1,27 +0,0 @@
|
|||
|
||||
{{ $img := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }}
|
||||
{{ $command := .Get 1 }}
|
||||
{{ $options := .Get 2 }}
|
||||
{{ $figclass := .Get 3 }}
|
||||
{{ $imgclass := .Get 4 }}
|
||||
{{ if eq $command "Fit"}}
|
||||
{{ $img = $img.Fit $options }}
|
||||
{{ else if eq $command "Resize"}}
|
||||
{{ $img = $img.Resize $options }}
|
||||
{{ else if eq $command "Fill"}}
|
||||
{{ $img = $img.Fill $options }}
|
||||
{{ else if eq $command "Crop"}}
|
||||
{{ $img = $img.Crop $options }}
|
||||
{{ else }}
|
||||
{{ errorf "Invalid image processing command: Must be one of Crop, Fit, Fill or Resize."}}
|
||||
{{ end }}
|
||||
<figure class="figure {{ $figclass }}">
|
||||
<img class="figure-img img img-fluid" src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
|
||||
{{ with .Inner }}
|
||||
<figcaption class="figure-caption">
|
||||
<small>
|
||||
{{ . | markdownify }}
|
||||
</small>
|
||||
</figcaption>
|
||||
{{ end }}
|
||||
</figure>
|
|
@ -1 +0,0 @@
|
|||
<sub>{{ .Get 0 }}</sub>
|
|
@ -1 +0,0 @@
|
|||
<sup>{{ .Get 0 }}</sup>
|
|
@ -1,33 +0,0 @@
|
|||
{{ define "main" }}
|
||||
{{ partial "scrolling-image-header" . }}
|
||||
|
||||
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
{{ range .Pages }}
|
||||
<div class="col-sm-4">
|
||||
<a href="{{ .Permalink }}">
|
||||
<img
|
||||
class="img-fluid img-thumbnail rounded"
|
||||
src="{{ .Params.thumbnail }}"
|
||||
alt="Thumbnail of {{ .Title }}"
|
||||
/>
|
||||
<h4>{{ .Title }}</h4>
|
||||
</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
{{ end }}
|
|
@ -1,39 +0,0 @@
|
|||
{{ define "main" }}
|
||||
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
|
||||
{{ if eq .Params.storage "yt" }}
|
||||
{{ .Scratch.Set "embedLink" (print "https://www.youtube-nocookie.com/embed/" .Params.storageId) }}
|
||||
{{ end }}
|
||||
{{ if eq .Params.storage "vimeo" }}
|
||||
{{ .Scratch.Set "embedLink" (print "https://player.vimeo.com/video/" .Params.storageId "?color=ffffff") }}
|
||||
{{ end }}
|
||||
{{ if eq .Params.storage "lbry" }}
|
||||
{{ .Scratch.Set "embedLink" (print "https://odysee.com/$/embed/" .Params.storageId) }}
|
||||
{{ end }}
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="ratio ratio-16x9">
|
||||
<iframe
|
||||
src="{{ .Scratch.Get "embedLink" }}"
|
||||
title="{{ .Title }}"
|
||||
allowfullscreen
|
||||
>
|
||||
</iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{ end }}
|
|
@ -1,49 +0,0 @@
|
|||
{{ define "main" }}
|
||||
{{ partial "scrolling-image-header" . }}
|
||||
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
|
||||
|
||||
|
||||
|
||||
{{ range .Pages }}
|
||||
<section class="card mb-3">
|
||||
<div class="card-body d-flex align-items-center">
|
||||
{{ $thumbnail := .Resources.GetMatch "thumbnail.png" }}
|
||||
{{ $thumbimg := $thumbnail.Resize "250x" }}
|
||||
<div class="flex-shrink-0">
|
||||
{{ $image := .}}
|
||||
<img class="img-thumbnail rounded" src="{{ $thumbimg.RelPermalink }}" alt="Thumbnail of {{ .Title }}">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3 py-1">
|
||||
<h3 class="card-title">{{ .Title }}</h3>
|
||||
<h4 class="card-subtitle"><a href="{{ .Params.deployURL }}">{{ .Params.deployURL }}</a></h4>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
<div class="flex-shrink-0">
|
||||
<div class="btn-group-vertical">
|
||||
<a class="btn btn-secondary" data-bs-toggle="tooltip" title="{{ .Params.platform }}"
|
||||
href="{{ .Params.platformURL }}">
|
||||
<i class="{{ .Params.platformIcon }}"></i>
|
||||
</a>
|
||||
<a class="btn btn-secondary" data-bs-toggle="tooltip" title="Source code" href="{{ .Params.sourceURL }}">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
{{ end }}
|
Before Width: | Height: | Size: 13 MiB After Width: | Height: | Size: 13 MiB |
After Width: | Height: | Size: 61 KiB |