diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..f773b0e --- /dev/null +++ b/.envrc @@ -0,0 +1,4 @@ +use flake +layout node +mkdir -p "${HOME}/Library/Application Support/SourceGit" +echo "${PATH}" > "${HOME}/Library/Application Support/SourceGit/PATH" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4bb138 --- /dev/null +++ b/.gitignore @@ -0,0 +1,191 @@ +### 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.* + +### FontAwesome gitignore ### + +fontawesome-pro-6.3.0-web + +### direnv gitignore ### +.direnv + +### Nix Flake gitignore ### +result + +### MacOS gitignore ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk diff --git a/.husky/.gitignore b/.husky/.gitignore new file mode 100644 index 0000000..31354ec --- /dev/null +++ b/.husky/.gitignore @@ -0,0 +1 @@ +_ diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..36af219 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx lint-staged diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..1fea400 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +layouts/_default/index.manifest.json diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..672b6f3 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,9 @@ +"$schema": "http://json.schemastore.org/prettierrc" +proseWrap: always +overrides: + - files: "*.html" + options: + parser: "go-template" + - files: "*.gotmpl" + options: + parser: "go-template" diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ad92582 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.formatOnSave": true +} diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..881a8fd --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,18 @@ +when: + branch: master + event: + - push + - cron + cron: "weekly-build" + +steps: + - name: Build site + image: hugomods/hugo:std-base-non-root-0.141.0 + commands: + - hugo --minify + - name: Deploy to pages + image: codeberg.org/xfix/plugin-codeberg-pages-deploy:1 + settings: + folder: public + ssh_key: + from_secret: ssh_key diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..eb5924a --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,13 @@ +{ + "languages": { + "HTML": { + "formatter": { + "external": { + "command": "prettier", + "arguments": ["--stdin-filepath", "{buffer_path}"] + } + } + } + }, + "file_types": { "HTML": ["gotmpl"] } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8441bf9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..165340a --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# pages + +[![status-badge](https://woodpecker.millironx.com/api/badges/30/status.svg?branch=master)](https://woodpecker.millironx.com/repos/30/branches/master) + +My personal website. Hosted over at + +## Notes to self + +### Nix dev shell + +All developer dependencies are now bundled as a Nix Flake. The only trouble with +this is that npm packages don't play well with Nix (and especially Flakes), so +npm packages are specified twice: once in `package{-lock}.json` and then again +in `node*.nix`. + +Compounding this, there are formatters and commit hooks that require npm to be +functional. So, to develop right now requires allowing direnv to setup the Nix +development shell, then immediately installing npm packages via `npm ci`. VSCode +(with extensions) and Zed are smart enough to figure out how to use direnv, and +direnv will pass the PATH to SourceGit for Mac, but other programs aren't that +smart, so you'll need to launch those programs from inside a direnv shell to +make sure they have Prettier, Husky, and all that jazz to execute the hooks. + +Last compounding factors: if `node_modules` is present in the root directory, +then node2nix won't create a correct derivation, so `node_modules` will need to +be temporarily deleted after modifying any npm packages, then as soon as +node2nix is happy, then immediately run `npm ci` to get the commit hooks working +again. Oh, and also, I renamed the `default.nix` file generated by node2nix to +node.nix to avoid giving direnv any wrong impressions about what derivation to +run. + +Yes, hopefully I can get completely away from npm here soon, but this is a minor +inconvenience considering how (not) often I install new packages into this site, +and really discourages me from contributing to the website obesity crisis. + +### Nix building + +Nix building will not work because Hugo reaches out to the internet via content +adapters, and that (by intention) is not perfectly reproducable. As such, +_development_ tools are installed in a Nix shell, but building has been removed +from the Flake. Thankfully, hugomods provides "canonical" Docker images for hugo +now. diff --git a/academia/bpv-genetics/citation.bib b/academia/bpv-genetics/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/bpv-genetics/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/bpv-genetics/index.html b/academia/bpv-genetics/index.html deleted file mode 100644 index df06c2e..0000000 --- a/academia/bpv-genetics/index.html +++ /dev/null @@ -1,55 +0,0 @@ -Genetic analysis of bovine papillomas -- -Milliron X -
-Milliron X

Milliron X

National Association of Animal Breeders Technical Conference Student Poster session: Middleton, Wisconsin

Genetic analysis of bovine papillomas

-Thomas A. Christensen II - -Rachel Palinski - -Bob Gentry

September 19, 2024

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.

\ No newline at end of file diff --git a/academia/cheme-car/citation.bib b/academia/cheme-car/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/cheme-car/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/cheme-car/index.html b/academia/cheme-car/index.html deleted file mode 100644 index 1772cd8..0000000 --- a/academia/cheme-car/index.html +++ /dev/null @@ -1,33 +0,0 @@ -The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal -- -Milliron X -
-Milliron X

Milliron X

University of Wyoming Honors Program: Laramie, Wyoming

The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal

-Thomas A. Christensen II

May 14, 2019

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.

https://doi.org/10.15786/13700938.v1 -
\ No newline at end of file diff --git a/academia/cheme-car/thumbnail_hu15001307044733182753.jpg b/academia/cheme-car/thumbnail_hu15001307044733182753.jpg deleted file mode 100644 index 9a64828..0000000 Binary files a/academia/cheme-car/thumbnail_hu15001307044733182753.jpg and /dev/null differ diff --git a/academia/feed.xml b/academia/feed.xml deleted file mode 100644 index 0f76055..0000000 --- a/academia/feed.xml +++ /dev/null @@ -1,248 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/academia/2025-03-31T00:14:19+00:00Academic Publications and Presentations on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> -https://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> -https://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/how-to-build-a-cow-cud-fuel-cell/How to Build a Cow-Cud Fuel Cell2018-08-01T00:00:00+00:002018-08-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> - \ No newline at end of file diff --git a/academia/got-warts-naab/citation.bib b/academia/got-warts-naab/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/got-warts-naab/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/got-warts-naab/index.html b/academia/got-warts-naab/index.html deleted file mode 100644 index e0287eb..0000000 --- a/academia/got-warts-naab/index.html +++ /dev/null @@ -1,27 +0,0 @@ -Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination -- -Milliron X -
-Milliron X

Milliron X

National Association of Animal Breeders Technical Conference Sponsor session: Middleton, Wisconsin

Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination

-Bob Gentry - -Thomas A. Christensen II

September 19, 2024

\ No newline at end of file diff --git a/academia/how-to-build-a-cow-cud-fuel-cell/citation.bib b/academia/how-to-build-a-cow-cud-fuel-cell/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/how-to-build-a-cow-cud-fuel-cell/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/how-to-build-a-cow-cud-fuel-cell/index.html b/academia/how-to-build-a-cow-cud-fuel-cell/index.html deleted file mode 100644 index fb3ed46..0000000 --- a/academia/how-to-build-a-cow-cud-fuel-cell/index.html +++ /dev/null @@ -1,25 +0,0 @@ -How to Build a Cow-Cud Fuel Cell -- -Milliron X -
-Milliron X

Milliron X

Idaho INBRE Summer Research Conference: Moscow, Idaho

How to Build a Cow-Cud Fuel Cell

-Thomas A. Christensen II

August 1, 2018

\ No newline at end of file diff --git a/academia/hydronium-pva/citation.bib b/academia/hydronium-pva/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/hydronium-pva/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/hydronium-pva/index.html b/academia/hydronium-pva/index.html deleted file mode 100644 index 226f026..0000000 --- a/academia/hydronium-pva/index.html +++ /dev/null @@ -1,55 +0,0 @@ -Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation -- -Milliron X -
-Milliron X

Milliron X

ACS ES&T Engineering

Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation

-Carson J. Silsby - -Jonathan R. Counts - -Thomas A. Christensen II - -Mark F. Roll - -Kristopher v. Waynant - -James G. Moberly

September 2, 2022

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.

https://doi.org/10.1021/acsestengg.2c00107 -
\ No newline at end of file diff --git a/academia/index.html b/academia/index.html deleted file mode 100644 index 19dcc52..0000000 --- a/academia/index.html +++ /dev/null @@ -1,116 +0,0 @@ -Academic Publications and Presentations -- -Milliron X -
-Milliron X

Milliron X

Publications and Presentations

During my time in academia, I have amassed a few notable accomplishments. Of -course, as the old saying goes, “if it isn’t published, then it never happened,” -so here is a list of everything that actually happened.

Academia is not the be-all and end-all of life (contrary to what your professor -might have told you). I’ve found the side-effects to be similar to this guy’s:

I have spent too long in school and not enough time in the middle of nowhere, -and it has inhibited my ability to learn the simple things.

Baxter Black, DVM
-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

- - - - -

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 …

Read more »

\ No newline at end of file diff --git a/academia/index.xml b/academia/index.xml deleted file mode 100644 index b59f573..0000000 --- a/academia/index.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - Academic Publications and Presentations on MillironX - http://localhost:1313/academia/ - Recent content in Academic Publications and Presentations on MillironX - Hugo - en-us - Thu, 19 Sep 2024 00:00:00 +0000 - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination - http://localhost:1313/academia/got-warts-naab/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/got-warts-naab/ - - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - How to Build a Cow-Cud Fuel Cell - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - Wed, 01 Aug 2018 00:00:00 +0000 - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - diff --git a/academia/metagenomics/citation.bib b/academia/metagenomics/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/metagenomics/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/metagenomics/index.html b/academia/metagenomics/index.html deleted file mode 100644 index 9181455..0000000 --- a/academia/metagenomics/index.html +++ /dev/null @@ -1,63 +0,0 @@ -Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery -- -Milliron X -
-Milliron X

Milliron X

Westion Section American Society of Animal Science Annual Meeting: Boise, Idaho

Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery

-Thomas A. Christensen II - -Kathy J. Austin - -Kristi M. Cammack - -Hannah C. Cunningham-Hollinger

June 12, 2019

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.

/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf -
\ No newline at end of file diff --git a/academia/metagenomics/thumbnail_hu4805792212891797319.jpg b/academia/metagenomics/thumbnail_hu4805792212891797319.jpg deleted file mode 100644 index c6fc541..0000000 Binary files a/academia/metagenomics/thumbnail_hu4805792212891797319.jpg and /dev/null differ diff --git a/academia/page/1/index.html b/academia/page/1/index.html deleted file mode 100644 index 374acdf..0000000 --- a/academia/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/academia/ - \ No newline at end of file diff --git a/academia/page/2/index.html b/academia/page/2/index.html deleted file mode 100644 index 6a76225..0000000 --- a/academia/page/2/index.html +++ /dev/null @@ -1,128 +0,0 @@ -Academic Publications and Presentations -- -Milliron X -
-Milliron X

Milliron X

Publications and Presentations

-Subscribe
- - - - - -

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 …

Read more »

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 …

Read more »

Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

\ No newline at end of file diff --git a/academia/page/3/index.html b/academia/page/3/index.html deleted file mode 100644 index 62046aa..0000000 --- a/academia/page/3/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Academic Publications and Presentations -- -Milliron X -
-Milliron X

Milliron X

Publications and Presentations

-Subscribe
- -

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 …

Read more »

\ No newline at end of file diff --git a/academia/pva-aiche/citation.bib b/academia/pva-aiche/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/pva-aiche/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/pva-aiche/index.html b/academia/pva-aiche/index.html deleted file mode 100644 index c8d2ba6..0000000 --- a/academia/pva-aiche/index.html +++ /dev/null @@ -1,53 +0,0 @@ -Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate -- -Milliron X -
-Milliron X

Milliron X

AIChE Annual Meeting: Pittsburgh, Pennsylvania

Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate

-Thomas A. Christensen II - -Samuel R. Wolfe - -Jonathan Counts - -Mark F. Roll - -Kristopher v. Waynant - -James G. Moberly

October 29, 2018

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 2 -/s -× 106 -): 14.0 ± 1.91 for H+ -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.

/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf -
\ No newline at end of file diff --git a/academia/pva-aiche/thumbnail_hu11553628156911486896.jpg b/academia/pva-aiche/thumbnail_hu11553628156911486896.jpg deleted file mode 100644 index ab3d8e8..0000000 Binary files a/academia/pva-aiche/thumbnail_hu11553628156911486896.jpg and /dev/null differ diff --git a/academia/pva-inbre/citation.bib b/academia/pva-inbre/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/pva-inbre/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/pva-inbre/index.html b/academia/pva-inbre/index.html deleted file mode 100644 index 5024828..0000000 --- a/academia/pva-inbre/index.html +++ /dev/null @@ -1,49 +0,0 @@ -Measuring diffusion of protons in polyvinyalginate -- -Milliron X -
-Milliron X

Milliron X

Idaho INBRE Summer Research Conference: Moscow, Idaho

Measuring diffusion of protons in polyvinyalginate

-Thomas A. Christensen II - -Jonathan Counts - -James G. Moberly

July 31, 2018

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+ -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-5 -± 1.91 × 10-6 -cm2 -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.

\ No newline at end of file diff --git a/academia/rotavirus-virome/citation.bib b/academia/rotavirus-virome/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/rotavirus-virome/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/rotavirus-virome/index.html b/academia/rotavirus-virome/index.html deleted file mode 100644 index e034a80..0000000 --- a/academia/rotavirus-virome/index.html +++ /dev/null @@ -1,61 +0,0 @@ -Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease -- -Milliron X -
-Milliron X

Milliron X

Veterinary Microbiology

Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease

-Tyler Doerksen - -Thomas A. Christensen II - -Andrea Lu - -Lance Noll - -Jianfa Bai - -Jamie Henningson - -Rachel Palinski

April 27, 2022

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

https://doi.org/10.1016/j.vetmic.2022.109447 -
\ No newline at end of file diff --git a/academia/taxprofiler/citation.bib b/academia/taxprofiler/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/taxprofiler/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/taxprofiler/index.html b/academia/taxprofiler/index.html deleted file mode 100644 index 2753bd0..0000000 --- a/academia/taxprofiler/index.html +++ /dev/null @@ -1,58 +0,0 @@ -nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling -- -Milliron X -
-Milliron X

Milliron X

bioRxiv

nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling

-Sofia Stamouli - -Moritz E. Beber - -Tanja Normark - -Thomas A. Christensen II - -Lili Andersson-Li - -Maxime Borry - -Mahwash Jamy - -Nf-Core Community - -James A. Fellows Yates

October 23, 2023

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.

https://doi.org/10.1101/2023.10.20.563221 -
\ No newline at end of file diff --git a/academia/thesis/citation.bib b/academia/thesis/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/thesis/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/thesis/index.html b/academia/thesis/index.html deleted file mode 100644 index 9328df3..0000000 --- a/academia/thesis/index.html +++ /dev/null @@ -1,55 +0,0 @@ -Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers -- -Milliron X -
-Milliron X

Milliron X

University of Idaho: Moscow, Idaho

Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers

-Thomas A. Christensen II

August 7, 2020

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-5 -cm2 -s-1 -, the diffusivity through a -10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × -10-6 -cm2 -s-1 -, and the diffusivity through a -10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × -10-7 -cm2 -s-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.

https://www.proquest.com/dissertations-theses/polyoxometalate-incorporation-effects-on-proton/docview/2502214356/se-2 -
\ No newline at end of file diff --git a/academia/thumbnail_hu13643606213071976482.jpg b/academia/thumbnail_hu13643606213071976482.jpg deleted file mode 100644 index 85a5d77..0000000 Binary files a/academia/thumbnail_hu13643606213071976482.jpg and /dev/null differ diff --git a/academia/yavsap/citation.bib b/academia/yavsap/citation.bib deleted file mode 100644 index 8b13789..0000000 --- a/academia/yavsap/citation.bib +++ /dev/null @@ -1 +0,0 @@ - diff --git a/academia/yavsap/index.html b/academia/yavsap/index.html deleted file mode 100644 index e06458d..0000000 --- a/academia/yavsap/index.html +++ /dev/null @@ -1,64 +0,0 @@ -YAVSAP: versatile viral quasispecies analysis for veterinary samples -- -Milliron X -
-Milliron X

Milliron X

Phi Zeta Research Day: Manhattan, Kansas

YAVSAP: versatile viral quasispecies analysis for veterinary samples

-Thomas A. Christensen II - -Steven Stancic - -Andrea Lu - -Dana Mitzel - -William Wilson - -Rachel Palinski

March 5, 2024

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative’s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at https://github.com/ksumngs/yavsap.

/academia/yavsap/yavsap.pdf -
\ No newline at end of file diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png deleted file mode 100644 index 4a7b84a..0000000 Binary files a/android-chrome-192x192.png and /dev/null differ diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png deleted file mode 100644 index 98d676d..0000000 Binary files a/android-chrome-512x512.png and /dev/null differ diff --git a/android-chrome-mask.png b/android-chrome-mask.png deleted file mode 100644 index 98d676d..0000000 Binary files a/android-chrome-mask.png and /dev/null differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png deleted file mode 100644 index efa3c78..0000000 Binary files a/apple-touch-icon.png and /dev/null differ diff --git a/archetypes/academia.md b/archetypes/academia.md new file mode 100644 index 0000000..636e0b3 --- /dev/null +++ b/archetypes/academia.md @@ -0,0 +1,20 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +cardImage: library +draft: true +featured: false +tags: + - 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 diff --git a/assets/characters/README.md b/assets/characters/README.md new file mode 100644 index 0000000..3b2d851 --- /dev/null +++ b/assets/characters/README.md @@ -0,0 +1,30 @@ +# Characters + +Imaginary friends that help me inject personality into my articles. These are +anthropomorphized versions of animals that I have known in real life. I tried to +draw them roughly in the style of Chris Pasquini, but failed myself, then tried +using Perplexity's image generation. The style isn't quite the same, but I like +it for these animals. Also, Perplexity does a horrible job of labeling images, +so ignore the ref sheet emotion labels. + +## Spawn of Satan (aka Spawn aka SOS) + +![Spawn ref sheet](spawn/_ref-body-perplexity.png) + +Spawn of Satan is the name Travis gave to the cannulated cow, and it stuck. +Spawn is old and cynical after having every professor with a new idea experiment +on her. After being in academia for so long, she knows her way around +mathematics and the scientific method reasonably well, even if she's never +formally taken a college course in the sciences. She is the realist to any blog +post's optimist. + +## Whelen + +![Whelen ref sheet](whelen/_ref-body-perplexity.png) + +Whelen is a happy-go-lucky German Shepherd/Husky mix puppy. He's been to school +once - and that was just to get neutered - so his knowledge of math and science, +heck, even of the humanities, isn't very good. He is very naive and thinks +everyone is nice and wants to be his friend, but he is also friendly to everyone +and is very vocal when he feels left out. He will step in when any blog post is +getting too technical and demand an explanation for real people (dogs?). diff --git a/assets/characters/spawn/_ref-blueeye-perplexity.png b/assets/characters/spawn/_ref-blueeye-perplexity.png new file mode 100644 index 0000000..b8bef00 Binary files /dev/null and b/assets/characters/spawn/_ref-blueeye-perplexity.png differ diff --git a/assets/characters/spawn/_ref-body-perplexity.png b/assets/characters/spawn/_ref-body-perplexity.png new file mode 100644 index 0000000..04f95a6 Binary files /dev/null and b/assets/characters/spawn/_ref-body-perplexity.png differ diff --git a/assets/characters/spawn/_ref-bodysmirk-perplexity.png b/assets/characters/spawn/_ref-bodysmirk-perplexity.png new file mode 100644 index 0000000..afb9ba2 Binary files /dev/null and b/assets/characters/spawn/_ref-bodysmirk-perplexity.png differ diff --git a/assets/characters/spawn/_ref-face-perplexity.png b/assets/characters/spawn/_ref-face-perplexity.png new file mode 100644 index 0000000..de286db Binary files /dev/null and b/assets/characters/spawn/_ref-face-perplexity.png differ diff --git a/assets/characters/spawn/body-anger.png b/assets/characters/spawn/body-anger.png new file mode 100644 index 0000000..0f9fd87 Binary files /dev/null and b/assets/characters/spawn/body-anger.png differ diff --git a/assets/characters/spawn/body-lazy.png b/assets/characters/spawn/body-lazy.png new file mode 100644 index 0000000..530eb46 Binary files /dev/null and b/assets/characters/spawn/body-lazy.png differ diff --git a/assets/characters/spawn/body-skeptic.png b/assets/characters/spawn/body-skeptic.png new file mode 100644 index 0000000..8e110dc Binary files /dev/null and b/assets/characters/spawn/body-skeptic.png differ diff --git a/assets/characters/spawn/body-snark.png b/assets/characters/spawn/body-snark.png new file mode 100644 index 0000000..e2be9e1 Binary files /dev/null and b/assets/characters/spawn/body-snark.png differ diff --git a/assets/characters/spawn/body-tired.png b/assets/characters/spawn/body-tired.png new file mode 100644 index 0000000..3d84c4d Binary files /dev/null and b/assets/characters/spawn/body-tired.png differ diff --git a/assets/characters/spawn/face-confusion.png b/assets/characters/spawn/face-confusion.png new file mode 100644 index 0000000..6a70166 Binary files /dev/null and b/assets/characters/spawn/face-confusion.png differ diff --git a/assets/characters/spawn/face-happy.png b/assets/characters/spawn/face-happy.png new file mode 100644 index 0000000..445dcef Binary files /dev/null and b/assets/characters/spawn/face-happy.png differ diff --git a/assets/characters/spawn/face-neutral.png b/assets/characters/spawn/face-neutral.png new file mode 100644 index 0000000..44b5522 Binary files /dev/null and b/assets/characters/spawn/face-neutral.png differ diff --git a/assets/characters/spawn/face-sad.png b/assets/characters/spawn/face-sad.png new file mode 100644 index 0000000..15fdb4e Binary files /dev/null and b/assets/characters/spawn/face-sad.png differ diff --git a/assets/characters/spawn/face-toldyouso.png b/assets/characters/spawn/face-toldyouso.png new file mode 100644 index 0000000..9a908bb Binary files /dev/null and b/assets/characters/spawn/face-toldyouso.png differ diff --git a/assets/characters/whelen/_ref-body-perplexity.png b/assets/characters/whelen/_ref-body-perplexity.png new file mode 100644 index 0000000..e5d4103 Binary files /dev/null and b/assets/characters/whelen/_ref-body-perplexity.png differ diff --git a/assets/characters/whelen/_ref-face-perplexity.png b/assets/characters/whelen/_ref-face-perplexity.png new file mode 100644 index 0000000..107709c Binary files /dev/null and b/assets/characters/whelen/_ref-face-perplexity.png differ diff --git a/assets/characters/whelen/body-determined.png b/assets/characters/whelen/body-determined.png new file mode 100644 index 0000000..2c37c46 Binary files /dev/null and b/assets/characters/whelen/body-determined.png differ diff --git a/assets/characters/whelen/body-happy.png b/assets/characters/whelen/body-happy.png new file mode 100644 index 0000000..ef40187 Binary files /dev/null and b/assets/characters/whelen/body-happy.png differ diff --git a/assets/characters/whelen/body-neutral.png b/assets/characters/whelen/body-neutral.png new file mode 100644 index 0000000..9737ccc Binary files /dev/null and b/assets/characters/whelen/body-neutral.png differ diff --git a/assets/characters/whelen/body-sad.png b/assets/characters/whelen/body-sad.png new file mode 100644 index 0000000..2056f02 Binary files /dev/null and b/assets/characters/whelen/body-sad.png differ diff --git a/assets/characters/whelen/body-tired.png b/assets/characters/whelen/body-tired.png new file mode 100644 index 0000000..855a49d Binary files /dev/null and b/assets/characters/whelen/body-tired.png differ diff --git a/assets/characters/whelen/body-worry.png b/assets/characters/whelen/body-worry.png new file mode 100644 index 0000000..2dd85e2 Binary files /dev/null and b/assets/characters/whelen/body-worry.png differ diff --git a/assets/characters/whelen/face-anticipation.png b/assets/characters/whelen/face-anticipation.png new file mode 100644 index 0000000..0be27d0 Binary files /dev/null and b/assets/characters/whelen/face-anticipation.png differ diff --git a/assets/characters/whelen/face-bored.png b/assets/characters/whelen/face-bored.png new file mode 100644 index 0000000..d376b4d Binary files /dev/null and b/assets/characters/whelen/face-bored.png differ diff --git a/assets/characters/whelen/face-happy.png b/assets/characters/whelen/face-happy.png new file mode 100644 index 0000000..af35cae Binary files /dev/null and b/assets/characters/whelen/face-happy.png differ diff --git a/assets/characters/whelen/face-neutral.png b/assets/characters/whelen/face-neutral.png new file mode 100644 index 0000000..1a93432 Binary files /dev/null and b/assets/characters/whelen/face-neutral.png differ diff --git a/assets/characters/whelen/face-skeptic.png b/assets/characters/whelen/face-skeptic.png new file mode 100644 index 0000000..33cc063 Binary files /dev/null and b/assets/characters/whelen/face-skeptic.png differ diff --git a/assets/characters/whelen/face-tired.png b/assets/characters/whelen/face-tired.png new file mode 100644 index 0000000..f395166 Binary files /dev/null and b/assets/characters/whelen/face-tired.png differ diff --git a/assets/characters/whelen/face-worry.png b/assets/characters/whelen/face-worry.png new file mode 100644 index 0000000..563b68e Binary files /dev/null and b/assets/characters/whelen/face-worry.png differ diff --git a/assets/graphics/brandedbull.svg b/assets/graphics/brandedbull.svg new file mode 100644 index 0000000..7188e7a --- /dev/null +++ b/assets/graphics/brandedbull.svg @@ -0,0 +1,420 @@ + + + +image/svg+xml diff --git a/assets/graphics/fa/bitcoin.svg b/assets/graphics/fa/bitcoin.svg new file mode 100644 index 0000000..8815bce --- /dev/null +++ b/assets/graphics/fa/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/block-quote.svg b/assets/graphics/fa/block-quote.svg new file mode 100644 index 0000000..faa51e9 --- /dev/null +++ b/assets/graphics/fa/block-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/book.svg b/assets/graphics/fa/book.svg new file mode 100644 index 0000000..a4957d9 --- /dev/null +++ b/assets/graphics/fa/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/browser.svg b/assets/graphics/fa/browser.svg new file mode 100644 index 0000000..fe78601 --- /dev/null +++ b/assets/graphics/fa/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/candy-bar.svg b/assets/graphics/fa/candy-bar.svg new file mode 100644 index 0000000..3c0bdfa --- /dev/null +++ b/assets/graphics/fa/candy-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/chevrons-down.svg b/assets/graphics/fa/chevrons-down.svg new file mode 100644 index 0000000..0fab552 --- /dev/null +++ b/assets/graphics/fa/chevrons-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/circle-info.svg b/assets/graphics/fa/circle-info.svg new file mode 100644 index 0000000..025e8d0 --- /dev/null +++ b/assets/graphics/fa/circle-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/circle-quarters.svg b/assets/graphics/fa/circle-quarters.svg new file mode 100644 index 0000000..31f53d2 --- /dev/null +++ b/assets/graphics/fa/circle-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/code.svg b/assets/graphics/fa/code.svg new file mode 100644 index 0000000..c43b6d1 --- /dev/null +++ b/assets/graphics/fa/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/codeberg.svg b/assets/graphics/fa/codeberg.svg new file mode 100644 index 0000000..d5fdd1a --- /dev/null +++ b/assets/graphics/fa/codeberg.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/graphics/fa/comment.svg b/assets/graphics/fa/comment.svg new file mode 100644 index 0000000..a113bb1 --- /dev/null +++ b/assets/graphics/fa/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/cowbell.svg b/assets/graphics/fa/cowbell.svg new file mode 100644 index 0000000..6b176d6 --- /dev/null +++ b/assets/graphics/fa/cowbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/ebay.svg b/assets/graphics/fa/ebay.svg new file mode 100644 index 0000000..cc19ef6 --- /dev/null +++ b/assets/graphics/fa/ebay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/ellipsis.svg b/assets/graphics/fa/ellipsis.svg new file mode 100644 index 0000000..454acdc --- /dev/null +++ b/assets/graphics/fa/ellipsis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/ethereum.svg b/assets/graphics/fa/ethereum.svg new file mode 100644 index 0000000..b200fd2 --- /dev/null +++ b/assets/graphics/fa/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/file-alt.svg b/assets/graphics/fa/file-alt.svg new file mode 100644 index 0000000..cbeb1cd --- /dev/null +++ b/assets/graphics/fa/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/file-signature.svg b/assets/graphics/fa/file-signature.svg new file mode 100644 index 0000000..393f01d --- /dev/null +++ b/assets/graphics/fa/file-signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/github.svg b/assets/graphics/fa/github.svg new file mode 100644 index 0000000..af1538f --- /dev/null +++ b/assets/graphics/fa/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/gitlab.svg b/assets/graphics/fa/gitlab.svg new file mode 100644 index 0000000..53448bd --- /dev/null +++ b/assets/graphics/fa/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/globe.svg b/assets/graphics/fa/globe.svg new file mode 100644 index 0000000..7f6ac96 --- /dev/null +++ b/assets/graphics/fa/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/google-scholar.svg b/assets/graphics/fa/google-scholar.svg new file mode 100644 index 0000000..e2b6347 --- /dev/null +++ b/assets/graphics/fa/google-scholar.svg @@ -0,0 +1 @@ + diff --git a/assets/graphics/fa/graduation-cap.svg b/assets/graphics/fa/graduation-cap.svg new file mode 100644 index 0000000..c8cf5f7 --- /dev/null +++ b/assets/graphics/fa/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/hacker-news.svg b/assets/graphics/fa/hacker-news.svg new file mode 100644 index 0000000..1d402c1 --- /dev/null +++ b/assets/graphics/fa/hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/home.svg b/assets/graphics/fa/home.svg new file mode 100644 index 0000000..4375a16 --- /dev/null +++ b/assets/graphics/fa/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/house.svg b/assets/graphics/fa/house.svg new file mode 100644 index 0000000..4375a16 --- /dev/null +++ b/assets/graphics/fa/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/lightning.svg b/assets/graphics/fa/lightning.svg new file mode 100644 index 0000000..e8cc00c --- /dev/null +++ b/assets/graphics/fa/lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/link.svg b/assets/graphics/fa/link.svg new file mode 100644 index 0000000..9ace2c7 --- /dev/null +++ b/assets/graphics/fa/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/lutris.svg b/assets/graphics/fa/lutris.svg new file mode 100644 index 0000000..fd6d2aa --- /dev/null +++ b/assets/graphics/fa/lutris.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + diff --git a/assets/graphics/fa/matrix.svg b/assets/graphics/fa/matrix.svg new file mode 100644 index 0000000..a178912 --- /dev/null +++ b/assets/graphics/fa/matrix.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/graphics/fa/monero.svg b/assets/graphics/fa/monero.svg new file mode 100644 index 0000000..2a1a5dc --- /dev/null +++ b/assets/graphics/fa/monero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/notebook.svg b/assets/graphics/fa/notebook.svg new file mode 100644 index 0000000..e8c472d --- /dev/null +++ b/assets/graphics/fa/notebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/orcid.svg b/assets/graphics/fa/orcid.svg new file mode 100644 index 0000000..59d1496 --- /dev/null +++ b/assets/graphics/fa/orcid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/p.svg b/assets/graphics/fa/p.svg new file mode 100644 index 0000000..8082e1d --- /dev/null +++ b/assets/graphics/fa/p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/podium.svg b/assets/graphics/fa/podium.svg new file mode 100644 index 0000000..651ac61 --- /dev/null +++ b/assets/graphics/fa/podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/presentation.svg b/assets/graphics/fa/presentation.svg new file mode 100644 index 0000000..f0e782f --- /dev/null +++ b/assets/graphics/fa/presentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/right-to-bracket.svg b/assets/graphics/fa/right-to-bracket.svg new file mode 100644 index 0000000..0d86ac3 --- /dev/null +++ b/assets/graphics/fa/right-to-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/rss.svg b/assets/graphics/fa/rss.svg new file mode 100644 index 0000000..ce2e0d4 --- /dev/null +++ b/assets/graphics/fa/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/scale-balanced.svg b/assets/graphics/fa/scale-balanced.svg new file mode 100644 index 0000000..3423b7f --- /dev/null +++ b/assets/graphics/fa/scale-balanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/scroll.svg b/assets/graphics/fa/scroll.svg new file mode 100644 index 0000000..2d5e7a8 --- /dev/null +++ b/assets/graphics/fa/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/spotify.svg b/assets/graphics/fa/spotify.svg new file mode 100644 index 0000000..cb99987 --- /dev/null +++ b/assets/graphics/fa/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/stack-overflow.svg b/assets/graphics/fa/stack-overflow.svg new file mode 100644 index 0000000..8fe3d70 --- /dev/null +++ b/assets/graphics/fa/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/steam.svg b/assets/graphics/fa/steam.svg new file mode 100644 index 0000000..ff6db89 --- /dev/null +++ b/assets/graphics/fa/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/tag.svg b/assets/graphics/fa/tag.svg new file mode 100644 index 0000000..ef06d64 --- /dev/null +++ b/assets/graphics/fa/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/university.svg b/assets/graphics/fa/university.svg new file mode 100644 index 0000000..a99a14e --- /dev/null +++ b/assets/graphics/fa/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/user-astronaut.svg b/assets/graphics/fa/user-astronaut.svg new file mode 100644 index 0000000..2f6d921 --- /dev/null +++ b/assets/graphics/fa/user-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/user.svg b/assets/graphics/fa/user.svg new file mode 100644 index 0000000..8b31931 --- /dev/null +++ b/assets/graphics/fa/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/video.svg b/assets/graphics/fa/video.svg new file mode 100644 index 0000000..c4052b1 --- /dev/null +++ b/assets/graphics/fa/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/vimeo.svg b/assets/graphics/fa/vimeo.svg new file mode 100644 index 0000000..ee03fa1 --- /dev/null +++ b/assets/graphics/fa/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/w.svg b/assets/graphics/fa/w.svg new file mode 100644 index 0000000..59396f5 --- /dev/null +++ b/assets/graphics/fa/w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/zcash.svg b/assets/graphics/fa/zcash.svg new file mode 100644 index 0000000..2a9c9d7 --- /dev/null +++ b/assets/graphics/fa/zcash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/graphics/fa/zotero.svg b/assets/graphics/fa/zotero.svg new file mode 100644 index 0000000..2948c62 --- /dev/null +++ b/assets/graphics/fa/zotero.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/graphics/millironx-icon.png b/assets/graphics/millironx-icon.png new file mode 100644 index 0000000..1c4913f Binary files /dev/null and b/assets/graphics/millironx-icon.png differ diff --git a/graphics/millironx-icon.svg b/assets/graphics/millironx-icon.svg similarity index 100% rename from graphics/millironx-icon.svg rename to assets/graphics/millironx-icon.svg diff --git a/graphics/millironx.svg b/assets/graphics/millironx.svg similarity index 100% rename from graphics/millironx.svg rename to assets/graphics/millironx.svg diff --git a/assets/images/404.jpg b/assets/images/404.jpg new file mode 100644 index 0000000..fa78691 Binary files /dev/null and b/assets/images/404.jpg differ diff --git a/assets/images/Ai-calf.jpg b/assets/images/Ai-calf.jpg new file mode 100644 index 0000000..cb8b6c3 Binary files /dev/null and b/assets/images/Ai-calf.jpg differ diff --git a/assets/images/camera.jpg b/assets/images/camera.jpg new file mode 100644 index 0000000..8b3e08e Binary files /dev/null and b/assets/images/camera.jpg differ diff --git a/assets/images/cannulated-cows.jpg b/assets/images/cannulated-cows.jpg new file mode 100644 index 0000000..907947f Binary files /dev/null and b/assets/images/cannulated-cows.jpg differ diff --git a/images/saddles.jpg b/assets/images/saddles.jpg similarity index 100% rename from images/saddles.jpg rename to assets/images/saddles.jpg diff --git a/assets/scripts/phone-masking.js b/assets/scripts/phone-masking.js new file mode 100644 index 0000000..fd2d427 --- /dev/null +++ b/assets/scripts/phone-masking.js @@ -0,0 +1,15 @@ +// Built by perplexity.ai +function maskPhoneNumber(input) { + input.addEventListener("input", function (e) { + var x = e.target.value + .replace(/\D/g, "") + .match(/(\d{0,3})(\d{0,3})(\d{0,4})/); + e.target.value = !x[2] + ? x[1] + : "(" + x[1] + ") " + x[2] + (x[3] ? "-" + x[3] : ""); + }); +} + +// Usage +var phoneInput = document.getElementById("phone"); +maskPhoneNumber(phoneInput); diff --git a/assets/styles/millironx.css b/assets/styles/millironx.css new file mode 100644 index 0000000..00ad31e --- /dev/null +++ b/assets/styles/millironx.css @@ -0,0 +1,839 @@ +:root { + /* + Color schemes + */ + color-scheme: light dark; + + --ear-tag-red-1: oklch(97.5% 0.016 35.7); + --ear-tag-red-2: oklch(95.9% 0.027 37.7); + --ear-tag-red-3: oklch(91.8% 0.055 33.4); + --ear-tag-red-4: oklch(84% 0.092 29.8); + --ear-tag-red-5: oklch(80% 0.123 29.8); + --ear-tag-red-6: oklch(71% 0.146 29.8); + --ear-tag-red-7: oklch(66% 0.154 29.8); + --ear-tag-red-8: oklch(58% 0.162 29.8); + --ear-tag-red-9: oklch(53% 0.154 29.8); + --ear-tag-red-10: oklch(49% 0.146 29.8); + --ear-tag-red-11: oklch(42% 0.131 29.8); + --ear-tag-red-12: oklch(35% 0.115 29.8); + --ear-tag-red-13: oklch(27% 0.092 29.8); + --ear-tag-red-14: oklch(20% 0.07 29.8); + --ear-tag-red-15: oklch(16% 0.054 29.8); + --ear-tag-red-16: oklch(10% 0.039 29.8); + --ear-tag-red: var(--ear-tag-red-12); + + --swiss-brown-1: oklch(98% 0.011 67.7); + --swiss-brown-2: oklch(97% 0.023 67.7); + --swiss-brown-3: oklch(93% 0.039 67.7); + --swiss-brown-4: oklch(84% 0.046 67.7); + --swiss-brown-5: oklch(80% 0.061 67.7); + --swiss-brown-6: oklch(71% 0.072 67.7); + --swiss-brown-7: oklch(66% 0.076 67.7); + --swiss-brown-8: oklch(58% 0.08 67.7); + --swiss-brown-9: oklch(53% 0.076 67.7); + --swiss-brown-10: oklch(49% 0.072 67.7); + --swiss-brown-11: oklch(42% 0.065 67.7); + --swiss-brown-12: oklch(35% 0.057 67.7); + --swiss-brown-13: oklch(27% 0.046 67.7); + --swiss-brown-14: oklch(20% 0.035 67.7); + --swiss-brown-15: oklch(16% 0.027 67.7); + --swiss-brown-16: oklch(10% 0.019 67.7); + --swiss-brown: var(--swiss-brown-12); + + --prickly-pear-yellow-1: oklch(98% 0.017 94.5); + --prickly-pear-yellow-2: oklch(97% 0.035 94.5); + --prickly-pear-yellow-3: oklch(93% 0.059 94.5); + --prickly-pear-yellow-4: oklch(84% 0.07 94.5); + --prickly-pear-yellow-5: oklch(80% 0.093 94.5); + --prickly-pear-yellow-6: oklch(71% 0.11 94.5); + --prickly-pear-yellow-7: oklch(66% 0.116 94.5); + --prickly-pear-yellow-8: oklch(58% 0.122 94.5); + --prickly-pear-yellow-9: oklch(53% 0.116 94.5); + --prickly-pear-yellow-10: oklch(49% 0.11 94.5); + --prickly-pear-yellow-11: oklch(42% 0.099 94.5); + --prickly-pear-yellow-12: oklch(35% 0.083 93.6); + --prickly-pear-yellow-13: oklch(27.1% 0.064 92.8); + --prickly-pear-yellow-14: oklch(20% 0.047 92.4); + --prickly-pear-yellow-15: oklch(16% 0.038 93.3); + --prickly-pear-yellow-16: oklch(10% 0.024 89.7); + --prickly-pear-yellow: var(--prickly-pear-yellow-7); + + --hayyard-green-1: oklch(98% 0.014 135); + --hayyard-green-2: oklch(97% 0.03 135); + --hayyard-green-3: oklch(93% 0.049 135); + --hayyard-green-4: oklch(84% 0.058 135); + --hayyard-green-5: oklch(80% 0.078 135); + --hayyard-green-6: oklch(71% 0.092 135); + --hayyard-green-7: oklch(66% 0.097 135); + --hayyard-green-8: oklch(58% 0.103 135); + --hayyard-green-9: oklch(53% 0.097 135); + --hayyard-green-10: oklch(49% 0.092 135); + --hayyard-green-11: oklch(42% 0.083 135); + --hayyard-green-12: oklch(35% 0.073 135); + --hayyard-green-13: oklch(27% 0.058 135); + --hayyard-green-14: oklch(20% 0.044 135); + --hayyard-green-15: oklch(16% 0.034 135); + --hayyard-green-16: oklch(10% 0.025 135); + --hayyard-green: var(--hayyard-green-11); + + --flaming-gorge-blue-1: oklch(98% 0.012 241); + --flaming-gorge-blue-2: oklch(96.8% 0.021 230); + --flaming-gorge-blue-3: oklch(92.9% 0.041 242); + --flaming-gorge-blue-4: oklch(84% 0.051 245); + --flaming-gorge-blue-5: oklch(80% 0.069 245); + --flaming-gorge-blue-6: oklch(71% 0.081 245); + --flaming-gorge-blue-7: oklch(66% 0.086 245); + --flaming-gorge-blue-8: oklch(58% 0.09 245); + --flaming-gorge-blue-9: oklch(53% 0.086 245); + --flaming-gorge-blue-10: oklch(49% 0.081 245); + --flaming-gorge-blue-11: oklch(42% 0.073 245); + --flaming-gorge-blue-12: oklch(35% 0.064 245); + --flaming-gorge-blue-13: oklch(27% 0.051 245); + --flaming-gorge-blue-14: oklch(20% 0.039 245); + --flaming-gorge-blue-15: oklch(16% 0.03 245); + --flaming-gorge-blue-16: oklch(10% 0.022 245); + --flaming-gorge-blue: var(--flaming-gorge-blue-12); + + --coeurdalene-purple-1: oklch(97.8% 0.016 311); + --coeurdalene-purple-2: oklch(96.5% 0.026 314); + --coeurdalene-purple-3: oklch(92.5% 0.052 308); + --coeurdalene-purple-4: oklch(84% 0.097 302); + --coeurdalene-purple-5: oklch(80% 0.129 302); + --coeurdalene-purple-6: oklch(71% 0.153 302); + --coeurdalene-purple-7: oklch(66% 0.162 302); + --coeurdalene-purple-8: oklch(58% 0.17 302); + --coeurdalene-purple-9: oklch(53% 0.162 302); + --coeurdalene-purple-10: oklch(49% 0.153 302); + --coeurdalene-purple-11: oklch(42% 0.138 302); + --coeurdalene-purple-12: oklch(35% 0.121 302); + --coeurdalene-purple-13: oklch(27% 0.097 302); + --coeurdalene-purple-14: oklch(20% 0.073 302); + --coeurdalene-purple-15: oklch(16% 0.056 302); + --coeurdalene-purple-16: oklch(10% 0.041 302); + --coeurdalene-purple: var(--coeurdalene-purple-13); + + --eclipse-1: oklch(98% 0 0); + --eclipse-2: oklch(97% 0 0); + --eclipse-3: oklch(93% 0 0); + --eclipse-4: oklch(84% 0 0); + --eclipse-5: oklch(80% 0 0); + --eclipse-6: oklch(71% 0 0); + --eclipse-7: oklch(66% 0 0); + --eclipse-8: oklch(58% 0 0); + --eclipse-9: oklch(53% 0 0); + --eclipse-10: oklch(49% 0 0); + --eclipse-11: oklch(42% 0 0); + --eclipse-12: oklch(35% 0 0); + --eclipse-13: oklch(27% 0 0); + --eclipse-14: oklch(20% 0 0); + --eclipse-15: oklch(16% 0 0); + --eclipse-16: oklch(10% 0 0); + --eclipse: var(--eclipse-12); + + --cowhide-1: oklch(98% 0.009 77.5); + --cowhide-2: oklch(97% 0.018 77.5); + --cowhide-3: oklch(93% 0.029 77.5); + --cowhide-4: oklch(84% 0.034 77.5); + --cowhide-5: oklch(80% 0.046 77.5); + --cowhide-6: oklch(71% 0.054 77.5); + --cowhide-7: oklch(66% 0.057 77.5); + --cowhide-8: oklch(58% 0.06 77.5); + --cowhide-9: oklch(53% 0.057 77.5); + --cowhide-10: oklch(49% 0.054 77.5); + --cowhide-11: oklch(42% 0.049 77.5); + --cowhide-12: oklch(35% 0.043 77.5); + --cowhide-13: oklch(27% 0.034 77.5); + --cowhide-14: oklch(20% 0.026 77.5); + --cowhide-15: oklch(16% 0.02 77.5); + --cowhide-16: oklch(10% 0.015 77.5); + --cowhide: var(--cowhide-3); + + --body-background: light-dark(var(--cowhide-3), var(--eclipse-11)); + --link-color: light-dark( + var(--flaming-gorge-blue), + var(--coeurdalene-purple-4) + ); + --nav-button-text: light-dark(var(--eclipse-2), var(--cowhide-12)); + --nav-button-background: light-dark(var(--eclipse-11), var(--cowhide-2)); + --nav-button-background-hover: light-dark( + var(--eclipse-13), + var(--cowhide-4) + ); + --nav-button-background-active: light-dark( + var(--eclipse-14), + var(--cowhide-5) + ); + --container-border: light-dark(var(--swiss-brown-6), var(--eclipse-16)); + --container-background: light-dark(var(--swiss-brown-4), var(--eclipse-12)); + --container-border-alt: light-dark(var(--eclipse-16), var(--swiss-brown-6)); + --container-background-alt: light-dark( + var(--eclipse-12), + var(--swiss-brown-4) + ); + --motto-background: rgba(0, 0, 0, 0.66); + --page-button-text: var(--prickly-pear-yellow-1); + --page-button-background: var(--prickly-pear-yellow-8); + --page-button-background-hover: var(--prickly-pear-yellow-10); + --page-button-background-active: var(--prickly-pear-yellow-12); + --page-button-background-disabled: var(--prickly-pear-yellow-6); + --page-button-text-disabled: var(--eclipse-7); + + /* + Fonts + */ + --font-family-antique: Superclarendon, "Bookman Old Style", "URW Bookman", + "URW Bookman L", "Georgia Pro", Georgia, serif; + --font-family-slab-serif: Rockwell, "Rockwell Nova", "Roboto Slab", + "DejaVu Serif", "Sitka Small", serif; + --font-family-transitional: Charter, "Bitstream Charter", "Sitka Text", + Cambria, serif; + --font-family-system-ui: system-ui, sans-serif; + --font-family-monospace: "Nimbus Mono PS", "Courier New", monospace; +} + +/* + Default element styles (for small screens) +*/ + +html { + background-color: var(--body-background); + font-family: var(--font-family-slab-serif); +} + +body { + display: flex; + flex-direction: column; + min-height: 98vh; + margin: 0 8px; + align-items: center; +} + +.container { + max-width: min(60rem, 100vw - 2rem); +} + +.footer-inner { + width: min(60rem, 100vw - 2rem); + display: flex; + justify-content: space-between; + align-items: center; + flex-shrink: 0; +} + +a { + color: var(--link-color); +} + +header { + display: flex; + justify-content: space-evenly; + align-items: center; +} + +nav { + display: flex; + flex-direction: row; + overflow: scroll; + padding-bottom: 1rem; + position: sticky; + top: 0; +} + +nav a { + color: var(--nav-button-text); + background-color: var(--nav-button-background); + border-radius: 0.05rem; + border-style: outset; + border-width: 0.2rem; + border-color: var(--nav-button-background); + min-width: 7.5rem; + max-width: 7.5rem; + display: flex; + justify-content: space-between; + align-items: center; + margin: 0.2rem; + text-decoration: none; + padding: 0 0.2rem; + font-family: var(--font-family-system-ui); +} + +nav a.active { + background-color: var(--nav-button-background-active); +} + +nav a:active { + border-style: inset; +} + +nav a:hover { + background-color: var(--nav-button-background-hover); +} + +main { + display: flex; + flex-direction: column; +} + +article p, +.character-dialog-text, +article li { + font-family: var(--font-family-transitional); + font-size: 1.15rem; + text-justify: inter-word; + text-align: justify; + hyphens: auto; +} + +article > p { + text-indent: 2ch; + line-height: 1.5em; +} + +article h1 + p, +article h2 + p, +article h3 + p, +article h4 + p, +article h5 + p, +article h6 + p { + text-indent: 0; +} + +.footnotes p { + font-size: smaller; +} + +figure { + border-color: var(--container-border); + border-width: 1.5pt; + border-style: inset; + border-radius: 2.5pt; + background-color: var(--container-background); + padding: 1.25pt; +} + +figure:has(blockquote) { + background: linear-gradient( + to right, + var(--container-border), + var(--container-background) + ); + border: none; + border-radius: 0; + border-left: 6px solid black; + padding: 0.25em 1em; +} + +figure:has(blockquote) > blockquote { + margin: 0; +} + +figure:has(blockquote) > figcaption::before { + content: "\2014 \00A0"; +} + +figure:has(blockquote) > figcaption { + margin-top: -1em; + margin-bottom: 1em; + font-size: 80%; +} + +footer { + display: flex; + flex-direction: column; + align-items: center; + background-color: var(--container-background); + margin: 0 0 -1em -1em; + width: calc(100% - 1em); + padding: 0.25em 1.25em; + font-size: smaller; +} + +form { + margin: 1rem; +} + +fieldset { + padding: 1rem; +} + +input, +select, +textarea { + width: 100%; + margin-bottom: 0.5rem; +} + +input:invalid, +select:invalid, +textarea:invalid { + border-bottom-width: 2px; + border-bottom-color: var(--ear-tag-red); +} + +code { + font-family: var(--font-family-monospace); +} + +/* + abbr element "tooltip" for mobile + heavily modified from https://bitsofco.de/making-abbr-work-for-touchscreen-keyboard-mouse/ +*/ +abbr[title]:focus::after { + content: attr(title); + background-color: #1e1e1e; + color: #fff; + border-radius: 0.125em; + box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.4); + font-size: smaller; + padding: 0.5em; + display: block; +} + +/* + Container-type helper classes +*/ +.row { + display: flex; + flex-direction: column; + width: 100%; +} + +.motto-wrapper { + display: block; + flex: 1 0 30vh; + margin-bottom: 1em; +} + +.motto { + position: relative; + display: grid; + place-items: center; + text-align: center; + color: #fff; + font-weight: 600; + text-shadow: 0 0 10px rgba(0, 0, 0, 0.33); + width: 100%; + height: 100%; + padding: 0 0 0.5em 0; + border-radius: 0.25rem; + z-index: 10; +} + +.motto::before { + content: " "; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + box-sizing: border-box; + background-size: cover; + background-position: 50% 50%; +} + +.motto-inside { + position: relative; + max-width: 95%; + display: grid; + place-items: center; + text-align: center; +} + +.motto .motto-inside h1 { + background-color: var(--motto-background); + padding: 0.5rem; +} + +.card { + background-color: var(--container-background); + border-color: var(--container-border); + border-width: 1.5pt; + border-radius: 0.1rem; + border-style: outset; + margin: 1rem 0; + padding: 0.5rem; + padding-top: 0; + display: flex; + flex-direction: column; +} + +.card-content { + display: flex; + flex-direction: column; + flex-grow: 1; +} + +.card-header { + display: flex; + flex-direction: row; + justify-content: space-between; + flex-grow: 1; +} + +.card-link { + white-space: nowrap; + display: inline-flex; + gap: 0.375rem; + align-items: center; + text-underline-offset: 0.25em; + backface-visibility: hidden; + margin: 0.1em 0.25em; + padding: 0.33em; + padding-right: 0.45em; +} + +.card-body { + margin-top: 0.33em; +} + +.category-button { + display: grid; + align-items: center; + justify-items: center; + color: white; + background-color: var(--ear-tag-red); + border-radius: 0.5em; + padding: 1em; + margin: 1em; + height: 2em; + aspect-ratio: 1 / 1; +} + +.card-title > a { + color: inherit; +} + +.img-thumbnail { + width: 100%; + height: auto; + margin-top: 0.5rem; +} + +.thumb-icon-wrapper { + margin-top: 1rem; + display: flex; + justify-content: center; + align-content: center; +} + +.thumb-icon-badge { + font-size: xx-large; + justify-self: center; + align-self: center; + padding: 1.5rem 3rem; + border-radius: 3rem; + background-color: var(--ear-tag-red); + color: white; +} + +.fa-container svg { + overflow: visible; + box-sizing: content-box; + display: inline-block; + height: 1em; + width: 1.25em; + vertical-align: -0.125em; +} + +.fa-container svg path { + fill: currentColor; +} + +.account-bucket { + display: grid; + grid-template-columns: 3em 1em 1fr; + background-color: var(--container-background-alt); + padding: 1em 0; + border-radius: 0.5em; + border-color: var(--container-border-alt); + border-style: solid; + color: light-dark(white, black); + margin: 1em 0; + align-items: center; +} + +.account-bucket h3 { + align-self: center; + writing-mode: sideways-lr; +} + +.account-bucket details { + grid-column: 3; +} + +.account-bucket .crypto-list { + grid-column: 3; + max-width: 100%; +} + +.account-list { + display: flex; + justify-content: space-between; + flex-wrap: wrap; + width: calc(100% - 1.5em); +} + +.account-bucket .account-list { + grid-column: 3; +} + +.account-list a { + font-size: xx-large; + text-decoration: none; + color: inherit; + padding: 0.5em; +} + +.account-list a:hover { + background-color: var(--container-background); + border-color: var(--container-border); + border-width: 2.5px; + border-radius: 0.5em; + border-style: solid; + padding: calc(0.5em - 2.5px); +} + +figcaption .mono { + color: light-dark(black, white); + overflow-wrap: anywhere; +} + +.crypto-list details { + max-width: 100%; +} + +.character-dialog { + display: grid; + width: calc(100% - 1rem); + grid-template-columns: 5rem 1fr; + grid-template-rows: auto auto; + gap: 1em; + margin: 0.5rem; +} + +.character-avatar { + display: grid; + max-width: 100%; + grid-row: 1 / span 2; + grid-column: 1; + align-self: start; + align-items: center; + justify-items: center; + min-width: 5rem; + min-height: 5rem; + border-radius: 5rem; + align-items: center; + border-style: solid; + border-color: var(--nav-button-background-hover); + background-color: var(--cowhide-2); +} + +.character-avatar > img { + max-width: 4rem; + max-height: 4rem; +} + +.character-dialog-bubble { + display: grid; + grid-template-rows: auto auto; + align-self: start; + border-radius: 0.5em; + border-width: 0.2rem; + border-color: var(--nav-button-background); + border-style: outset; + row-gap: 0.5rem; + padding: 0.5rem; + background-color: var(--container-border); + min-height: 5rem; +} + +.character-dialog-title { + font-weight: bolder; +} + +/* + Helper classes +*/ +.font-small-caps { + font-variant-caps: small-caps; +} + +.img-fluid { + max-width: 100%; + height: auto; + display: grid; + align-items: center; + justify-items: center; +} + +.float-left { + float: none; + max-width: 100%; +} + +.float-right { + float: none; + max-width: 100%; +} + +.pagination { + display: flex; + justify-content: center; + gap: 0.5em; + padding-left: 0; +} + +.pagination li { + list-style-type: none; + color: var(--nav-button-text); +} + +.pagination li a { + color: var(--page-button-text); + background-color: var(--page-button-background); + border-radius: 0.05rem; + border-style: outset; + border-width: 0.2rem; + border-color: var(--page-button-background); + width: 2rem; + max-width: 1.8vw; + aspect-ratio: 1 / 1; + display: flex; + justify-content: center; + align-items: center; + margin: 0.2rem; + text-decoration: none; + padding: 0 0.2rem; + font-family: var(--font-family-system-ui); +} + +.pagination li a:hover { + background-color: var(--page-button-background-hover); +} + +.pagination li.active a { + background-color: var(--page-button-background-active); +} + +.pagination li.disabled a { + cursor: not-allowed; + background-color: var(--page-button-background-disabled); + color: var(--page-button-text-disabled); + border-style: solid; +} + +.mono { + font-family: var(--font-family-monospace); + font-weight: 600; +} + +.bolder { + font-weight: bolder; + background-color: rgba(0, 0, 0, 0.33); + border-radius: 0.25em; +} + +/* Specific elements */ +#content { + flex: 1 0 max-content; +} + +/* + Desktop screen size adjustments +*/ +@media (min-width: 768px) { + /* + Default element styles + */ + nav { + flex-direction: column; + padding-right: 1rem; + padding-bottom: 0; + + /* + Workaround for Chrome always showing scrollbar even when scrolling not needed + */ + -ms-overflow-style: none; + scrollbar-width: none; + } + + /* + Continued Chrome workaround + */ + nav::-webkit-scrollbar { + display: none; + } + + main { + width: calc(100% - 10rem); + } + + /* + Container-type helper classes + */ + .row { + flex-direction: row; + } + + .person-profile { + position: sticky; + top: 0; + width: 300px; + min-width: 20vw; + max-width: 30vw; + margin-bottom: 5vh; + } + + /* + Helper classes + */ + .float-left { + float: left; + max-width: 50%; + } + + .float-right { + float: right; + max-width: 50%; + } + + .card { + flex-direction: row; + } + + .img-thumbnail { + margin-right: 1rem; + } + + .card-thumbnail { + width: 20vw; + flex-shrink: 0; + } + + .card-thumbnail:not( + :has(~ .card-content > .card-header > .card-title > .dt-published) + ) { + width: 10vw; + } + + .card-content { + margin-left: 1rem; + } + + /* + Clearfix implementation + */ + h1::before, + h2::before, + h3::before, + h4::before, + h5::before, + h6::before, + blockquote::before { + content: " "; /* Older browser do not support empty content */ + visibility: hidden; + display: block; + height: 0; + clear: both; + } +} /* end @media */ diff --git a/assets/styles/mix-twbs.scss b/assets/styles/mix-twbs.scss new file mode 100644 index 0000000..536f92e --- /dev/null +++ b/assets/styles/mix-twbs.scss @@ -0,0 +1,179 @@ +$web-font-path: "/fonts/nunito-sans/index.css"; + +@import "bootstrap/functions"; +@import "bootswatch/lux/variables"; +@import "bootstrap/bootstrap"; +@import "bootswatch/lux/bootswatch"; + +$peek-height: 25rem; + +.blurred-container { + position: relative; + width: 100%; + min-height: 35vh; + height: $peek-height; + 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; + -webkit-text-stroke: 0.3px $gray-100; + line-height: 1; +} + +.blurred-container .img-src { + position: fixed; + width: 100%; + min-height: 35vh; + height: $peek-height; + background-repeat: no-repeat; + background-size: cover; + background-position: center center; +} + +.list-main { + position: relative; + background-color: #fff; + padding-bottom: calc(1rem + 95px); + padding-top: 1rem; +} + +.footer-contents { + position: relative; + background-color: $gray-200; +} + +/* 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; +} + +.table-condensed th { + padding: 0.5rem; +} + +.table-condensed td { + padding: 0.5rem; +} + +@media (min-width: map-get($grid-breakpoints, md)) { + .fixed-bottom { + left: 25%; + } + + .md-max-width-33 { + max-width: 33%; + } +} + +.card-link { + white-space: nowrap; +} + +.category-button { + position: absolute; + top: 1em; + right: 1em; + display: grid; +} + +.card-title { + margin-right: 2.25em; +} + +.thumb-icon-wrapper { + display: flex; + justify-content: center; +} + +.thumb-icon-badge { + font-size: xx-large; +} diff --git a/assets/styles/scrolling-header.css b/assets/styles/scrolling-header.css new file mode 100644 index 0000000..acc8a4b --- /dev/null +++ b/assets/styles/scrolling-header.css @@ -0,0 +1,68 @@ +@media (prefers-reduced-motion: no-preference) { + @supports (animation-timeline: scroll()) and (animation-range: 0 50vh) { + @keyframes sticky-header { + from { + flex-basis: 30vh; + } + + to { + flex-basis: 0; + } + } + + .motto-wrapper { + position: sticky; + top: 0; + z-index: 100; + + animation: sticky-header linear forwards; + animation-timeline: scroll(); + animation-range: 0 30vh; + + contain: content; + } + + @keyframes blurry-header { + from { + filter: blur(0); + } + + to { + filter: blur(3.5px); + } + } + + .motto::before { + animation: blurry-header linear forwards; + animation-timeline: scroll(); + animation-range: 0 30vh; + } + + @keyframes transparent-text-bg { + from { + background-color: var(--motto-background); + text-shadow: 0 0 10px rgba(0, 0, 0, 0.33); + } + to { + background-color: rgba(0, 0, 0, 0); + text-shadow: 0 0 10px rgba(0, 0, 0, 1); + } + } + .motto-inside h1 { + animation: transparent-text-bg linear forwards; + animation-timeline: scroll(); + animation-range: 0 30vh; + } + + .motto-inside h1 small { + display: block; + font-size: calc(1vh + 1vw); + line-height: calc(1vh + 1vw); + } + + main section { + margin: 0 0.25em; + contain: content; + } + } /* end @supports */ +} /* end @media */ diff --git a/blogroll/brian-harry/index.html b/blogroll/brian-harry/index.html deleted file mode 100644 index 85b2ab6..0000000 --- a/blogroll/brian-harry/index.html +++ /dev/null @@ -1,25 +0,0 @@ -Brian Harry's blog -- -Milliron X -
-Milliron X

Milliron X

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.

\ No newline at end of file diff --git a/blogroll/brian-harry/thumbnail_hu10069520831194753382.png b/blogroll/brian-harry/thumbnail_hu10069520831194753382.png deleted file mode 100644 index 964c999..0000000 Binary files a/blogroll/brian-harry/thumbnail_hu10069520831194753382.png and /dev/null differ diff --git a/blogroll/brian-harry/thumbnail_hu10216492754753857022.png b/blogroll/brian-harry/thumbnail_hu10216492754753857022.png deleted file mode 100644 index 9dcba38..0000000 Binary files a/blogroll/brian-harry/thumbnail_hu10216492754753857022.png and /dev/null differ diff --git a/blogroll/car-talk/index.html b/blogroll/car-talk/index.html deleted file mode 100644 index 5254cea..0000000 --- a/blogroll/car-talk/index.html +++ /dev/null @@ -1,25 +0,0 @@ -Car Talk -- -Milliron X -
-Milliron X

Milliron X

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.

\ No newline at end of file diff --git a/blogroll/car-talk/thumbnail.webp b/blogroll/car-talk/thumbnail.webp deleted file mode 100644 index d70bbd1..0000000 Binary files a/blogroll/car-talk/thumbnail.webp and /dev/null differ diff --git a/blogroll/car-talk/thumbnail_hu10488687076625406684.webp b/blogroll/car-talk/thumbnail_hu10488687076625406684.webp deleted file mode 100644 index da51740..0000000 Binary files a/blogroll/car-talk/thumbnail_hu10488687076625406684.webp and /dev/null differ diff --git a/blogroll/enoch-the-cow-vet/index.html b/blogroll/enoch-the-cow-vet/index.html deleted file mode 100644 index 045d79a..0000000 --- a/blogroll/enoch-the-cow-vet/index.html +++ /dev/null @@ -1,25 +0,0 @@ -Enoch the Cow Vet -- -Milliron X -
-Milliron X

Milliron X

A veterinarian/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.

\ No newline at end of file diff --git a/blogroll/enoch-the-cow-vet/thumbnail_hu10031223324707024153.jpg b/blogroll/enoch-the-cow-vet/thumbnail_hu10031223324707024153.jpg deleted file mode 100644 index e954ed4..0000000 Binary files a/blogroll/enoch-the-cow-vet/thumbnail_hu10031223324707024153.jpg and /dev/null differ diff --git a/blogroll/feed.xml b/blogroll/feed.xml deleted file mode 100644 index 78762a3..0000000 --- a/blogroll/feed.xml +++ /dev/null @@ -1 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/blogroll/2025-03-31T00:14:19+00:00Blogroll on Milliron X \ No newline at end of file diff --git a/blogroll/index.html b/blogroll/index.html deleted file mode 100644 index 7e3c2ba..0000000 --- a/blogroll/index.html +++ /dev/null @@ -1,37 +0,0 @@ -Blogroll -- -Milliron X -
-Milliron X

Milliron X

Blogroll

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 make that cut.

Thumbnail of thumbnail.png

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.

Read more »

Thumbnail of thumbnail.webp

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.

Read more »

Thumbnail of thumbnail.jpg

A veterinarian/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.

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.webp

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.

Read more »

\ No newline at end of file diff --git a/blogroll/index.xml b/blogroll/index.xml deleted file mode 100644 index 332e837..0000000 --- a/blogroll/index.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - Blogroll on MillironX - http://localhost:1313/blogroll/ - Recent content in Blogroll on MillironX - Hugo - en-us - - - Brian Harry's blog - http://localhost:1313/blogroll/brian-harry/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/brian-harry/ - <p>Where else are you going to find a blog about cows <em>and</em> version control? The blog is basically dead now, but it&rsquo;s still fun to go back and read the farm stories.</p> - - - Car Talk - http://localhost:1313/blogroll/car-talk/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/car-talk/ - <p>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.</p> - - - Enoch the Cow Vet - http://localhost:1313/blogroll/enoch-the-cow-vet/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/enoch-the-cow-vet/ - <p>A veterinarian/agricultural channel that doesn&rsquo;t make me cringe. &ldquo;God built these things for cows for vets &hellip; [there are] so many aspects of the cow that are just designed for vets.&rdquo; Amen, Enoch. Amen.</p> - - - Proslogion - http://localhost:1313/blogroll/proslogion/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/proslogion/ - <p>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 &ldquo;bad sermon illustrations&rdquo; posts.</p> - - - Thru the Bible - http://localhost:1313/blogroll/thru-the-bible/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/thru-the-bible/ - <p>I&rsquo;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.</p> - - - diff --git a/blogroll/page/1/index.html b/blogroll/page/1/index.html deleted file mode 100644 index 2666ce9..0000000 --- a/blogroll/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/blogroll/ - \ No newline at end of file diff --git a/blogroll/proslogion/index.html b/blogroll/proslogion/index.html deleted file mode 100644 index 077d18f..0000000 --- a/blogroll/proslogion/index.html +++ /dev/null @@ -1,25 +0,0 @@ -Proslogion -- -Milliron X -
-Milliron X

Milliron X

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.

\ No newline at end of file diff --git a/blogroll/proslogion/thumbnail_hu14581689664273495651.jpg b/blogroll/proslogion/thumbnail_hu14581689664273495651.jpg deleted file mode 100644 index 3a638b4..0000000 Binary files a/blogroll/proslogion/thumbnail_hu14581689664273495651.jpg and /dev/null differ diff --git a/blogroll/proslogion/thumbnail_hu5271583229533621133.jpg b/blogroll/proslogion/thumbnail_hu5271583229533621133.jpg deleted file mode 100644 index 34b9c69..0000000 Binary files a/blogroll/proslogion/thumbnail_hu5271583229533621133.jpg and /dev/null differ diff --git a/blogroll/thru-the-bible/index.html b/blogroll/thru-the-bible/index.html deleted file mode 100644 index 2ed9849..0000000 --- a/blogroll/thru-the-bible/index.html +++ /dev/null @@ -1,25 +0,0 @@ -Thru the Bible -- -Milliron X -
-Milliron X

Milliron X

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.

\ No newline at end of file diff --git a/blogroll/thru-the-bible/thumbnail.webp b/blogroll/thru-the-bible/thumbnail.webp deleted file mode 100644 index 39882cd..0000000 Binary files a/blogroll/thru-the-bible/thumbnail.webp and /dev/null differ diff --git a/blogroll/thru-the-bible/thumbnail_hu14295115240643308517.webp b/blogroll/thru-the-bible/thumbnail_hu14295115240643308517.webp deleted file mode 100644 index ecc255f..0000000 Binary files a/blogroll/thru-the-bible/thumbnail_hu14295115240643308517.webp and /dev/null differ diff --git a/blogroll/thumbnail_hu9537314080315470492.jpg b/blogroll/thumbnail_hu9537314080315470492.jpg deleted file mode 100644 index 178ab49..0000000 Binary files a/blogroll/thumbnail_hu9537314080315470492.jpg and /dev/null differ diff --git a/categories/blog/feed.xml b/categories/blog/feed.xml deleted file mode 100644 index 51c1b8f..0000000 --- a/categories/blog/feed.xml +++ /dev/null @@ -1,168 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/categories/blog/ - - - 2025-03-27T15:19:13-05:00 - - All blogs on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - - http://localhost:1313/posts/keep-epds-real/ - - Keep EPDs Real - 2024-07-01T00:00:00+00:00 - 2024-07-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the world of cattle breeding, there’s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll delve into what EPDs are, why they matter, and how to keep them real. -What Are EPDs? EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow’s children will look like based on their parents’ characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> <h2 id="the-basics-of-genetics">The Basics of Genetics</h2> <p>Before diving into EPDs, let&rsquo;s quickly review the basics of genetics. You see, every living thing has DNA (deoxyribonucleic acid), which contains the instructions for its development and function. The DNA is made up of genes, which code for specific traits like eye color, hair color, or in our case, milk production.</p> <p>Genes are like recipes that tell our bodies what to make – but instead of ingredients like flour and sugar, they&rsquo;re made up of nucleotides. These nucleotides can be either A (adenine), C (cytosine), G (guanine), or T (thymine). The sequence of these nucleotides determines the genetic information.</p> <h2 id="how-epds-work">How EPDs Work</h2> <p>Now that we&rsquo;ve covered some basics, let&rsquo;s talk about how EPDs work. Imagine you&rsquo;re breeding two cows, Bessie and Daisy, to produce offspring. You want Bessie to pass on her desirable traits, like excellent milk production, to their children.</p> <p>To predict which calf will inherit these traits, you&rsquo;d look at the genetic information of both parents. You&rsquo;d then use a complex formula that takes into account the genetic potential of each parent and their offspring&rsquo;s genotype (the actual DNA sequence). This gives you an Expected Progeny Difference score – which represents how much better or worse the trait is expected to be in the offspring compared to the parent.</p> <p>For example, let&rsquo;s say Bessie has a high EPD for milk production, but Daisy has a low EPD. The formula would take into account both parents&rsquo; scores and predict that their calf will have an average EPD for milk production.</p> <h2 id="benefits-of-epds">Benefits of EPDs</h2> <p>So why do we need EPDs? In short, they help us make informed decisions about breeding. By knowing which traits are being passed down from one generation to the next, we can:</p> <ol> <li>Make better breeding choices</li> <li>Predict potential problems or improvements in future generations</li> <li>Develop more accurate breeding strategies</li> </ol> <p>But that&rsquo;s not all – EPDs also have a significant impact on the cattle industry as a whole. By using data-driven approaches, breeders and farmers can:</p> <ol> <li>Increase efficiency and reduce costs</li> <li>Improve animal welfare by selecting for desirable traits</li> <li>Support sustainable agriculture practices</li> </ol> <h2 id="challenges-with-epds">Challenges with EPDs</h2> <p>While EPDs offer many benefits, there are also some challenges to consider:</p> <ol> <li>Data quality: If the data used to calculate EPDs is inaccurate or incomplete, it can lead to incorrect predictions.</li> <li>Complex genetics: Genetic inheritance can be complex, making it difficult to predict how certain traits will manifest in offspring.</li> <li>Selection bias: Breeders may unconsciously favor certain breeds or animals due to personal preferences rather than objective genetic data.</li> </ol> <h2 id="staying-up-to-date-with-epd-research">Staying Up-to-Date with EPD Research</h2> <p>EPDs are constantly evolving as new research emerges and technology improves. To stay informed, it&rsquo;s essential to:</p> <ol> <li>Follow industry publications and scientific journals</li> <li>Attend workshops and conferences on genetics and EPDs</li> <li>Network with other breeders and researchers in the field</li> </ol> <h2 id="conclusion">Conclusion</h2> <p>In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for cattle breeders. By understanding how genetic traits are passed down through generations, we can make more informed decisions about breeding and improve animal welfare.</p> <p>Remember – keeping EPDs real means staying current with the latest research, attending workshops, and networking with experts in the field. With these skills, you&rsquo;ll be well on your way to becoming a genetics-savvy breeder!</p> <p>As always, I&rsquo;m grateful for this opportunity to share my passion for cattle breeding and genetics with you – whether it&rsquo;s through EPDs or something entirely different!</p> - - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/categories/blog/index.html b/categories/blog/index.html deleted file mode 100644 index 9458bc9..0000000 --- a/categories/blog/index.html +++ /dev/null @@ -1,819 +0,0 @@ - - - - - - - - - - Category: - - Blog - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Category: - Blog - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Keep EPDs Real

- - -
- 01 Jul 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - - -
-
-
- - - - - - - - - - diff --git a/categories/blog/index.xml b/categories/blog/index.xml deleted file mode 100644 index daaceec..0000000 --- a/categories/blog/index.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - Blog on MillironX - http://localhost:1313/categories/blog/ - Recent content in Blog on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/categories/blog/page/1/index.html b/categories/blog/page/1/index.html deleted file mode 100644 index 30ee9a8..0000000 --- a/categories/blog/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/categories/blog/ - - - - - - diff --git a/categories/blog/page/2/index.html b/categories/blog/page/2/index.html deleted file mode 100644 index 2d44c3b..0000000 --- a/categories/blog/page/2/index.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - Category: - - Blog - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Category: - Blog - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - - -
-
-
- - - - - - - - - - diff --git a/categories/code/feed.xml b/categories/code/feed.xml deleted file mode 100644 index e609454..0000000 --- a/categories/code/feed.xml +++ /dev/null @@ -1,25 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/code/2025-03-31T00:14:19+00:00All codes on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/cowsay.jl/Cowsay.jl2022-05-11T01:32:54+00:002022-05-11T01:32:54+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:cow2: cowsay for Julia! -<p>:cow2: cowsay for Julia!</p> -https://millironx.millironx.page/@indiewebpub/code/docker-names/docker-names2022-05-09T09:13:08-05:002022-05-09T09:13:08-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A docker name generator in TypeScript. -<p>A docker name generator in TypeScript.</p> -https://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> -https://millironx.millironx.page/@indiewebpub/code/nfdocs-parser/nfdocs-parser2022-01-25T10:15:13-06:002022-01-25T10:15:13-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A Sphinx plugin for converting Nextflow docstrings into documentation -<p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> -https://millironx.millironx.page/@indiewebpub/code/singularity-builds/singularity-builds2021-11-15T12:37:15-06:002021-11-15T12:37:15-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/code/cowsay-cows/cowsay-cows2021-10-12T15:13:28-05:002021-10-12T15:13:28-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -cowfiles in the original spirit of cowsay, except that all of these are actually bovine -<p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> -https://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/categories/code/index.html b/categories/code/index.html deleted file mode 100644 index 86bf591..0000000 --- a/categories/code/index.html +++ /dev/null @@ -1,44 +0,0 @@ -Category: -Code -- -Milliron X -
-Milliron X

Milliron X

Category: -Code

-Subscribe

Cowsay.jl

11 May 2022

docker-names

09 May 2022

A docker name generator in TypeScript.

Read more »

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

\ No newline at end of file diff --git a/categories/code/index.xml b/categories/code/index.xml deleted file mode 100644 index 6aef576..0000000 --- a/categories/code/index.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Code on MillironX - http://localhost:1313/categories/code/ - Recent content in Code on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - Cowsay.jl - http://localhost:1313/code/cowsay.jl/ - Wed, 11 May 2022 01:32:54 +0000 - http://localhost:1313/code/cowsay.jl/ - <p>:cow2: cowsay for Julia!</p> - - - docker-names - http://localhost:1313/code/docker-names/ - Mon, 09 May 2022 09:13:08 -0500 - http://localhost:1313/code/docker-names/ - <p>A docker name generator in TypeScript.</p> - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - nfdocs-parser - http://localhost:1313/code/nfdocs-parser/ - Tue, 25 Jan 2022 10:15:13 -0600 - http://localhost:1313/code/nfdocs-parser/ - <p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> - - - singularity-builds - http://localhost:1313/code/singularity-builds/ - Mon, 15 Nov 2021 12:37:15 -0600 - http://localhost:1313/code/singularity-builds/ - - - - cowsay-cows - http://localhost:1313/code/cowsay-cows/ - Tue, 12 Oct 2021 15:13:28 -0500 - http://localhost:1313/code/cowsay-cows/ - <p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/categories/code/page/1/index.html b/categories/code/page/1/index.html deleted file mode 100644 index eca5644..0000000 --- a/categories/code/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/code/ - \ No newline at end of file diff --git a/categories/code/page/2/index.html b/categories/code/page/2/index.html deleted file mode 100644 index fda4657..0000000 --- a/categories/code/page/2/index.html +++ /dev/null @@ -1,41 +0,0 @@ -Category: -Code -- -Milliron X -
-Milliron X

Milliron X

Category: -Code

-Subscribe

nfdocs-parser

25 Jan 2022

A Sphinx plugin for converting Nextflow docstrings into documentation

Read more »

cowsay-cows

12 Oct 2021

cowfiles in the original spirit of cowsay, except that all of these are actually bovine

Read more »

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

\ No newline at end of file diff --git a/categories/index.html b/categories/index.html deleted file mode 100644 index 63a650b..0000000 --- a/categories/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Category: -Categories -- -Milliron X -
-Milliron X

Milliron X

Category: -Categories

-Subscribe
\ No newline at end of file diff --git a/categories/index.xml b/categories/index.xml deleted file mode 100644 index b3fa72d..0000000 --- a/categories/index.xml +++ /dev/null @@ -1 +0,0 @@ -Categories on Milliron Xhttps://millironx.millironx.page/@indiewebpub/categories/Recent content in Categories on Milliron XHugoen-usSat, 15 Mar 2025 21:22:22 -0500Codehttps://millironx.millironx.page/@indiewebpub/categories/code/Sat, 15 Mar 2025 21:22:22 -0500https://millironx.millironx.page/@indiewebpub/categories/code/Posterhttps://millironx.millironx.page/@indiewebpub/categories/poster/Thu, 19 Sep 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/categories/poster/Presentationhttps://millironx.millironx.page/@indiewebpub/categories/presentation/Thu, 19 Sep 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/categories/presentation/Videohttps://millironx.millironx.page/@indiewebpub/categories/video/Tue, 07 Nov 2023 00:48:13 +0000https://millironx.millironx.page/@indiewebpub/categories/video/Paperhttps://millironx.millironx.page/@indiewebpub/categories/paper/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/categories/paper/Thesishttps://millironx.millironx.page/@indiewebpub/categories/thesis/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/categories/thesis/ \ No newline at end of file diff --git a/categories/page/1/index.html b/categories/page/1/index.html deleted file mode 100644 index 4f7f400..0000000 --- a/categories/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/ - \ No newline at end of file diff --git a/categories/page/2/index.html b/categories/page/2/index.html deleted file mode 100644 index 90858d3..0000000 --- a/categories/page/2/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Category: -Categories -- -Milliron X -
-Milliron X

Milliron X

Category: -Categories

-Subscribe
\ No newline at end of file diff --git a/categories/paper/feed.xml b/categories/paper/feed.xml deleted file mode 100644 index 67bc479..0000000 --- a/categories/paper/feed.xml +++ /dev/null @@ -1,68 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/paper/2025-03-31T00:14:19+00:00All papers on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> -https://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/categories/paper/index.html b/categories/paper/index.html deleted file mode 100644 index 9b75b20..0000000 --- a/categories/paper/index.html +++ /dev/null @@ -1,102 +0,0 @@ -Category: -Paper -- -Milliron X -
-Milliron X

Milliron X

Category: -Paper

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

- - - - -

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 …

Read more »

- - - - - -

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 …

Read more »

\ No newline at end of file diff --git a/categories/paper/index.xml b/categories/paper/index.xml deleted file mode 100644 index cd4d6df..0000000 --- a/categories/paper/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Paper on MillironX - http://localhost:1313/categories/paper/ - Recent content in Paper on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/categories/paper/page/1/index.html b/categories/paper/page/1/index.html deleted file mode 100644 index 322b0c6..0000000 --- a/categories/paper/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/paper/ - \ No newline at end of file diff --git a/categories/poster/feed.xml b/categories/poster/feed.xml deleted file mode 100644 index dc4cb3a..0000000 --- a/categories/poster/feed.xml +++ /dev/null @@ -1,107 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/poster/2025-03-31T00:14:19+00:00All posters on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> - \ No newline at end of file diff --git a/categories/poster/index.html b/categories/poster/index.html deleted file mode 100644 index fbe8796..0000000 --- a/categories/poster/index.html +++ /dev/null @@ -1,94 +0,0 @@ -Category: -Poster -- -Milliron X -
-Milliron X

Milliron X

Category: -Poster

-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

- -

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 …

Read more »

\ No newline at end of file diff --git a/categories/poster/index.xml b/categories/poster/index.xml deleted file mode 100644 index 2fdd98e..0000000 --- a/categories/poster/index.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - Poster on MillironX - http://localhost:1313/categories/poster/ - Recent content in Poster on MillironX - Hugo - en-us - Thu, 19 Sep 2024 00:00:00 +0000 - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - diff --git a/categories/poster/page/1/index.html b/categories/poster/page/1/index.html deleted file mode 100644 index c95ba63..0000000 --- a/categories/poster/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/poster/ - \ No newline at end of file diff --git a/categories/presentation/feed.xml b/categories/presentation/feed.xml deleted file mode 100644 index ecb3dc0..0000000 --- a/categories/presentation/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/presentation/2025-03-31T00:14:19+00:00All presentations on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/academia/how-to-build-a-cow-cud-fuel-cell/How to Build a Cow-Cud Fuel Cell2018-08-01T00:00:00+00:002018-08-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ \ No newline at end of file diff --git a/categories/presentation/index.html b/categories/presentation/index.html deleted file mode 100644 index 99d7486..0000000 --- a/categories/presentation/index.html +++ /dev/null @@ -1,54 +0,0 @@ -Category: -Presentation -- -Milliron X -
-Milliron X

Milliron X

Category: -Presentation

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

\ No newline at end of file diff --git a/categories/presentation/index.xml b/categories/presentation/index.xml deleted file mode 100644 index db6750d..0000000 --- a/categories/presentation/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Presentation on MillironX - http://localhost:1313/categories/presentation/ - Recent content in Presentation on MillironX - Hugo - en-us - Thu, 19 Sep 2024 00:00:00 +0000 - - - Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination - http://localhost:1313/academia/got-warts-naab/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/got-warts-naab/ - - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - How to Build a Cow-Cud Fuel Cell - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - Wed, 01 Aug 2018 00:00:00 +0000 - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - - - - diff --git a/categories/presentation/page/1/index.html b/categories/presentation/page/1/index.html deleted file mode 100644 index 7da343d..0000000 --- a/categories/presentation/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/presentation/ - \ No newline at end of file diff --git a/categories/thesis/feed.xml b/categories/thesis/feed.xml deleted file mode 100644 index a198cbe..0000000 --- a/categories/thesis/feed.xml +++ /dev/null @@ -1,43 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/thesis/2025-03-31T00:14:19+00:00All theses on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> - \ No newline at end of file diff --git a/categories/thesis/index.html b/categories/thesis/index.html deleted file mode 100644 index 370258d..0000000 --- a/categories/thesis/index.html +++ /dev/null @@ -1,58 +0,0 @@ -Category: -Thesis -- -Milliron X -
-Milliron X

Milliron X

Category: -Thesis

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

\ No newline at end of file diff --git a/categories/thesis/index.xml b/categories/thesis/index.xml deleted file mode 100644 index f14fc35..0000000 --- a/categories/thesis/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Thesis on MillironX - http://localhost:1313/categories/thesis/ - Recent content in Thesis on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - diff --git a/categories/thesis/page/1/index.html b/categories/thesis/page/1/index.html deleted file mode 100644 index 312e8ed..0000000 --- a/categories/thesis/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/thesis/ - \ No newline at end of file diff --git a/categories/video/feed.xml b/categories/video/feed.xml deleted file mode 100644 index 2be27fc..0000000 --- a/categories/video/feed.xml +++ /dev/null @@ -1,162 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/categories/video/2025-03-31T00:14:19+00:00All videoes on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> -https://millironx.millironx.page/@indiewebpub/videos/ag-olympics-reel/Farm Bureau Ag Olympics Reel2017-02-16T00:00:00+00:002017-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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. -<p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> -https://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> -https://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/categories/video/index.html b/categories/video/index.html deleted file mode 100644 index 028d66d..0000000 --- a/categories/video/index.html +++ /dev/null @@ -1,63 +0,0 @@ -Category: -Video -- -Milliron X -
-Milliron X

Milliron X

Category: -Video

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

\ No newline at end of file diff --git a/categories/video/index.xml b/categories/video/index.xml deleted file mode 100644 index 8c0f5ab..0000000 --- a/categories/video/index.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - Video on MillironX - http://localhost:1313/categories/video/ - Recent content in Video on MillironX - Hugo - en-us - Tue, 07 Nov 2023 00:48:13 +0000 - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - Farm Bureau Ag Olympics Reel - http://localhost:1313/videos/ag-olympics-reel/ - Thu, 16 Feb 2017 00:00:00 +0000 - http://localhost:1313/videos/ag-olympics-reel/ - <p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/categories/video/page/1/index.html b/categories/video/page/1/index.html deleted file mode 100644 index e1c879d..0000000 --- a/categories/video/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/categories/video/ - \ No newline at end of file diff --git a/categories/video/page/2/index.html b/categories/video/page/2/index.html deleted file mode 100644 index 1cabf21..0000000 --- a/categories/video/page/2/index.html +++ /dev/null @@ -1,65 +0,0 @@ -Category: -Video -- -Milliron X -
-Milliron X

Milliron X

Category: -Video

-Subscribe
Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

\ No newline at end of file diff --git a/categories/video/page/3/index.html b/categories/video/page/3/index.html deleted file mode 100644 index c15e26d..0000000 --- a/categories/video/page/3/index.html +++ /dev/null @@ -1,56 +0,0 @@ -Category: -Video -- -Milliron X -
-Milliron X

Milliron X

Category: -Video

-Subscribe
Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

\ No newline at end of file diff --git a/categories/video/page/4/index.html b/categories/video/page/4/index.html deleted file mode 100644 index 60a30c1..0000000 --- a/categories/video/page/4/index.html +++ /dev/null @@ -1,62 +0,0 @@ -Category: -Video -- -Milliron X -
-Milliron X

Milliron X

Category: -Video

-Subscribe
Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

\ No newline at end of file diff --git a/code/beefblup/index.html b/code/beefblup/index.html deleted file mode 100644 index 8c87617..0000000 --- a/code/beefblup/index.html +++ /dev/null @@ -1,23 +0,0 @@ -beefblup -- -Milliron X -
-Milliron X

Milliron X

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

\ No newline at end of file diff --git a/code/cowsay-cows/index.html b/code/cowsay-cows/index.html deleted file mode 100644 index 8ebec8d..0000000 --- a/code/cowsay-cows/index.html +++ /dev/null @@ -1,23 +0,0 @@ -cowsay-cows -- -Milliron X -
-Milliron X

Milliron X

cowfiles in the original spirit of cowsay, except that all of these are actually bovine

\ No newline at end of file diff --git a/code/cowsay.jl/index.html b/code/cowsay.jl/index.html deleted file mode 100644 index 903eaed..0000000 --- a/code/cowsay.jl/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Cowsay.jl -- -Milliron X -
-Milliron X

Milliron X

:cow2: cowsay for Julia!

\ No newline at end of file diff --git a/code/docker-biojulia/index.html b/code/docker-biojulia/index.html deleted file mode 100644 index 089c848..0000000 --- a/code/docker-biojulia/index.html +++ /dev/null @@ -1,23 +0,0 @@ -docker-BioJulia -- -Milliron X -
-Milliron X

Milliron X

BioJulia in a Docker image

\ No newline at end of file diff --git a/code/docker-juliapro/index.html b/code/docker-juliapro/index.html deleted file mode 100644 index b303e3a..0000000 --- a/code/docker-juliapro/index.html +++ /dev/null @@ -1,23 +0,0 @@ -docker-JuliaPro -- -Milliron X -
-Milliron X

Milliron X

JuliaPro in a Docker image

\ No newline at end of file diff --git a/code/docker-names/index.html b/code/docker-names/index.html deleted file mode 100644 index bad9f29..0000000 --- a/code/docker-names/index.html +++ /dev/null @@ -1,23 +0,0 @@ -docker-names -- -Milliron X -
-Milliron X

Milliron X

A docker name generator in TypeScript.

\ No newline at end of file diff --git a/code/feed.xml b/code/feed.xml deleted file mode 100644 index de33368..0000000 --- a/code/feed.xml +++ /dev/null @@ -1,25 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/code/2025-03-31T00:14:19+00:00Coding projects on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/cowsay.jl/Cowsay.jl2022-05-11T01:32:54+00:002022-05-11T01:32:54+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:cow2: cowsay for Julia! -<p>:cow2: cowsay for Julia!</p> -https://millironx.millironx.page/@indiewebpub/code/docker-names/docker-names2022-05-09T09:13:08-05:002022-05-09T09:13:08-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A docker name generator in TypeScript. -<p>A docker name generator in TypeScript.</p> -https://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> -https://millironx.millironx.page/@indiewebpub/code/nfdocs-parser/nfdocs-parser2022-01-25T10:15:13-06:002022-01-25T10:15:13-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A Sphinx plugin for converting Nextflow docstrings into documentation -<p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> -https://millironx.millironx.page/@indiewebpub/code/singularity-builds/singularity-builds2021-11-15T12:37:15-06:002021-11-15T12:37:15-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/code/cowsay-cows/cowsay-cows2021-10-12T15:13:28-05:002021-10-12T15:13:28-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -cowfiles in the original spirit of cowsay, except that all of these are actually bovine -<p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> -https://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/code/index.html b/code/index.html deleted file mode 100644 index 865f6da..0000000 --- a/code/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Coding projects -- -Milliron X -
-Milliron X

Milliron X

Coding projects

A Forgejo instance dedicated to cows and technology

-Subscribe

Cowsay.jl

11 May 2022

docker-names

09 May 2022

A docker name generator in TypeScript.

Read more »

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

\ No newline at end of file diff --git a/code/index.xml b/code/index.xml deleted file mode 100644 index 1778036..0000000 --- a/code/index.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Coding projects on MillironX - http://localhost:1313/code/ - Recent content in Coding projects on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - Cowsay.jl - http://localhost:1313/code/cowsay.jl/ - Wed, 11 May 2022 01:32:54 +0000 - http://localhost:1313/code/cowsay.jl/ - <p>:cow2: cowsay for Julia!</p> - - - docker-names - http://localhost:1313/code/docker-names/ - Mon, 09 May 2022 09:13:08 -0500 - http://localhost:1313/code/docker-names/ - <p>A docker name generator in TypeScript.</p> - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - nfdocs-parser - http://localhost:1313/code/nfdocs-parser/ - Tue, 25 Jan 2022 10:15:13 -0600 - http://localhost:1313/code/nfdocs-parser/ - <p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> - - - singularity-builds - http://localhost:1313/code/singularity-builds/ - Mon, 15 Nov 2021 12:37:15 -0600 - http://localhost:1313/code/singularity-builds/ - - - - cowsay-cows - http://localhost:1313/code/cowsay-cows/ - Tue, 12 Oct 2021 15:13:28 -0500 - http://localhost:1313/code/cowsay-cows/ - <p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/code/kelpie.jl/index.html b/code/kelpie.jl/index.html deleted file mode 100644 index cac7f93..0000000 --- a/code/kelpie.jl/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Kelpie.jl -- -Milliron X -
-Milliron X

Milliron X

:dog2: I accidentally built an HTML templating engine in Julia

\ No newline at end of file diff --git a/code/nfdocs-parser/index.html b/code/nfdocs-parser/index.html deleted file mode 100644 index e0addd5..0000000 --- a/code/nfdocs-parser/index.html +++ /dev/null @@ -1,23 +0,0 @@ -nfdocs-parser -- -Milliron X -
-Milliron X

Milliron X

A Sphinx plugin for converting Nextflow docstrings into documentation

\ No newline at end of file diff --git a/code/page/1/index.html b/code/page/1/index.html deleted file mode 100644 index 01ed074..0000000 --- a/code/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/code/ - \ No newline at end of file diff --git a/code/page/2/index.html b/code/page/2/index.html deleted file mode 100644 index aae2a07..0000000 --- a/code/page/2/index.html +++ /dev/null @@ -1,39 +0,0 @@ -Coding projects -- -Milliron X -
-Milliron X

Milliron X

Coding projects

-Subscribe

nfdocs-parser

25 Jan 2022

A Sphinx plugin for converting Nextflow docstrings into documentation

Read more »

cowsay-cows

12 Oct 2021

cowfiles in the original spirit of cowsay, except that all of these are actually bovine

Read more »

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

\ No newline at end of file diff --git a/code/singularity-builds/index.html b/code/singularity-builds/index.html deleted file mode 100644 index d5bc017..0000000 --- a/code/singularity-builds/index.html +++ /dev/null @@ -1,23 +0,0 @@ -singularity-builds -- -Milliron X -
-Milliron X

Milliron X

\ No newline at end of file diff --git a/code/xam.jl/index.html b/code/xam.jl/index.html deleted file mode 100644 index 8936e64..0000000 --- a/code/xam.jl/index.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - - XAM.jl - - - - Milliron X - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
-

Parse and process SAM and BAM formatted files

- -
-
- - - - - - - - - - diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..8a730b3 --- /dev/null +++ b/config.toml @@ -0,0 +1,57 @@ +baseURL = "https://millironx.com" +languageCode = "en-us" +title = "Milliron X" + +[pagination] +pagerSize = 5 + +[build] +writeStats = true + +[Params] +cardImage = "saddles" +motto = "" +images = ["saddles.jpg"] +categories = [] + +[taxonomies] +people = "people" +tag = "tags" +category = "categories" + +[mediaTypes] + +[mediaTypes."application/atom+xml"] +suffixes = ["xml"] + +[outputs] +home = ["atom", "html", "manifest"] +page = ["html"] +section = ["html", "atom"] +term = ["html", "atom"] + +[outputFormats] + +[outputFormats.atom] +mediaType = "application/atom+xml" +baseName = "feed" + +[outputFormats.manifest] +name = "manifest" +baseName = "manifest" +mediaType = "application/json" +notAlternative = "true" + +[markup] + +[markup.goldmark] + +[markup.goldmark.parser] + +[markup.goldmark.parser.attribute] +block = true + +[markup.goldmark.renderHooks] + +[markup.goldmark.renderHooks.link] +enableDefault = true diff --git a/contact/feed.xml b/contact/feed.xml deleted file mode 100644 index 9da3c17..0000000 --- a/contact/feed.xml +++ /dev/null @@ -1 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/contact/2025-03-31T00:14:19+00:00Contact Me on Milliron X \ No newline at end of file diff --git a/contact/index.html b/contact/index.html deleted file mode 100644 index f6288cf..0000000 --- a/contact/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Contact Me -- -Milliron X -
-Milliron X

Milliron X

Contact Me

Contact Me - - - - - - - - - - - -
\ No newline at end of file diff --git a/contact/index.xml b/contact/index.xml deleted file mode 100644 index 2cfb441..0000000 --- a/contact/index.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - Contact Me on MillironX - http://localhost:1313/contact/ - Recent content in Contact Me on MillironX - Hugo - en-us - - - - diff --git a/contact/page/1/index.html b/contact/page/1/index.html deleted file mode 100644 index 0ba4840..0000000 --- a/contact/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/contact/ - \ No newline at end of file diff --git a/contact/thumbnail_hu16260505092942980349.jpg b/contact/thumbnail_hu16260505092942980349.jpg deleted file mode 100644 index a91d768..0000000 Binary files a/contact/thumbnail_hu16260505092942980349.jpg and /dev/null differ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..1cfe790 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,30 @@ +--- +cardImage: charolette +cardImageDescription: She almost looks like she's in her native country again. +motto: My name is Thomas Christensen
I am Milliron X +description: The homepage of Thomas A. Christensen II +menu: + main: + name: Home + params: + icon: home + weight: -1000 +--- + +## What is a "Milliron X"? + +It's a [cattle brand](https://en.wikipedia.org/wiki/Livestock_branding), of +course! My cattle brand! + +The {{< dfn >}}milliron{{< /dfn >}} is the bar with a bend in the middle. It +does not represent anything physical or textual _per se_, 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. + +{{< 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. + +Together, these two symbols represent the qualities I strive for in each of my +works: authenticity, originality, power, depth, and prestige. diff --git a/content/academia/_index.md b/content/academia/_index.md new file mode 100644 index 0000000..ea2eb55 --- /dev/null +++ b/content/academia/_index.md @@ -0,0 +1,28 @@ +--- +title: Academic Publications and Presentations +motto: Publications and Presentations +cardImage: library +cardImageDescription: + Personally, I preferred the Owen Library in Pullman seven miles west +description: A list of my academic publications +menu: + main: + name: Academia + params: + icon: university + weight: 20 +fa-thumbnail: university +--- + +During my time in academia, I have amassed a few notable accomplishments. Of +course, as the old saying goes, "if it isn't published, then it never happened," +so here is a list of everything that actually happened. + +Academia is not the be-all and end-all of life (contrary to what your professor +might have told you). I've found the side-effects to be similar to this guy's: + + +> I have spent too long in school and not enough time in the middle of nowhere, +> and it has inhibited my ability to learn the simple things. +{author="Baxter Black, DVM"} + diff --git a/content/academia/bpv-genetics.md b/content/academia/bpv-genetics.md new file mode 100644 index 0000000..edd678f --- /dev/null +++ b/content/academia/bpv-genetics.md @@ -0,0 +1,42 @@ +--- +title: "Genetic analysis of bovine papillomas" +date: 2024-09-19 +categories: + - poster +people: + - Thomas A. Christensen II + - Rachel Palinski + - Bob Gentry +journal: + "National Association of Animal Breeders Technical Conference Student Poster + session" +location: "Middleton, Wisconsin" +--- + +Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. +In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is +always a cause to fail an animal on a breeding soundness exam. Historically, it +has been thought that BPV was transmitted via direct contact and could be +controlled by managing clinically presenting animals in the herd, but more +recent evidence suggests alternative modes of transmission. BPV has been found +repeatably in clinically healthy animals, and in non-cutaneous secretions +including milk, blood, urine and semen. Currently, no commercially available BPV +vaccine uses isolated viral particles and naturally occurring virus does not +produce cross-protective immunity. In order to develop a proper vaccine for +penile papillomas further studies are required to understand the epidemiology of +BPV in herds. While vulvar, cutaneous, and mammary papillomas have been +genotyped in recent years, this information is not available for penile +papillomas. In this study there were 31 submissions, collected from 7 states, +NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were +collected between August of 2022 and April 2024. Twenty-two submissions were +penile papillomas and with pooling of samples represented over 50 penile +papillomas. Samples were metagenomically sequenced at the Kansas State +Veterinary Diagnostic Lab, and the genotype of each sample was determined using +the phylogenetic analysis. The clade of each sample was determined by aligning +consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine +target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. +Analysis found that all penile papilloma submissions were composed of BPV type +2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous +and teat papillomas had BPV genotypes that were more variable with genotypes of +1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide +a unified target for bovine penile papilloma vaccine development. diff --git a/academia/cheme-car/cud_cheme_car_web.pdf b/content/academia/cheme-car/cud_cheme_car_web.pdf similarity index 100% rename from academia/cheme-car/cud_cheme_car_web.pdf rename to content/academia/cheme-car/cud_cheme_car_web.pdf diff --git a/content/academia/cheme-car/index.md b/content/academia/cheme-car/index.md new file mode 100644 index 0000000..6649f4f --- /dev/null +++ b/content/academia/cheme-car/index.md @@ -0,0 +1,29 @@ +--- +title: "The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal" +date: 2019-05-14 +cardImage: cannulated-cows +draft: false +featured: true +tags: + - chemical engineering + - AIChE + - radiation + - rumen + - microbial electrolysis cells +categories: + - thesis +people: + - Thomas A. Christensen II +link: https://doi.org/10.15786/13700938.v1 +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. diff --git a/academia/cheme-car/thumbnail.jpg b/content/academia/cheme-car/thumbnail.jpg old mode 100644 new mode 100755 similarity index 100% rename from academia/cheme-car/thumbnail.jpg rename to content/academia/cheme-car/thumbnail.jpg diff --git a/content/academia/got-warts-naab.md b/content/academia/got-warts-naab.md new file mode 100644 index 0000000..adea3d8 --- /dev/null +++ b/content/academia/got-warts-naab.md @@ -0,0 +1,14 @@ +--- +title: + "Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination" +date: 2024-09-19 +featured: false +categories: + - presentation +people: + - Bob Gentry + - Thomas A. Christensen II +journal: + "National Association of Animal Breeders Technical Conference Sponsor session" +location: "Middleton, Wisconsin" +--- diff --git a/content/academia/how-to-build-a-cow-cud-fuel-cell.md b/content/academia/how-to-build-a-cow-cud-fuel-cell.md new file mode 100644 index 0000000..7fe9a58 --- /dev/null +++ b/content/academia/how-to-build-a-cow-cud-fuel-cell.md @@ -0,0 +1,15 @@ +--- +title: "How to Build a Cow-Cud Fuel Cell" +date: 2018-08-01 +cardImage: library +draft: false +featured: false +categories: + - presentation +people: + - Thomas A. Christensen II +journal: "Idaho INBRE Summer Research Conference" +location: "Moscow, Idaho" +awards: + - "3rd Place Fast-Pitch Science Presentation Contest" +--- diff --git a/content/academia/hydronium-pva.md b/content/academia/hydronium-pva.md new file mode 100644 index 0000000..851bcbb --- /dev/null +++ b/content/academia/hydronium-pva.md @@ -0,0 +1,45 @@ +--- +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 +tags: + - diffusion + - hydrogels + - ionic strength + - polymers + - transport properties +categories: + - paper +people: + - 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. diff --git a/content/academia/metagenomics/index.md b/content/academia/metagenomics/index.md new file mode 100644 index 0000000..993ab8d --- /dev/null +++ b/content/academia/metagenomics/index.md @@ -0,0 +1,59 @@ +--- +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 +tags: + - gestation + - metagenomics + - microbiome + - rumen +categories: + - poster +people: + - 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. diff --git a/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf b/content/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf similarity index 100% rename from academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf rename to content/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf diff --git a/academia/metagenomics/thumbnail.jpg b/content/academia/metagenomics/thumbnail.jpg similarity index 100% rename from academia/metagenomics/thumbnail.jpg rename to content/academia/metagenomics/thumbnail.jpg diff --git a/content/academia/pva-aiche/index.md b/content/academia/pva-aiche/index.md new file mode 100644 index 0000000..20f09ce --- /dev/null +++ b/content/academia/pva-aiche/index.md @@ -0,0 +1,45 @@ +--- +title: + "Measuring Diffusion of Trichlorethylene Breakdown Products in + Polyvinylalginate" +date: 2018-10-29 +cardImage: library +draft: false +featured: false +tags: + - bioremediation + - polyoxometalate + - hydrogel polymers + - proton transport + - chemical engineering +categories: + - poster +people: + - 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. diff --git a/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf b/content/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf similarity index 100% rename from academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf rename to content/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf diff --git a/academia/pva-aiche/thumbnail.jpg b/content/academia/pva-aiche/thumbnail.jpg similarity index 100% rename from academia/pva-aiche/thumbnail.jpg rename to content/academia/pva-aiche/thumbnail.jpg diff --git a/content/academia/pva-inbre.md b/content/academia/pva-inbre.md new file mode 100644 index 0000000..e6bb1a9 --- /dev/null +++ b/content/academia/pva-inbre.md @@ -0,0 +1,33 @@ +--- +title: "Measuring diffusion of protons in polyvinyalginate" +date: 2018-07-31 +cardImage: library +draft: false +featured: false +categories: + - poster +people: + - 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{{}} 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. diff --git a/content/academia/rotavirus-virome.md b/content/academia/rotavirus-virome.md new file mode 100644 index 0000000..3ab6e60 --- /dev/null +++ b/content/academia/rotavirus-virome.md @@ -0,0 +1,50 @@ +--- +title: + "Assessment of Porcine Rotavirus-associated virome variations in pigs with + enteric disease" +date: 2022-04-27 +cardImage: cannulated-cows +featured: true +tags: + - porcine rotavirus + - porcine enteric disease + - virome + - rotavirus +categories: + - paper +people: + - 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 diff --git a/content/academia/taxprofiler.md b/content/academia/taxprofiler.md new file mode 100644 index 0000000..b629a8a --- /dev/null +++ b/content/academia/taxprofiler.md @@ -0,0 +1,41 @@ +--- +title: + "nf-core/taxprofiler: highly parallelised and flexible pipeline for + metagenomic taxonomic classification and profiling" +date: 2023-10-23 +featured: true +tags: + - genomics +categories: + - paper +people: + - Sofia Stamouli + - Moritz E. Beber + - Tanja Normark + - Thomas A. Christensen II + - Lili Andersson-Li + - Maxime Borry + - Mahwash Jamy + - nf-core community + - James A. Fellows Yates +link: https://doi.org/10.1101/2023.10.20.563221 +journal: bioRxiv +--- + +Metagenomic classification tackles the problem of characterising the taxonomic +source of all DNA sequencing reads in a sample. A common approach to address the +differences and biases between the many different taxonomic classification tools +is to run metagenomic data through multiple classification tools and databases. +This, however, is a very time-consuming task when performed manually - +particularly when combined with the appropriate preprocessing of sequencing +reads before the classification. Here we present nf-core/taxprofiler, a highly +parallelised read-processing and taxonomic classification pipeline. It is +designed for the automated and simultaneous classification and/or profiling of +both short- and long-read metagenomic sequencing libraries against a 11 +taxonomic classifiers and profilers as well as databases within a single +pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the +pipeline benefits from high levels of scalability and portability, accommodating +from small to extremely large projects on a wide range of computing +infrastructure. It has been developed following best-practise software +development practises and community support to ensure longevity and adaptability +of the pipeline, to help keep it up to date with the field of metagenomics. diff --git a/content/academia/thesis.md b/content/academia/thesis.md new file mode 100644 index 0000000..f33c598 --- /dev/null +++ b/content/academia/thesis.md @@ -0,0 +1,44 @@ +--- +title: + "Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel + Polymers" +date: 2020-08-07 +cardImage: library +draft: false +featured: true +tags: + - bioremediation + - polyoxometalate + - hydrogel polymers + - proton transport + - chemical engineering +categories: + - thesis +people: + - 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. diff --git a/academia/thumbnail.jpg b/content/academia/thumbnail.jpg similarity index 100% rename from academia/thumbnail.jpg rename to content/academia/thumbnail.jpg diff --git a/content/academia/yavsap/index.md b/content/academia/yavsap/index.md new file mode 100644 index 0000000..3ffc79c --- /dev/null +++ b/content/academia/yavsap/index.md @@ -0,0 +1,54 @@ +--- +title: "YAVSAP: versatile viral quasispecies analysis for veterinary samples" +date: 2024-03-05 +featured: false +categories: + - presentation +people: + - Thomas A. Christensen II + - Steven Stancic + - Andrea Lu + - Dana Mitzel + - William Wilson + - Rachel Palinski +journal: "Phi Zeta Research Day" +location: "Manhattan, Kansas" +tags: + - virus + - quasispecies + - next-generation sequencing + - pipeline +awards: + - "2nd Place Large Animal Applied Research Presentation" +link: "/academia/yavsap/yavsap.pdf" +--- + +Viral populations within an infected host are composed of viral particles with a +spectrum of genetic mutations rather than a unified genome. This phenomenon is +referred to as viral "quasispecies," and has been useful for the understanding +of viral transmission and early detection of new viral variants. Next generation +sequencing (NGS) has enabled the study of these quasispecies for many viral +species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and +Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 +(SARS CoV2), and established protocols and computer analysis tools have been +developed for these species. Some of the most important viruses, such as +emerging and exotic disease agents, however, do not have replicatable protocols +or software tools capable of producing valid output from their sequence data. +Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP +is a fully automated bioinformatic pipeline built from the ground up to identify +and analyze viral quasispecies of any arbitrary virus in human and veterinary +samples. YAVSAP provides reference-based genome mapping of both long- and +short-read sequencing reads to any reference genome that the user chooses, +identifies subconsensus variants and haplotypes, and assesses the phylogenies of +all viral sequences found within a sample. YAVSAP is written in Nextflow and +conforms to the nf-core initiative's standards, which allows it to run on +low-end computers, high performance computing (HPC) clusters, or anything in +between with zero configuration. YAVSAP has been tested on viruses of interest +to veterinary medicine and public health, including Japanese Encephalitis Virus +(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift +Valley Fever Virus (RVFV), and can correctly identify consensus genomes and +quasispecies within samples containing each of these viruses. This tool provides +a means for biologists with little bioinformatic experience to analyze deep +sequence data while correcting for many of the pitfalls associated with previous +and current analysis platforms. YAVSAP is open source software and is publicly +available at https://github.com/ksumngs/yavsap. diff --git a/academia/yavsap/yavsap.pdf b/content/academia/yavsap/yavsap.pdf similarity index 100% rename from academia/yavsap/yavsap.pdf rename to content/academia/yavsap/yavsap.pdf diff --git a/content/blogroll/_index.md b/content/blogroll/_index.md new file mode 100644 index 0000000..307a619 --- /dev/null +++ b/content/blogroll/_index.md @@ -0,0 +1,20 @@ +--- +title: "Blogroll" +menu: + main: + name: Blogroll + params: + icon: scroll + weight: -800 +cardImage: eclipse +cardImageDescription: | + Randall Monroe was right. Eclipses are way cooler than they sound. +suppressRss: 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 make that cut. diff --git a/content/blogroll/brian-harry/index.md b/content/blogroll/brian-harry/index.md new file mode 100644 index 0000000..a75e0bd --- /dev/null +++ b/content/blogroll/brian-harry/index.md @@ -0,0 +1,8 @@ +--- +title: Brian Harry's blog +link: 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. diff --git a/blogroll/brian-harry/thumbnail.png b/content/blogroll/brian-harry/thumbnail.png similarity index 100% rename from blogroll/brian-harry/thumbnail.png rename to content/blogroll/brian-harry/thumbnail.png diff --git a/content/blogroll/car-talk/index.md b/content/blogroll/car-talk/index.md new file mode 100644 index 0000000..ee66c77 --- /dev/null +++ b/content/blogroll/car-talk/index.md @@ -0,0 +1,8 @@ +--- +title: Car Talk +link: 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. diff --git a/content/blogroll/car-talk/thumbnail.jpg b/content/blogroll/car-talk/thumbnail.jpg new file mode 100644 index 0000000..d09dcaf Binary files /dev/null and b/content/blogroll/car-talk/thumbnail.jpg differ diff --git a/content/blogroll/enoch-the-cow-vet/index.md b/content/blogroll/enoch-the-cow-vet/index.md new file mode 100644 index 0000000..0e3f074 --- /dev/null +++ b/content/blogroll/enoch-the-cow-vet/index.md @@ -0,0 +1,8 @@ +--- +title: Enoch the Cow Vet +link: https://youtube.com/channel/UC6PPmHUbcdOSzX5tLB3uXdw +--- + +A veterinarian/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. diff --git a/blogroll/enoch-the-cow-vet/thumbnail.jpg b/content/blogroll/enoch-the-cow-vet/thumbnail.jpg similarity index 100% rename from blogroll/enoch-the-cow-vet/thumbnail.jpg rename to content/blogroll/enoch-the-cow-vet/thumbnail.jpg diff --git a/content/blogroll/proslogion/index.md b/content/blogroll/proslogion/index.md new file mode 100644 index 0000000..f73002f --- /dev/null +++ b/content/blogroll/proslogion/index.md @@ -0,0 +1,8 @@ +--- +title: Proslogion +link: 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. diff --git a/blogroll/proslogion/thumbnail.jpg b/content/blogroll/proslogion/thumbnail.jpg similarity index 100% rename from blogroll/proslogion/thumbnail.jpg rename to content/blogroll/proslogion/thumbnail.jpg diff --git a/content/blogroll/thru-the-bible/index.md b/content/blogroll/thru-the-bible/index.md new file mode 100644 index 0000000..9863380 --- /dev/null +++ b/content/blogroll/thru-the-bible/index.md @@ -0,0 +1,8 @@ +--- +title: Thru the Bible +link: 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. diff --git a/content/blogroll/thru-the-bible/thumbnail.jpg b/content/blogroll/thru-the-bible/thumbnail.jpg new file mode 100644 index 0000000..87c7d57 Binary files /dev/null and b/content/blogroll/thru-the-bible/thumbnail.jpg differ diff --git a/blogroll/thumbnail.jpg b/content/blogroll/thumbnail.jpg similarity index 100% rename from blogroll/thumbnail.jpg rename to content/blogroll/thumbnail.jpg diff --git a/content/code/_content.gotmpl b/content/code/_content.gotmpl new file mode 100644 index 0000000..2992e8b --- /dev/null +++ b/content/code/_content.gotmpl @@ -0,0 +1,75 @@ +{{ $data := dict }} +{{ $url := "https://code.millironx.com/api/v1/users/millironx/repos" }} +{{ with try (resources.GetRemote $url) }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else with .Value }} + {{ $data = . | transform.Unmarshal }} + {{ end }} +{{ else }} + {{ errorf "Unable to get remote resource %s" $url }} +{{ end }} + +{{ range $data }} + {{/* Get tags of this repository. To quote Steve Edstrom, "If it doesn't have a + tag, it doesn't count." + */}} + {{ $tagUrl := print "https://code.millironx.com/api/v1/repos/millironx/" .name "/tags" }} + {{ $tagData := dict }} + {{ with try (resources.GetRemote $tagUrl) }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $tagUrl . }} + {{ else with .Value }} + {{ $tagData = . | transform.Unmarshal }} + {{ end }} + {{ else }} + {{ errorf "Unable to get remote resource %s" $tagUrl }} + {{ end }} + + {{ $firstTag := index $tagData 0 }} + + {{ if $firstTag }} + {{ $dates := dict "date" (time.AsTime $firstTag.commit.created) }} + + {{ $content := dict "mediaType" "text/markdown" "value" .description }} + {{ $categories := slice "code" }} + {{ $people := slice "Thomas A. Christensen II" }} + {{ $link := .html_url }} + {{ $featured := (gt .stars_count 0) }} + {{ $tags := .topics }} + {{ $params := dict + "categories" $categories + "people" $people + "link" $link + "featured" $featured + "tags" $tags + }} + {{ $page := dict + "content" $content + "dates" $dates + "title" .name + "path" .name + "params" $params + }} + {{ $.AddPage $page }} + + {{ $item := . }} + {{ with $url := $item.avatar_url }} + {{ with resources.GetRemote $url }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else }} + {{ $content := dict "mediaType" .MediaType.Type "value" .Content }} + {{ $resource := dict + "content" $content + "path" (print $item.name "/thumbnail." .MediaType.SubType) + }} + {{ $.AddResource $resource }} + {{ end }} + {{ else }} + {{ errorf "Unable to get remote resource %s" $url }} + {{ end }} + {{ end }} + {{ end }} + +{{ end }} diff --git a/content/code/_index.md b/content/code/_index.md new file mode 100644 index 0000000..c7c7df5 --- /dev/null +++ b/content/code/_index.md @@ -0,0 +1,14 @@ +--- +title: Coding projects +menu: + main: + name: Code + params: + icon: code + link: https://code.millironx.com + weight: 50 +fa-thumbnail: code +link: https://code.millironx.com +--- + +A Forgejo instance dedicated to cows and technology diff --git a/content/contact/_index.html b/content/contact/_index.html new file mode 100644 index 0000000..3d73f4f --- /dev/null +++ b/content/contact/_index.html @@ -0,0 +1,89 @@ +--- +title: Contact Me +cardImage: venice-mailbox +cardImageDescription: + This mailbox was used for reporting public health offenses in Venice. It + survived the wrath of Napoleon because it didn't look enough like a lion. +motto: Contact Me +description: Contact form to get ahold of me +date: 2023-07-01 +menu: + main: + name: Contact + params: + icon: file-signature + weight: 1 +fa-thumbnail: file-signature +validation: true +suppressRss: true +--- + + + +
+
+ Contact Me + + + + + + + + + + + + + +
+ + + +
+
diff --git a/contact/thumbnail.jpg b/content/contact/thumbnail.jpg similarity index 100% rename from contact/thumbnail.jpg rename to content/contact/thumbnail.jpg diff --git a/content/login/index.md b/content/login/index.md new file mode 100644 index 0000000..9aac1f7 --- /dev/null +++ b/content/login/index.md @@ -0,0 +1,14 @@ +--- +title: Login +menu: + main: + name: Login + params: + icon: right-to-bracket + link: https://youtu.be/dQw4w9WgXcQ + weight: 99 +fa-thumbnail: right-to-bracket +link: https://youtu.be/dQw4w9WgXcQ +--- + +The password is "Open sesame!" diff --git a/content/people/thomas-a.-christensen-ii/_index.md b/content/people/thomas-a.-christensen-ii/_index.md new file mode 100644 index 0000000..54b7090 --- /dev/null +++ b/content/people/thomas-a.-christensen-ii/_index.md @@ -0,0 +1,113 @@ +--- +title: "Thomas A. Christensen II" +menu: + main: + name: About + params: + icon: circle-info + me: true + weight: -900 +homepage: https://millironx.com +accounts: + google-scholar: gbP4RDgAAAAJ + github: MillironX + hacker-news: millironx + matrix: "@millironx:matrix.org" + orcid: 0000-0003-1219-9320 + steam: millironx + vimeo: tchristensenii +gpg_key: + fingerprint: 8B12 8295 5A14 9FAB 735F 56D3 AD91 52EB 09C8 4352 + public_key: | + -----BEGIN PGP PUBLIC KEY BLOCK----- + + mDMEZ100cRYJKwYBBAHaRw8BAQdAV485J1tB8sQPisFGyRYREcOtJsRSdwQEQ5aM + Exg6ozC0RlRob21hcyBBLiBDaHJpc3RlbnNlbiBJSSA8MjU0OTIwNzArTWlsbGly + b25YQHVzZXJzLm5vcmVwbHkuZ2l0aHViLmNvbT6IkwQTFgoAOxYhBIsSgpVaFJ+r + c19W062RUusJyENSBQJnXTU2AhsBBQsJCAcCAiICBhUKCQgLAgQWAgMBAh4HAheA + AAoJEK2RUusJyENS21UA/iPpRxE8zTQa1xktSXDYSLxWoDcsHhziQGqwULqUKot+ + APwMLFpov2TW322SQ8Fui1jYb/Z1SxnJ/jNiarpRRAGYALQ7VGhvbWFzIEEuIENo + cmlzdGVuc2VuIElJIDx0aG9tYXMuY2hyaXN0ZW5zZW5AbWlsbGlyb254LmNvbT6I + kwQTFgoAOxYhBIsSgpVaFJ+rc19W062RUusJyENSBQJnXTRxAhsBBQsJCAcCAiIC + BhUKCQgLAgQWAgMBAh4HAheAAAoJEK2RUusJyENS4ykA/1YyKsTvlW1xgt16p8Yv + J0c+R9XfpwJoVUad/clF7olxAQCqgBYD4HmcGemCuEzIQ3OfQi94scEIu8Q8pA8n + c9MzDLQzVGhvbWFzIEEuIENocmlzdGVuc2VuIElJIDxtaWxsaXJvbnhAcHJvdG9u + bWFpbC5jb20+iJMEExYKADsWIQSLEoKVWhSfq3NfVtOtkVLrCchDUgUCZ101NgIb + AQULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgAAKCRCtkVLrCchDUhbHAQCmHYXF + pyaW2ImR7e2MAkvJGlCP82ssL6ZYvLy/6AnW0AD/bqtMr0qpvIQrMhyodOgBa7Iz + aHd3EpX6b1SiqOEuigS0MFRob21hcyBBLiBDaHJpc3RlbnNlbiBJSSA8bWlsbGly + b254QG1haWxib3gub3JnPoiTBBMWCgA7FiEEixKClVoUn6tzX1bTrZFS6wnIQ1IF + AmddNTYCGwEFCwkIBwICIgIGFQoJCAsCBBYCAwECHgcCF4AACgkQrZFS6wnIQ1I9 + gQEA/EWmrCFZfzWB50RuO7vGRsg3ac1fhQRPsZInbSL+Z2YA/RRJBLb8jWngKYd/ + cZikJ/GyowGtcoBJJBPruj5thFENtDdUaG9tYXMgQS4gQ2hyaXN0ZW5zZW4gSUkg + PHRjaHJpc3RlbnNlbkB2ZXQuay1zdGF0ZS5lZHU+iJMEExYKADsWIQSLEoKVWhSf + q3NfVtOtkVLrCchDUgUCZ101NgIbAQULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIX + gAAKCRCtkVLrCchDUtaIAQDmtsVMcVAEYijjwwuTo9uUXq1cq+VAd4nVlzx6cXvK + 2gD/Vi6c0YUQMe4XU6p3L8ur2Y0b5fwNvA2q+arerCe6cAq4MwRnXTWNFgkrBgEE + AdpHDwEBB0BtEdEOzEbrbd1RwtbiXfUdO/gecppU4WvtQGQ1uH2RTYj1BBgWCgAm + FiEEixKClVoUn6tzX1bTrZFS6wnIQ1IFAmddNY0CGwIFCQW755MAgQkQrZFS6wnI + Q1J2IAQZFgoAHRYhBN/IAiJKwiYzyKQIMfcVGW6wdYj/BQJnXTWNAAoJEPcVGW6w + dYj/fcsBAIkGSljZ7Gl//uPFiJpNf209EaLIZ4N15gMCbF18/g7iAP46Ah5gPvhp + 05IulDKJheDnjJwyrsfKCRg68SZ4dCvVB2BsAQCPhM/oJZdvzsOw0O3k/OAozX6b + RKwSe5tJJiLon7zqygD7B+021foD+snFTYAN4H22xS+BKqN0f8tw71sPWHZx7gW4 + MwRnXTWOFgkrBgEEAdpHDwEBB0BDcK/hT+3s452nnww9oinVstMTx7+lNYdEMt0V + TXxvo4h+BBgWCgAmFiEEixKClVoUn6tzX1bTrZFS6wnIQ1IFAmddNY4CGyAFCQW7 + 55IACgkQrZFS6wnIQ1KddQEA4LOnL5Gg/UHYOMej2nGVjlxI4cnLTo/ju7Ed1m9H + hYUA/iYU3KfUgfSfvLKhg91PwGfFDvmRLoBiYaflbekKe+cEuDgEZ101oBIKKwYB + BAGXVQEFAQEHQN3Bry/+BQMTunIxjcSY/kK7K9ItlPtpLjAWUQrWZqZMAwEIB4h+ + BBgWCgAmFiEEixKClVoUn6tzX1bTrZFS6wnIQ1IFAmddNaACGwwFCQW753YACgkQ + rZFS6wnIQ1LuRAD+JvOSrv1xe+HCjsSfNlOqCE9ZR2KcN1hcR/Gd80V4y4kA/3sC + GOYGT+Hm5E5a7oKKHIZOMxBhfFJCPdoxDMBvee0IuDMEZ1013xYJKwYBBAHaRw8B + AQdAURPrApZ0ORNAhLvhCKGjsPUvvpDEdeiuU7yezSkUkoiI9QQYFgoAJhYhBIsS + gpVaFJ+rc19W062RUusJyENSBQJnXTXfAhsCBQkFu+dBAIEJEK2RUusJyENSdiAE + GRYKAB0WIQQbOpuRop10V4Rxy0NLCkigcdPLigUCZ1013wAKCRBLCkigcdPLingd + AP4wnkOjPOUbbJq60e9eVwBATc6oMs8PUs/RW5IjQLo0+QEAnNN2GN0Ck9Ondxol + /vHmZCE2w5D+KNXighkM08qNGw1MRgEAt4cQmCD1BVQe+Vn5i0MxVvTDP4iBagAP + 0lUd2eSFtwwBAI2EjttUu1jY+TMlrav6WotRY9zB10Tc6OSBMA0kPpgEuDMEZ101 + 4BYJKwYBBAHaRw8BAQdA68JzWAJ5/aMLlx9/sTNVbP4HUnk+FMRR6B8WD0xL7z6I + fgQYFgoAJhYhBIsSgpVaFJ+rc19W062RUusJyENSBQJnXTXgAhsgBQkFu+dAAAoJ + EK2RUusJyENS4MoA/2T1RjkEhwII6FAJWj8UV/nvwodXyX2eDgZj+h7izRflAP9y + 19MsNmOkEhVJJbz1rnCkpzdcG4x0PNoMGy+44xj1ArgzBGddNeAWCSsGAQQB2kcP + AQEHQGMufoZikOyOFbHvu+CJcQlK5DclCVNJBgZQcImpEqm/iPUEGBYKACYWIQSL + EoKVWhSfq3NfVtOtkVLrCchDUgUCZ1014AIbAgUJBbvnQACBCRCtkVLrCchDUnYg + BBkWCgAdFiEEhp1tRu+xCJg9TLHNGaLvOjwMGKkFAmddNeAACgkQGaLvOjwMGKko + 4gD+NLJaxLDatmU+C/l5fLV6xp0PRS/c5tRRMdhtic211BgA/0lrdz2pHGHlQwvw + PRZg2EMiTDreawVZrlSZdfexBeMD7bYA/A9gGeZYVzKKABjoyF1EMvDPm7x7bSrE + xpB7tEzJy7a7AQCs+x55xgk9NSrmo4ZjTIXsj7BZTkhTDkJay1FZ65lsAbgzBGdd + NeAWCSsGAQQB2kcPAQEHQLa2MGXl7JyU/yS+dz0mkPcRIZpU4C3USLmYWJVT/deN + iH4EGBYKACYWIQSLEoKVWhSfq3NfVtOtkVLrCchDUgUCZ1014AIbIAUJBbvnQAAK + CRCtkVLrCchDUnXBAQCmFWVZzm3vOEftIPCRcKKsgaFg31CoxCpxhCw5rglwKgD/ + eQOxmwkpRQUe+R3qoyVGy/K2XHoPFJrdVb8JTh/krQ64MwRnXTXhFgkrBgEEAdpH + DwEBB0Dgt18beC6Ttlfr0QbXy2/gAX55kKHHpALY2mMm++/HNYj1BBgWCgAmFiEE + ixKClVoUn6tzX1bTrZFS6wnIQ1IFAmddNeECGwIFCQW75z8AgQkQrZFS6wnIQ1J2 + IAQZFgoAHRYhBBBFsbS1b3+lJiAJEYvIgJ5FpsrQBQJnXTXhAAoJEIvIgJ5FpsrQ + xdEBAK1to7pkMw1JJzL/OKgexB/HAYryDU20HiCTWbMBPTWRAP9uIiNkVUZ58ja/ + 3Dcl+ah1kUxd3Mrxs49jI4ItJtZ8D4FBAQAA1aRdYoFwvWrxuDUONNHZGZBWczm0 + 9kttdmGfIpfEAgD/ZDJWfRpxO3AEwU0BpVB3mxFSSF058ShOAjXcbZMEngq4MwRn + XTXhFgkrBgEEAdpHDwEBB0AMqjR+Y5jc/tawBcWLAkUbhWXvGFoRZziglCW76vw1 + 44h+BBgWCgAmFiEEixKClVoUn6tzX1bTrZFS6wnIQ1IFAmddNeECGyAFCQW75z8A + CgkQrZFS6wnIQ1IRFwEA5KMPbay92FCsR8gBqDWSBfZXxgXxasYMKYHFmFIQ7yAB + APU7TUwdw8yA55fUC6XqwtlQ2khyIiq/TBExZ4oFkbUF + =hbg7 + -----END PGP PUBLIC KEY BLOCK----- +crypto: + bitcoin: bc1q66u7fqmptr4sczfmvxxfckzl6566633umx40n7 + lightning: "millironx@coinos.io" + ethereum: 0x97610b550a5eB6eB2c4a57d3D2b317816c413Fb4 + monero: 4649mFt2BVjC8pYD7K5kKzSgbWseoL9r3d6eQJ6nebwnLTe6jQKwB9g3jXkwiXAu1aizir8Uf2TYwAM5sQ4Ggp5434p7fzb + zcash: zs13kw2rkljxj6uymx6nnk2npamn2dhafuljfq79ntv67320jaxshnw49h7prrjj5v0pr5ry44c3ml +--- + +Hi! I'm Thomas. I love anything to do with cattle or technology, but especially +anything to do with both of them. I spend way more time in beef country with +beef cows, but I've got a soft spot for Brown Swiss dairy cows (just in case you +couldn't tell by the pictures). I've worn a lot of different hats: + +| | | +| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| First and foremost | ✝️ {{< abbr "Born again, fundamentalist, dispensationalist, King James Bible-believing, independent Baptist" >}}Christian{{< /abbr >}} | +| Location | 🦬 {{< abbr "I want to keep claiming Wyoming, but they're pretty strict about residency there, and I don't want to repeat the Liz Cheney fishing license incident" >}}Wyomingite{{< /abbr >}} sojourning in 🌻 {{< abbr "Yes, Toto, we are in Kansas now" >}}Kansas{{< /abbr >}} (this ought to be interesting) | +| Education | 📐 {{< abbr "noun. A person who cannot build cool things like airplanes or bridges, but can blow up an entire neighborhood and kill dozens of children by misplacing a decimal point. See also: self-hating chemist" >}}Chemical Engineer{{< /abbr >}} | +| Profession | 🧬 {{< abbr "I do genetics and computers" >}}Bioinformatician{{< /abbr >}} and 🐄🩺 {{< abbr "I can't rope well enough to be a cowboy, so being a cow doctor will have to suffice" >}}Veterinarian{{< /abbr >}} (soon!) | +| Politics | 🗽 {{< abbr "Refers to the belief in natural social and political laws created by God that are as inflexible as the laws of physics" >}}Juris naturalist{{< /abbr >}} | +| Hobbies | 🎥 {{< abbr "Storytelling at 24 frames per second" >}}Filmmaker{{< /abbr >}} and 💃🏻 {{< abbr "Square dancing is more musically rigid and is standardized across the country. Swing dancing is more freeform and differs regionally. It's like the difference between classical music and jazz. I like both." >}}Square/swing dancer{{< /abbr >}} | diff --git a/people/thomas-a.-christensen-ii/thumbnail.jpg b/content/people/thomas-a.-christensen-ii/thumbnail.jpg similarity index 100% rename from people/thomas-a.-christensen-ii/thumbnail.jpg rename to content/people/thomas-a.-christensen-ii/thumbnail.jpg diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..ce1d17c --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,20 @@ +--- +title: "ChemE Cows" +cardImage: stable-diffusion-cheme-cow-08 +cardImageDescription: | + black and white dairy cow wearing a bright yellow hard hat at an oil refinery on a clear sunny day + Fooocus v2.5.5 realisticStockPhoto_v20.safetensors + Hopefully someday I can replace this with a real image +motto: + ChemE Cows
A blog about cattle, technology, or anything remotely + affecting either of them +menu: + main: + name: Blog + params: + icon: block-quote + weight: 2 +fa-thumbnail: block-quote +--- + +A blog where I might post stuff some day. diff --git a/content/posts/baptist-mafia.md b/content/posts/baptist-mafia.md new file mode 100644 index 0000000..7b4481f --- /dev/null +++ b/content/posts/baptist-mafia.md @@ -0,0 +1,104 @@ +--- +title: + "On Baptist habits (or why Baptist churches feel like they're run by the + Mafia)" +date: 2024-03-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - religion + - baptist + - christianity + - love + - doctrine +featured: true +categories: + - blog +--- + + + +In the grand tapestry of American religiosity, there exists a peculiar breed of +Christian denomination that stands out for its unique blend of fervent devotion +and...let's be honest, a hint of authoritarianism. I'm, of course, referring to +Baptist churches. Yes, those churches that make you wonder if they're being run +by the Mafia. + +Now, before I proceed, let me just clarify that this isn't an attempt to +disparage the good people who worship in these esteemed institutions. No, no, +nothing like that. It's merely a case of observational reporting, where I'm +poking around the fringes of Baptist culture to get a better understanding of +what makes them tick. + +As someone who's spent considerable time within the fold (hello, 20+ years of +being born again), I've come to realize that there are certain habits, +practices, and attitudes that seem endemic to Baptist churches. Now, keep in +mind that this isn't a generalization, but rather an observation born out of +personal experience. + +One of these habits is an extraordinary level of fervor and zealotry. Baptists +tend to be deeply invested in their faith, often to the point where it borders +on fanaticism. I've seen folks who will passionately argue for or against just +about anything that's perceived as contrary to their interpretation of +scripture. Now, while this can be a laudable trait in moderation, excessive +fervor can quickly turn toxic. + +Another peculiar habit of Baptist churches is an unsettling preoccupation with +hierarchy and authority. It's not uncommon to see senior pastors wielding near +absolute power within the church, often based on factors such as age, +experience, or – heaven forbid – personal popularity. This can lead to a culture +where dissenting voices are stifled, and nonconformity is discouraged. + +The worship services themselves often feel more like formal lectures or +performances than genuinely communal gatherings. Don't get me wrong; I love a +good hymn or sermon as much as the next person, but sometimes it feels like +you're trapped in a 90-minute lecture on theology. And if you're sitting too far +forward, forget about trying to contribute to the conversation – your +participation will be met with stern disapproval. + +In addition, there's an omnipresent air of suspicion and mistrust that seems to +pervade every aspect of Baptist life. If someone doesn't toe the party line, +they're often met with swift reprimand or outright ostracism. This creates a +toxic environment where people feel pressured into conformity rather than being +encouraged to explore their own spirituality. + +Of course, there are always exceptions to the rule, just like in any other human +endeavor. I've encountered Baptist churches that embody the very opposite of +these described habits – places where worship is genuine, inclusive, and +welcoming, where individual freedom and creativity are cherished, and where the +emphasis is on community rather than control. + +So what drives this peculiar breed of authoritarianism within some Baptist +churches? Is it a genuine misunderstanding of scripture, or perhaps a result of +historical context? Or is there something deeper at play – perhaps an inherent +tension between the democratic values of American society and the hierarchical +structures of traditional Christianity? + +These questions are central to my exploration of this topic. I'll delve into the +complexities of Baptist history, the role of patriarchal ideology, and the ways +in which cultural and social factors have shaped the institution over time. + +In conclusion, while I'm not ready to declare war on all things Baptist just yet +(although, I must admit, it's tempting), I do hope that this exploration will +shed some light on a fascinating aspect of American religiosity. Perhaps, +through a better understanding of these peculiar habits and practices, we can +foster a more inclusive and compassionate community – one where faith and +conviction are tempered by empathy and respect for differing viewpoints. + +Ultimately, as someone who's found their own spiritual home within the Baptist +fold, I believe it's essential to approach this conversation with sensitivity, +curiosity, and an open mind. By embracing our shared humanity rather than +perpetuating artificial divisions, we can work towards creating a more vibrant +tapestry of faith in America – one that celebrates diversity while remaining +committed to core principles of love and service. + +But for now, I'll leave you with these final thoughts on Baptist habits – habits +that may seem baffling or even disturbing at times, but are ultimately part of +what makes the Baptist experience so richly textured. diff --git a/content/posts/history-of-medicine.md b/content/posts/history-of-medicine.md new file mode 100644 index 0000000..5bc6652 --- /dev/null +++ b/content/posts/history-of-medicine.md @@ -0,0 +1,178 @@ +--- +title: "A Brief History of Medicine (2438)" +date: 2024-05-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - medicine + - technology + - fiction + - epidemiology + - veterinary medicine +featured: true +categories: + - blog +--- + + + +I still remember the first time I set foot in the hospital where I would spend +most of my working life. It was 2123, and medicine was already a highly advanced +field, thanks to the rapid progress made possible by nanotechnology and +artificial intelligence. The patient I was assigned to that day was an elderly +man who had been suffering from a rare genetic disorder for years. With the help +of a swarm of microscopic robots that could repair damaged cells at a molecular +level, we were able to extend his lifespan by several decades. + +As a young physician, it was exhilarating to be part of a field that seemed to +have no limits. We were constantly pushing the boundaries of what was thought +possible, and it showed in our results. Patients who would have been doomed +years ago were now thriving, thanks to advances in medicine. + +But as with any rapidly advancing field, there were also risks involved. The use +of nanorobots and AI algorithms raised concerns about accountability and +transparency. As a physician, I had to be careful to ensure that my actions were +guided by the highest ethical standards. + +The years that followed were marked by incredible breakthroughs in medicine. +Diseases that had plagued humanity for centuries began to disappear as +treatments became more effective. Cancer, in particular, was a major target for +researchers, and significant progress was made in understanding its causes and +developing targeted therapies. + +One of the most exciting developments in this area was the discovery of a new +type of cancer-killing nanobot that could selectively target and destroy tumor +cells while leaving healthy tissue intact. The technology was still in its +infancy, but the potential it held was enormous. + +As I look back on those early years of my career, I am reminded of the +importance of perseverance and creativity. Medicine is a field that requires +constant innovation and adaptation, and it takes a lot of hard work to stay +ahead of the curve. + +Over time, medicine evolved to become an integral part of daily life. People +began to live longer, healthier lives, thanks to advances in preventative care +and personalized medicine. The rise of genomics and precision medicine allowed +for tailored treatments that could be customized to individual needs. + +As a physician, I had the privilege of witnessing firsthand the impact that +these advancements had on people's lives. Patients who would have been confined +to beds for years were now able to return to their normal activities, thanks to +the latest treatments. + +But with all the progress we made, there were also new challenges that emerged. +The increasing reliance on technology led to concerns about the ethics of +medicine. As medical robots and AI algorithms took over more tasks, there were +questions about accountability and the role of human physicians in this new +landscape. + +These debates are ongoing to this day. As a physician, it's essential for me to +stay up-to-date with the latest developments and advancements in my field. By +doing so, I can ensure that patients receive the best possible care, while also +navigating the complex issues surrounding medicine in the 24th century. + +Fast forward to 2438, and medicine has changed dramatically. Diseases have +become a rarity, thanks to breakthroughs in biotechnology and genetic +engineering. Humans live longer, healthier lives, with an average lifespan of +over 120 years. + +Despite these advancements, there are still challenges to overcome. The +increasing reliance on AI and biotechnology has raised concerns about the ethics +of medicine. Many people worry that as medical robots and algorithms take over +more tasks, human physicians will become obsolete. + +However, I firmly believe that this is a misconception. As a physician in 2438, +I can attest that being a doctor still requires a deep understanding of human +biology, psychology, and sociology. While technology has certainly advanced +medicine, there are also skills and qualities that cannot be replicated by +machines alone. + +One of the most critical aspects of being a doctor is empathy. As a human being, +you need to understand your patients' emotional states, their fears and +anxieties, in order to provide them with effective care. This is something that +AI systems struggle to replicate, no matter how advanced they become. + +In my practice, I see patients who have been diagnosed with conditions that were +previously considered incurable. Cancer, for example, has all but disappeared +thanks to targeted therapies and immunotherapies. However, there are still other +challenges to overcome. + +As a physician, it's essential to stay informed about the latest developments in +medicine. This includes understanding how new technologies can be used to +improve patient outcomes, as well as addressing any concerns or fears that +patients may have regarding these advancements. + +One of the most significant breakthroughs in recent years has been the +development of advanced bioprinting techniques. These allow for the creation of +complex tissue structures and organs, which can then be transplanted into +patients who require them. + +The potential applications for this technology are vast. It could revolutionize +organ transplantation, allowing for more efficient use of donor organs and +reducing the need for long-term immunosuppression treatments. + +However, there are also concerns about the ethics of bioprinting. As with any +new technology, there are questions about accountability, safety, and the role +of human physicians in this process. + +Despite these challenges, I remain optimistic about the future of medicine. As a +physician in 2438, I've seen firsthand the incredible progress that has been +made, and I'm excited to see what the next generation of medical breakthroughs +will bring. + +One area of particular interest is the development of new treatments for mental +health disorders. In my practice, I often encounter patients who struggle with +anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions +are complex and multifaceted, and it's essential to develop treatments that +address all aspects of their impact. + +Recently, there has been a significant breakthrough in the development of new +therapies for mental health disorders. A team of researchers has made +significant progress in understanding the underlying mechanisms of these +conditions, and this has led to the development of new treatments that are more +effective than anything that came before. + +The treatment is based on the idea that mental health disorders are not just +symptoms, but rather a manifestation of an imbalance in the body's natural +chemistry. By developing targeted therapies that address this imbalance, +researchers have been able to create medications that can effectively treat a +wide range of conditions. + +One of the most promising developments in this area is the use of +neurotransmitter modulators. These are small molecules that can be used to +regulate the balance of neurotransmitters in the brain, which play a critical +role in regulating mood and emotional states. + +The implications for mental health treatment are enormous. For the first time in +history, we have a class of medications that could potentially treat multiple +conditions at once. This is a game-changer for patients who suffer from complex +mental health disorders, and it's a testament to the power of medical research. + +As I look back on my career as a physician, I am reminded of the importance of +perseverance and creativity. Medicine is a field that requires constant +innovation and adaptation, and it takes a lot of hard work to stay ahead of the +curve. + +Despite all the progress we've made, there are still challenges to overcome. The +increasing reliance on technology raises concerns about accountability and +transparency, as well as questions about the role of human physicians in this +new landscape. + +These debates will likely continue for years to come. As a physician, it's +essential for me to stay informed about the latest developments in medicine, +while also addressing any concerns or fears that patients may have regarding +these advancements. + +Ultimately, my goal is to provide the best possible care to my patients, while +also pushing the boundaries of what's thought possible in this field. As a +doctor in 2438, I am excited to see what the future holds for medicine, and I am +confident that we will continue to make tremendous progress in the years ahead. + +}} diff --git a/content/posts/keep-epds-real.md b/content/posts/keep-epds-real.md new file mode 100644 index 0000000..43c6a9c --- /dev/null +++ b/content/posts/keep-epds-real.md @@ -0,0 +1,121 @@ +--- +title: "Keep EPDs Real" +date: 2024-07-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - cattle + - genetics + - technology + - epds + - ptas +featured: true +categories: + - blog +--- + + + +In the world of cattle breeding, there's a concept that can be both fascinating +and intimidating: Expected Progeny Differences (EPDs). I've come to appreciate +the importance of genetics and EPDs in cattle breeding. In this blog post, we'll +delve into what EPDs are, why they matter, and how to keep them real. + +## What Are EPDs? + +EPDs are a way to measure the genetic differences between animals that can help +breeders predict which offspring will be more or less desirable for certain +traits. Think of it like trying to guess what your favorite cow's children will +look like based on their parents' characteristics. In genetics, we call this +inheritance – and EPDs are a simple yet powerful tool to help us understand how +genetic traits are passed down. + +## The Basics of Genetics + +Before diving into EPDs, let's quickly review the basics of genetics. You see, +every living thing has DNA (deoxyribonucleic acid), which contains the +instructions for its development and function. The DNA is made up of genes, +which code for specific traits like eye color, hair color, or in our case, milk +production. + +Genes are like recipes that tell our bodies what to make – but instead of +ingredients like flour and sugar, they're made up of nucleotides. These +nucleotides can be either A (adenine), C (cytosine), G (guanine), or T +(thymine). The sequence of these nucleotides determines the genetic information. + +## How EPDs Work + +Now that we've covered some basics, let's talk about how EPDs work. Imagine +you're breeding two cows, Bessie and Daisy, to produce offspring. You want +Bessie to pass on her desirable traits, like excellent milk production, to their +children. + +To predict which calf will inherit these traits, you'd look at the genetic +information of both parents. You'd then use a complex formula that takes into +account the genetic potential of each parent and their offspring's genotype (the +actual DNA sequence). This gives you an Expected Progeny Difference score – +which represents how much better or worse the trait is expected to be in the +offspring compared to the parent. + +For example, let's say Bessie has a high EPD for milk production, but Daisy has +a low EPD. The formula would take into account both parents' scores and predict +that their calf will have an average EPD for milk production. + +## Benefits of EPDs + +So why do we need EPDs? In short, they help us make informed decisions about +breeding. By knowing which traits are being passed down from one generation to +the next, we can: + +1. Make better breeding choices +2. Predict potential problems or improvements in future generations +3. Develop more accurate breeding strategies + +But that's not all – EPDs also have a significant impact on the cattle industry +as a whole. By using data-driven approaches, breeders and farmers can: + +1. Increase efficiency and reduce costs +2. Improve animal welfare by selecting for desirable traits +3. Support sustainable agriculture practices + +## Challenges with EPDs + +While EPDs offer many benefits, there are also some challenges to consider: + +1. Data quality: If the data used to calculate EPDs is inaccurate or incomplete, + it can lead to incorrect predictions. +2. Complex genetics: Genetic inheritance can be complex, making it difficult to + predict how certain traits will manifest in offspring. +3. Selection bias: Breeders may unconsciously favor certain breeds or animals + due to personal preferences rather than objective genetic data. + +## Staying Up-to-Date with EPD Research + +EPDs are constantly evolving as new research emerges and technology improves. To +stay informed, it's essential to: + +1. Follow industry publications and scientific journals +2. Attend workshops and conferences on genetics and EPDs +3. Network with other breeders and researchers in the field + +## Conclusion + +In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for +cattle breeders. By understanding how genetic traits are passed down through +generations, we can make more informed decisions about breeding and improve +animal welfare. + +Remember – keeping EPDs real means staying current with the latest research, +attending workshops, and networking with experts in the field. With these +skills, you'll be well on your way to becoming a genetics-savvy breeder! + +As always, I'm grateful for this opportunity to share my passion for cattle +breeding and genetics with you – whether it's through EPDs or something entirely +different! diff --git a/content/posts/nf-core.md b/content/posts/nf-core.md new file mode 100644 index 0000000..4113da8 --- /dev/null +++ b/content/posts/nf-core.md @@ -0,0 +1,106 @@ +--- +title: "My Troubles with nf-core" +date: 2024-09-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - bioinformatics + - nf-core + - technology + - programming + - people +featured: true +categories: + - blog +--- + + + +# My Troubles with nf-core + +A blog post about my frustrations and experiences working with the popular +nf-core framework in bioinformatics. + +## Introduction + +As a biologist who has worked extensively with different software tools for +analyzing biological data, I have always been impressed by the power and +flexibility of the nf-core platform. However, after several years of using and +contributing to this excellent toolset, I have come to realize that there are +some fundamental issues with the way nf-core is currently structured and +maintained. + +## Background + +NF-core (short for Next-Generation Sequencing Core) is an open-source framework +developed by the Broad Institute of MIT and Harvard that provides a +comprehensive set of tools for analyzing high-throughput sequencing data. The +platform has been widely adopted in the scientific community due to its ease of +use, scalability, and flexibility. + +## My Experience with nf-core + +As a bioinformatician, I have worked extensively with various pipelines built on +top of nf-core, including the popular +[SNEAK](https://github.com/broadinstitute/SNEAK) pipeline for variant discovery. +While nf-core has provided me with a reliable platform for analyzing large +datasets, I have consistently encountered issues with its organization, +documentation, and community support. + +## Issues with Organization + +One of my biggest frustrations with nf-core is the lack of clear organization +within its repository. The project's main directory contains an overwhelming +number of subdirectories, each representing a different tool or pipeline. This +makes it difficult to navigate the codebase and understand how the various tools +interact with each other. + +## Documentation and Community Support + +NF-core has excellent documentation, but in my experience, this documentation is +often incomplete or outdated. I have encountered several instances where I was +unable to find relevant information about a particular tool or pipeline, leading +me to waste hours of time searching for answers online. + +Moreover, the nf-core community has historically been relatively inactive, with +few developers actively contributing to the project over the years. This lack of +support and resources makes it challenging to address issues or implement new +features. + +## Impact on Bioinformaticians + +Despite my personal frustrations with nf-core, I firmly believe that this +platform remains an essential tool for bioinformaticians around the world. The +benefits of using nf-core include its scalability, flexibility, and ease of use. +However, I strongly advocate for a renewed focus on addressing the issues +mentioned above to ensure that this platform continues to meet the evolving +needs of the scientific community. + +## Conclusion + +As someone who has dedicated their career to bioinformatics, it pains me to see +a project like nf-core hindered by its own structure and lack of support. While +I will continue to contribute to and use nf-core in my work, I hope that this +article will serve as a catalyst for the developers and community leaders +involved in maintaining this platform to prioritize much-needed changes. + +## Recommendations + +To address the issues I have raised above, I recommend the following steps: + +- Reorganize the repository structure to make it more logical and easier to + navigate. +- Update and expand the documentation to include comprehensive information on + all tools and pipelines within nf-core. +- Foster a more active community by engaging with bioinformaticians through + regular forums, workshops, or online events. + +By addressing these issues, I am confident that nf-core can continue to thrive +as a powerful tool for analyzing high-throughput sequencing data. diff --git a/content/posts/phineas-and-ferb.md b/content/posts/phineas-and-ferb.md new file mode 100644 index 0000000..86bc37c --- /dev/null +++ b/content/posts/phineas-and-ferb.md @@ -0,0 +1,211 @@ +--- +title: "Phineas and Ferb is (an) Epic" +date: 2024-11-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - fun + - fiction + - phineas and ferb + - review + - literature +featured: true +categories: + - blog +--- + + + +"Ancient literary epics often followed a specific structure that centered around +an event or journey." The episode structure of Phineas and Ferb, which has been +delighting audiences for decades, is more closely aligned with ancient literary +epics than modern hero's journey novels. + +While the term "hero's journey" was popularized by Joseph Campbell in his work, +The Hero with a Thousand Faces, the model he proposed is based on archetypes and +mythological narratives found in cultures around the world. In contrast, Phineas +and Ferb's episode structure is centered around self-contained events or +journeys that are more reminiscent of ancient epics like Homer's Iliad or +Odyssey. + +"A common theme among ancient epics was the overcoming of challenges." One key +element that sets Phineas and Ferb apart from modern hero's journey novels is +its focus on the adventures themselves rather than individual characters' +emotional journeys. In an episode like "The Fireworks Episode," Phineas and Ferb +work together to create a spectacular fireworks display, but their actions are +not necessarily motivated by personal growth or transformation. Instead, they +take on the challenge as a way to have fun and make their day better. + +"This approach is similar to ancient epics like The Iliad, which tells the story +of the Trojan War." In Homer's Iliad, the characters are often driven by a +desire for honor or personal glory, rather than a deeper emotional journey. The +focus is on the event itself – in this case, the war between Troy and Greece – +rather than the individual characters' inner lives. + +"The Phineas and Ferb approach also avoids the 'big reveal' trope." Another key +element of ancient epics was often a dramatic twist or revelation at the end. In +Homer's Odyssey, for example, the protagonist Odysseus must navigate his way +home after being stranded on a distant island. The final scene reveals that he +has finally returned to Ithaca and is reunited with his wife. + +"Phineas and Ferb avoids this trope by ending most episodes on an upbeat note." +In contrast, Phineas and Ferb tends to wrap up its storylines in a way that +feels satisfying and fun for the audience. The final scene of an episode often +shows Phineas and Ferb achieving their goal or finding a creative solution to +their problem, without revealing any deeper truths or secrets. + +"This approach also reflects the show's focus on creativity and imagination." +One key aspect of ancient epics was their emphasis on the power of the human +mind and imagination. In Homer's Odyssey, for example, Odysseus uses his +intelligence and cunning to navigate his way home. + +"Phineas and Ferb encourages viewers to think creatively in a similar way." +Phineas and Ferb is known for its emphasis on creativity and imagination, with +characters often coming up with innovative solutions to problems. The show's +focus on the creative process itself – rather than individual characters' +emotional journeys – reflects this emphasis. + +"By following an episode structure that mimics ancient literary epics." Phineas +and Ferb's use of self-contained events or journeys, combined with a focus on +creativity and imagination, reflects a more traditional approach to +storytelling. By avoiding the 'big reveal' trope and emphasizing the creative +process, the show encourages viewers to think creatively and find their own +solutions to problems. + +"This is an approach that has been lost in many modern adaptations of ancient +stories." One criticism of modern hero's journey novels is that they often +prioritize individual character development over the adventures themselves. In +contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing +on the events themselves rather than individual characters' emotional journeys. + +"The show's creators have said that they were influenced by their own love of +literature." Dan Povenmire and Jeff 'Swifty' Swinton, the creators of Phineas +and Ferb, have both mentioned being influenced by classic literature when +creating the show. They have stated that they wanted to create a show that +celebrated creativity and imagination in a way that was reminiscent of ancient +epics. + +"By taking an epic approach to storytelling." By following an episode structure +that mimics ancient literary epics, Phineas and Ferb offers a unique take on the +traditional 'hero's journey' narrative. While individual characters may grow or +change over the course of an episode, the focus is always on the event itself – +rather than individual emotional journeys. + +"This approach makes the show feel fresh and exciting." One key element that +sets Phineas and Ferb apart from modern hero's journey novels is its focus on +action and adventure. By emphasizing the creative process and self-contained +events, the show creates a sense of excitement and possibility that is rare in +modern television. + +"The show's use of music also reflects an epic approach." Another key element of +Phineas and Ferb is its use of music – specifically, Perry the Platypus' secret +agent theme song. The show's creators have said that they wanted to incorporate +a musical element into the episode structure, creating a sense of excitement and +anticipation that is reminiscent of ancient epics. + +"This approach creates a sense of rhythm and flow." By incorporating music in +this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to +ancient epics. The show's use of melody and tempo helps to create a sense of +tension and release, drawing the viewer into the episode's narrative. + +"The show's focus on action and adventure also makes it feel epic." One key +element that sets Phineas and Ferb apart from modern hero's journey novels is +its focus on action and adventure. By emphasizing creativity and imagination in +this way, the show creates a sense of excitement and possibility that is rare in +modern television. + +"This approach also makes the show feel more timeless." Another key element of +Phineas and Ferb is its focus on storytelling itself – rather than individual +characters' emotional journeys. By taking an epic approach to storytelling, the +show creates a sense of timelessness that is rare in modern television. + +"The show's creators have said that they wanted to create a show that would +appeal to viewers of all ages." Dan Povenmire and Jeff 'Swifty' Swinton, the +creators of Phineas and Ferb, have both mentioned wanting to create a show that +celebrates creativity and imagination in a way that is accessible to audiences +of all ages. + +"By taking an epic approach to storytelling, Phineas and Ferb achieves this +goal." By following an episode structure that mimics ancient literary epics, +Phineas and Ferb creates a sense of excitement and possibility that is appealing +to viewers of all ages. The show's focus on creativity and imagination makes it +feel fresh and exciting, while its use of music and storytelling techniques +helps to create a sense of rhythm and flow. + +"In conclusion, the episode structure of Phineas and Ferb is more closely +aligned with ancient literary epics than modern hero's journey novels." By +taking an epic approach to storytelling, Phineas and Ferb offers a unique take +on the traditional 'hero's journey' narrative. While individual characters may +grow or change over the course of an episode, the focus is always on the event +itself – rather than individual emotional journeys. + +"The show's creators have said that they were influenced by their own love of +literature." Dan Povenmire and Jeff 'Swifty' Swinton, the creators of Phineas +and Ferb, have both mentioned being influenced by classic literature when +creating the show. They have stated that they wanted to create a show that +celebrated creativity and imagination in a way that was reminiscent of ancient +epics. + +"By following an epic approach to storytelling." By taking an epic approach to +storytelling, Phineas and Ferb offers a unique take on the traditional 'hero's +journey' narrative. While individual characters may grow or change over the +course of an episode, the focus is always on the event itself – rather than +individual emotional journeys. + +"This approach makes the show feel fresh and exciting." One key element that +sets Phineas and Ferb apart from modern hero's journey novels is its focus on +action and adventure. By emphasizing creativity and imagination in this way, the +show creates a sense of excitement and possibility that is rare in modern +television. + +"The show's use of music also reflects an epic approach." Another key element of +Phineas and Ferb is its use of music – specifically, Perry the Platypus' secret +agent theme song. The show's creators have said that they wanted to incorporate +a musical element into the episode structure, creating a sense of excitement and +anticipation that is reminiscent of ancient epics. + +"This approach creates a sense of rhythm and flow." By incorporating music in +this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to +ancient epics. The show's use of melody and tempo helps to create a sense of +tension and release, drawing the viewer into the episode's narrative. + +"The show's focus on action and adventure also makes it feel epic." One key +element that sets Phineas and Ferb apart from modern hero's journey novels is +its focus on action and adventure. By emphasizing creativity and imagination in +this way, the show creates a sense of excitement and possibility that is rare in +modern television. + +"The show also encourages viewers to think creatively." Phineas and Ferb +encourages viewers to think creatively by presenting them with complex problems +to solve or adventures to embark upon. By emphasizing creativity and +imagination, the show inspires viewers to find their own solutions to problems. + +"This is an approach that has been lost in many modern adaptations of ancient +stories." One criticism of modern hero's journey novels is that they often +prioritize individual character development over the adventures themselves. In +contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing +on the events themselves rather than individual characters' emotional journeys. + +"The show's creators have said that they wanted to create a show that would +appeal to viewers of all ages." Dan Povenmire and Jeff 'Swifty' Swinton, the +creators of Phineas and Ferb, have both mentioned wanting to create a show that +celebrates creativity and imagination in a way that is accessible to audiences +of all ages. + +"By taking an epic approach to storytelling." By following an episode structure +that mimics ancient literary epics, Phineas and Ferb achieves this goal. The +show's focus on creativity and imagination makes it feel fresh and exciting, +while its use of music and storytelling techniques helps to create a sense of +rhythm and flow. + +"In conclusion, the episode structure of Phineas and Ferb is more closely +aligned with ancient literary epics than modern hero's journey novels." In +conclusion, the episode structure of Phineas and Ferb is more closely aligned +with ancient literary epics than modern hero's journey novels. diff --git a/posts/thumbnail.jpg b/content/posts/thumbnail.jpg similarity index 100% rename from posts/thumbnail.jpg rename to content/posts/thumbnail.jpg diff --git a/content/posts/why-i-gave-up-github.md b/content/posts/why-i-gave-up-github.md new file mode 100644 index 0000000..1fefb07 --- /dev/null +++ b/content/posts/why-i-gave-up-github.md @@ -0,0 +1,123 @@ +--- +title: "Why I gave up GitHub: A personal retrospective" +date: 2024-01-01 +people: + - Thomas A. Christensen II +draft: true +tags: + - technology + - github + - linux + - microsoft + - windows +featured: true +categories: + - blog +--- + + + +Your personal journey to quitting GitHub resources is a story of disillusionment +and rededication. As a Christian American chemical +engineer-turned-bioinformatician, I had always been fascinated by the +intersection of technology and faith. + +Growing up in a conservative family with Libertarian leanings, I was taught to +value individual freedom and limited government intervention. But as I delved +deeper into my work in bioinformatics, I began to see the darker side of +GitHub's business model. The platform's emphasis on open-source and +community-driven development seemed at odds with my own values of intellectual +property and personal autonomy. + +One day, while working on a project, I stumbled upon an article about the +growing pains of GitHub's dominance in the tech industry. It highlighted the +tension between the need for collaboration and the perils of unchecked corporate +power. Something clicked inside me, and I realized that I couldn't remain silent +anymore. I began to question whether my use of GitHub was truly aligning with my +values. + +As a Christian, I had always believed in the importance of living a life of +integrity and authenticity. But the more I learned about GitHub's practices, the +more I felt like I was compromising on those principles. The platform's reliance +on open-source code seemed to prioritize the interests of corporations over +those of individuals. It was a hard pill to swallow. + +So, I made the decision to take a stand. I began to explore alternative +platforms and tools for my work, seeking out options that better aligned with my +values. It wasn't easy – it meant relearning new skills, investing time and +effort into building new relationships within the developer community. + +But as I dug deeper, I realized that quitting GitHub wasn't just about +technology – it was about re-examining my own motivations and priorities. Why +had I joined GitHub in the first place? What did I hope to achieve through my +work? + +For me, it was never truly about the technology itself, but about the community +and the sense of purpose that came with working on projects that mattered. As a +filmmaker at heart, I had always been drawn to stories that explored complex +issues and promoted empathy and understanding. + +Quitting GitHub wasn't an easy decision, but it was one that ultimately freed me +from feeling like I was compromising my values. It forced me to confront the +tension between my desires for connection and collaboration, and the need for +personal autonomy. + +Today, I work on a range of projects using alternative platforms and tools. It's +not always easy – sometimes I miss the convenience and community of GitHub – but +it's worth it to know that I'm living more authentically. + +One of the biggest challenges has been building new relationships within the +developer community. In the past, I relied heavily on GitHub for collaboration +and networking opportunities. But by leaving, I've had to start from scratch. + +It's taken time and effort to rebuild those connections, but it's worth it. +Today, I'm part of a vibrant network of developers who share my values and +priorities. We work together on projects that truly matter – issues like data +privacy, intellectual property, and accessibility. + +Quitting GitHub wasn't just about technology – it was about reclaiming my own +integrity and living out my values in a more meaningful way. It's been a journey +of self-discovery, growth, and transformation. And I'm grateful for every step +along the way. + +So, if you're like me and struggling with the tension between your personal +values and your work choices, I want to encourage you to take a step back and +re-examine your own motivations. What are you working towards? Why is it truly +important to you? + +Take the time to reflect on those questions, and consider whether your current +tools and platforms align with your values. + +In my experience, it's never too late to make a change. And sometimes, the +biggest changes come from taking small steps outside of our comfort zones. + +So, I'll leave you with this: if you're ready to take control of your own +journey and reclaim your integrity, start by taking a single step. It might be +as simple as switching to an alternative platform or tool. Or it could mean +having a difficult conversation with a colleague or manager. + +Whatever that step is, know that it's worth it. You'll be surprised at how +empowering it feels to take ownership of your own choices and priorities. + +And if you're feeling lost or uncertain, remember that you're not alone. There +are many people out there who share your values and aspirations. + +Let's build a community together – one where we prioritize empathy, +understanding, and authenticity. + +That's my story – a tale of disillusionment, rededication, and the power of +taking control of our own choices. I hope it inspires you to take a step in the +right direction. + +As a filmmaker at heart, I believe that stories have the power to shape us and +inspire change. And I'm grateful to be part of this community – working together +towards a brighter future where technology serves humanity, not just corporate +interests. + +We'll get there – one small step at a time. diff --git a/thumbnail.jpg b/content/thumbnail.jpg similarity index 100% rename from thumbnail.jpg rename to content/thumbnail.jpg diff --git a/content/videos/_content.gotmpl b/content/videos/_content.gotmpl new file mode 100644 index 0000000..2874dcd --- /dev/null +++ b/content/videos/_content.gotmpl @@ -0,0 +1,76 @@ +{{ $data := dict }} +{{ $url := "https://video.millironx.com/api/v1/accounts/millironx/videos?skipCount=true&count=100" }} +{{ with try (resources.GetRemote $url) }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else with .Value }} + {{ $data = . | transform.Unmarshal }} + {{ end }} +{{ else }} + {{ errorf "Unable to get remote resource %s" $url }} +{{ end }} + +{{ range $data.data }} + {{/* Complete descriptions and tags are only in the response for the complete video */}} + {{ $videoUrl := print "https://video.millironx.com/api/v1/videos/" .id }} + {{ $videoData := dict }} + {{ with try (resources.GetRemote $videoUrl) }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else with .Value }} + {{ $videoData = . | transform.Unmarshal }} + {{ end }} + {{ else }} + {{ errorf "Unable to get remote resource %s" $url }} + {{ end }} + + {{/* People are linked back to the the main site, so search for them here */}} + {{ $peopleReturned := findRESubmatch `\[([\w\s\.]+?)\]\(https://millironx\.com/people/.*\)` $videoData.description }} + {{ $people := slice "Thomas A. Christensen II" }} + {{ range $peopleReturned }} + {{ with index . 1 }} + {{ $people = $people | append . }} + {{ end }} + {{ end }} + + {{ $tags := $videoData.tags }} + + {{ $content := dict "mediaType" "text/markdown" "value" $videoData.description }} + {{ $dates := dict "date" (time.AsTime (default .publishedAt .originallyPublishedAt)) }} + {{ $categories := slice "video" }} + {{ $link := .url }} + {{ $params := dict + "categories" $categories + "people" $people + "link" $link + "featured" true + "tags" $tags + }} + {{ $page := dict + "content" $content + "dates" $dates + "title" .name + "path" .name + "params" $params + }} + {{ $.AddPage $page }} + + {{ $item := . }} + {{ with $thumbnailPath := $item.thumbnailPath }} + {{ $url := print "https://video.millironx.com" $thumbnailPath }} + {{ with try (resources.GetRemote $url) }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else with .Value }} + {{ $content := dict "mediaType" .MediaType.Type "value" .Content }} + {{ $resource := dict + "content" $content + "path" (print $item.name "/thumbnail." .MediaType.SubType) + }} + {{ $.AddResource $resource }} + {{ end }} + {{ else }} + {{ errorf "Unable to get remote resource %s" $url }} + {{ end }} + {{ end }} +{{ end }} diff --git a/content/videos/_index.md b/content/videos/_index.md new file mode 100644 index 0000000..f68c415 --- /dev/null +++ b/content/videos/_index.md @@ -0,0 +1,22 @@ +--- +title: Videos +cardImage: camera +cardImageDescription: + Isn't it a shame that the company that brought photography to the masses is + basically out of business now? +motto: Videography Portfolio +description: Showcase of my own videos +menu: + main: + params: + icon: video + link: https://video.millironx.com + weight: 50 +fa-thumbnail: video +link: https://video.millironx.com +--- + +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. diff --git a/content/videos/ag-olympics-reel/index.md b/content/videos/ag-olympics-reel/index.md new file mode 100644 index 0000000..6de2be1 --- /dev/null +++ b/content/videos/ag-olympics-reel/index.md @@ -0,0 +1,14 @@ +--- +title: "Farm Bureau Ag Olympics Reel" +date: 2017-02-16 +categories: + - video +link: https://youtube.com/watch?v=jhLJp3OFsYM +people: + - Thomas A. Christensen II +--- + +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. diff --git a/videos/ag-olympics-reel/thumbnail.jpg b/content/videos/ag-olympics-reel/thumbnail.jpg similarity index 100% rename from videos/ag-olympics-reel/thumbnail.jpg rename to content/videos/ag-olympics-reel/thumbnail.jpg diff --git a/feed.xml b/feed.xml deleted file mode 100644 index 4c0bcc1..0000000 --- a/feed.xml +++ /dev/null @@ -1,433 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/feed.xml2025-03-31T00:14:19+00:00All content on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> -https://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> -https://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/code/cowsay.jl/Cowsay.jl2022-05-11T01:32:54+00:002022-05-11T01:32:54+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:cow2: cowsay for Julia! -<p>:cow2: cowsay for Julia!</p> -https://millironx.millironx.page/@indiewebpub/code/docker-names/docker-names2022-05-09T09:13:08-05:002022-05-09T09:13:08-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A docker name generator in TypeScript. -<p>A docker name generator in TypeScript.</p> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> -https://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> -https://millironx.millironx.page/@indiewebpub/code/nfdocs-parser/nfdocs-parser2022-01-25T10:15:13-06:002022-01-25T10:15:13-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A Sphinx plugin for converting Nextflow docstrings into documentation -<p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> -https://millironx.millironx.page/@indiewebpub/code/singularity-builds/singularity-builds2021-11-15T12:37:15-06:002021-11-15T12:37:15-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/code/cowsay-cows/cowsay-cows2021-10-12T15:13:28-05:002021-10-12T15:13:28-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -cowfiles in the original spirit of cowsay, except that all of these are actually bovine -<p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> -https://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> -https://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/how-to-build-a-cow-cud-fuel-cell/How to Build a Cow-Cud Fuel Cell2018-08-01T00:00:00+00:002018-08-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/videos/ag-olympics-reel/Farm Bureau Ag Olympics Reel2017-02-16T00:00:00+00:002017-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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. -<p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> -https://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> -https://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..0a20125 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1737597992, + "narHash": "sha256-FECKBxkd+w5I/fhsquthDiw/r/MdCpqmKikBU9yQGug=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "d0bb4699177f691c8e558b32b3bdc38bc112f76f", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable-small", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..79685b8 --- /dev/null +++ b/flake.nix @@ -0,0 +1,35 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small"; + flake-utils.url = "github:numtide/flake-utils"; + }; + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: + let + pkgs = import nixpkgs { inherit system; }; + buildInputs = with pkgs; [ hugo nodejs ]; + in with pkgs; { + devShells.default = mkShell { inherit buildInputs; }; + packages.default = stdenvNoCC.mkDerivation { + name = "millironx-pages"; + src = self; + inherit buildInputs; + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + buildPhase = '' + runHook preBuild + + HUGO_ENV=production HUGO_ENVIRONMENT=production hugo --minify + + runHook postBuild + ''; + installPhase = '' + runHook preInstall + + mkdir -p $out + cp -r public/* $out/ + + runHook postInstall + ''; + }; + }); +} diff --git a/graphics/brandedbull.min.svg b/graphics/brandedbull.min.svg deleted file mode 100644 index e1f2864..0000000 --- a/graphics/brandedbull.min.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/images/camera_hu11324408385617148303.jpg b/images/camera_hu11324408385617148303.jpg deleted file mode 100644 index e6b36fd..0000000 Binary files a/images/camera_hu11324408385617148303.jpg and /dev/null differ diff --git a/images/charolette_hu941563462474298415.jpg b/images/charolette_hu941563462474298415.jpg deleted file mode 100644 index 1e0f1fb..0000000 Binary files a/images/charolette_hu941563462474298415.jpg and /dev/null differ diff --git a/images/eclipse_hu9537314080315470492.jpg b/images/eclipse_hu9537314080315470492.jpg deleted file mode 100644 index 178ab49..0000000 Binary files a/images/eclipse_hu9537314080315470492.jpg and /dev/null differ diff --git a/images/library_hu13643606213071976482.jpg b/images/library_hu13643606213071976482.jpg deleted file mode 100644 index 85a5d77..0000000 Binary files a/images/library_hu13643606213071976482.jpg and /dev/null differ diff --git a/images/saddles_hu5109078258479239465.jpg b/images/saddles_hu5109078258479239465.jpg deleted file mode 100644 index 1c5bfe2..0000000 Binary files a/images/saddles_hu5109078258479239465.jpg and /dev/null differ diff --git a/images/stable-diffusion-cheme-cow-08_hu3392630905686566864.jpg b/images/stable-diffusion-cheme-cow-08_hu3392630905686566864.jpg deleted file mode 100644 index d9854e5..0000000 Binary files a/images/stable-diffusion-cheme-cow-08_hu3392630905686566864.jpg and /dev/null differ diff --git a/images/venice-mailbox_hu16260505092942980349.jpg b/images/venice-mailbox_hu16260505092942980349.jpg deleted file mode 100644 index a91d768..0000000 Binary files a/images/venice-mailbox_hu16260505092942980349.jpg and /dev/null differ diff --git a/index.html b/index.html deleted file mode 100644 index 50f0e5a..0000000 --- a/index.html +++ /dev/null @@ -1,80 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/index.xml b/index.xml deleted file mode 100644 index 4c297de..0000000 --- a/index.xml +++ /dev/null @@ -1,369 +0,0 @@ - - - - Home on MillironX - http://localhost:1313/ - Recent content in Home on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination - http://localhost:1313/academia/got-warts-naab/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/got-warts-naab/ - - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Cowsay.jl - http://localhost:1313/code/cowsay.jl/ - Wed, 11 May 2022 01:32:54 +0000 - http://localhost:1313/code/cowsay.jl/ - <p>:cow2: cowsay for Julia!</p> - - - docker-names - http://localhost:1313/code/docker-names/ - Mon, 09 May 2022 09:13:08 -0500 - http://localhost:1313/code/docker-names/ - <p>A docker name generator in TypeScript.</p> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - nfdocs-parser - http://localhost:1313/code/nfdocs-parser/ - Tue, 25 Jan 2022 10:15:13 -0600 - http://localhost:1313/code/nfdocs-parser/ - <p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> - - - singularity-builds - http://localhost:1313/code/singularity-builds/ - Mon, 15 Nov 2021 12:37:15 -0600 - http://localhost:1313/code/singularity-builds/ - - - - cowsay-cows - http://localhost:1313/code/cowsay-cows/ - Tue, 12 Oct 2021 15:13:28 -0500 - http://localhost:1313/code/cowsay-cows/ - <p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - How to Build a Cow-Cud Fuel Cell - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - Wed, 01 Aug 2018 00:00:00 +0000 - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - Farm Bureau Ag Olympics Reel - http://localhost:1313/videos/ag-olympics-reel/ - Thu, 16 Feb 2017 00:00:00 +0000 - http://localhost:1313/videos/ag-olympics-reel/ - <p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - Brian Harry's blog - http://localhost:1313/blogroll/brian-harry/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/brian-harry/ - <p>Where else are you going to find a blog about cows <em>and</em> version control? The blog is basically dead now, but it&rsquo;s still fun to go back and read the farm stories.</p> - - - Car Talk - http://localhost:1313/blogroll/car-talk/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/car-talk/ - <p>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.</p> - - - Enoch the Cow Vet - http://localhost:1313/blogroll/enoch-the-cow-vet/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/enoch-the-cow-vet/ - <p>A veterinarian/agricultural channel that doesn&rsquo;t make me cringe. &ldquo;God built these things for cows for vets &hellip; [there are] so many aspects of the cow that are just designed for vets.&rdquo; Amen, Enoch. Amen.</p> - - - Login - http://localhost:1313/login/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/login/ - <p>The password is &ldquo;Open sesame!&rdquo;</p> - - - Proslogion - http://localhost:1313/blogroll/proslogion/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/proslogion/ - <p>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 &ldquo;bad sermon illustrations&rdquo; posts.</p> - - - Thru the Bible - http://localhost:1313/blogroll/thru-the-bible/ - Mon, 01 Jan 0001 00:00:00 +0000 - http://localhost:1313/blogroll/thru-the-bible/ - <p>I&rsquo;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.</p> - - - diff --git a/layouts/_default/_markup/render-blockquote.html b/layouts/_default/_markup/render-blockquote.html new file mode 100644 index 0000000..5f616ba --- /dev/null +++ b/layouts/_default/_markup/render-blockquote.html @@ -0,0 +1,22 @@ +
+
+ {{ .Text }} +
+ {{ if .Attributes.author }} +
+ {{ .Attributes.author | safeHTML }} + {{ if .Attributes.work }} + in + + {{ if .Attributes.citelink }} + + {{ .Attributes.work | safeHTML }} + + {{ else }} + {{ .Attributes.work | safeHTML }} + {{ end }} + + {{ end }} +
+ {{ end }} +
diff --git a/layouts/_default/_markup/render-link.html b/layouts/_default/_markup/render-link.html new file mode 100644 index 0000000..33e0aa5 --- /dev/null +++ b/layouts/_default/_markup/render-link.html @@ -0,0 +1,12 @@ +{{- $u := urls.Parse .Destination -}} + + {{- with .Text }}{{ . }}{{ end -}} + +{{- /* chomp trailing newline */ -}} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..18d64d8 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,102 @@ + + + + + + + {{ with .Description }} + + {{ end }} + + {{ if .Title }} + {{ block "title" . }}{{ .Title }}{{ end }} + - + {{ end }} + {{ .Site.Title }} + + {{ partial "favicon.html" . }} + {{ $twbssass := resources.Get "styles/millironx.css" }} + {{ $twbssass = + $twbssass | minify + }} + + {{ block "extraCss" . }}{{ end }} + {{ range .AlternativeOutputFormats -}} + + {{ end }} + {{ template "_internal/opengraph.html" . }} + {{ template "_internal/schema.html" . }} + {{ template "_internal/twitter_cards.html" . }} + + + {{ $millironx := resources.Get "graphics/millironx.svg" }} + + + +
+
+ + Milliron X + +

Milliron X

+
+
+ {{ partial "sidebar" . }} +
{{ block "main" . }}{{ .Content }}{{ end }}
+
+
+
+ {{ $brandedbull := resources.Get "graphics/brandedbull.svg" }} + {{ $brandedbullsmall := $brandedbull | resources.Minify }} +
+ +
+
+ + {{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }} + + + + + +
+

Important notice from the lawyers

+

+ All content on this site is designed for humans only. If you are not + human, you are in violation of the Billy Crystal Rescue Act of 1991, and + should leave this site immediately. An alternate version of this site is + available for ruminants to browse at + babble.millironx.com. +

+
+ + diff --git a/layouts/_default/category.atom.xml b/layouts/_default/category.atom.xml new file mode 100644 index 0000000..188e4cb --- /dev/null +++ b/layouts/_default/category.atom.xml @@ -0,0 +1,6 @@ +{{- printf "" | safeHTML }} + + {{ partial "frontmatter.atom.xml" . }} + {{ with .Title }}All {{ . | pluralize | lower }} on {{ end }}{{ .Site.Title }} + {{ partial "pagelist.atom.xml" . }} + diff --git a/layouts/_default/index.atom.xml b/layouts/_default/index.atom.xml new file mode 100644 index 0000000..1db6d65 --- /dev/null +++ b/layouts/_default/index.atom.xml @@ -0,0 +1,6 @@ +{{- printf "" | safeHTML }} + + {{ partial "frontmatter.atom.xml" . }} + All content on {{ .Site.Title }} + {{ partial "pagelist.atom.xml" . }} + diff --git a/layouts/_default/index.html b/layouts/_default/index.html new file mode 100644 index 0000000..4342466 --- /dev/null +++ b/layouts/_default/index.html @@ -0,0 +1,22 @@ +{{ define "extraCss" }} + {{ $scrollCss := resources.Get "styles/scrolling-header.css" | minify }} + +{{ end }} + +{{ define "main" }} + {{ partial "scrolling-image-header" . }} +
+
+ {{ block "content" . }} + {{ .Content }} + {{ end }} +
+ +

Recent activity

+ {{ partial "rss-subscribe-link.html" . }} + {{ $pageinator := .Paginate .Site.RegularPages }} + {{ range $pageinator.Pages }} + {{ partial "itemcard.html" . }} + {{ end }} +
+{{ end }} diff --git a/layouts/_default/index.manifest.json b/layouts/_default/index.manifest.json new file mode 100644 index 0000000..f105f26 --- /dev/null +++ b/layouts/_default/index.manifest.json @@ -0,0 +1,29 @@ +{ + "name": "{{ .Site.Title }}", + "short_name": "{{ .Site.Title }}", + "icons": [ + {{ $pngIcon := resources.Get "graphics/millironx-icon.png" }} + {{ $sizes := slice 192 512 }} + {{ range $size := $sizes }} + {{ $resized := $pngIcon.Resize (printf "%dx%d" $size $size) }} + {{ $icon := $resized.Content | resources.FromString (printf "android-chrome-%dx%d.png" $size $size) }} + { + "src": "{{ $icon.Permalink }}", + "type": "image/png", + "sizes": "{{ $size }}x{{ $size }}" + }, + {{ end }} + {{ $maskIconResized := $pngIcon.Resize "512x512" }} + {{ $maskIcon := $maskIconResized.Content | resources.FromString "android-chrome-mask.png" }} + { + "src": "{{ $maskIcon.Permalink }}", + "type": "image/png", + "sizes": "512x512", + "purpose": "maskable" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#6a1911", + "background_color": "#ffffff" +} diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..c6c4217 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,34 @@ +{{ define "title" }} + {{- with .Data.Singular -}} + {{- . | humanize -}}: + {{ end }} + {{ .Title }} +{{ end }} + +{{ define "extraCss" }} + {{ $scrollCss := resources.Get "styles/scrolling-header.css" | minify }} + +{{ end }} + +{{ define "main" }} + {{ partial "scrolling-image-header" . }} +
+ {{ $pageinator := .Paginate .Pages }} + + {{ if not ($pageinator.HasPrev) }} +
+ {{ block "content" . }} + {{ .Content }} + {{ end }} +
+ {{ end }} + + {{ partial "rss-subscribe-link.html" . }} + + {{ range $pageinator.Pages }} + {{ partial "itemcard.html" . }} + {{ end }} + + {{ template "_internal/pagination.html" . }} +
+{{ end }} diff --git a/layouts/_default/section.atom.xml b/layouts/_default/section.atom.xml new file mode 100644 index 0000000..14e86d9 --- /dev/null +++ b/layouts/_default/section.atom.xml @@ -0,0 +1,6 @@ +{{- printf "" | safeHTML }} + + {{ partial "frontmatter.atom.xml" . }} + {{ with .Title }}{{ . }} on {{ end }}{{ .Site.Title }} + {{ partial "pagelist.atom.xml" . }} + diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..e0e8308 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,3 @@ +{{ define "main" }} + {{ .Content }} +{{ end }} diff --git a/layouts/_default/sitemap.xml b/layouts/_default/sitemap.xml new file mode 100644 index 0000000..8716a46 --- /dev/null +++ b/layouts/_default/sitemap.xml @@ -0,0 +1,27 @@ +{{ printf "" | safeHTML }} + + {{ range .Pages }} + {{- if or (not .Params.link) (findRE `^/` .Params.link 1) -}} + + + {{- with .Params.link -}} + {{- replace (print $.Site.BaseURL .) "//" "/" -}} + {{- else -}} + {{- .Permalink -}} + {{- end -}} + + {{ if not .Lastmod.IsZero }} + {{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }} + {{ end }} + {{ with .Sitemap.ChangeFreq }} + {{ . }} + {{ end }} + + {{ end }} + {{ end }} + diff --git a/layouts/academia/single.html b/layouts/academia/single.html new file mode 100644 index 0000000..66ffa1a --- /dev/null +++ b/layouts/academia/single.html @@ -0,0 +1,52 @@ +{{ define "main" }} +
+
+ {{ .Params.journal }}{{ with .Params.location }}: {{ . }}{{ end }} +
+

{{ .Title }}

+

+ + {{ range (.GetTerms "people") }} + {{- partial "fa.html" "user" }} + {{ .LinkTitle }} + {{ end }} + +

+

+ {{ with .Date }} + + {{ end }} +  ˙  + {{ range (.GetTerms "tags") }} + {{- partial "fa.html" "tag" }} + {{ .LinkTitle | lower }} + {{ end }} +  ˙  + {{ partial "fa.html" "link" }} Permalink +

+
+ {{ .Content }} + {{ with .Params.link }} + {{ . }} + + {{ end }} +
+
+{{ end }} diff --git a/layouts/partials/account.html b/layouts/partials/account.html new file mode 100644 index 0000000..bd6514a --- /dev/null +++ b/layouts/partials/account.html @@ -0,0 +1,48 @@ +{{ $icons := dict + "chocolatey" "candy-bar" + "codeberg" "codeberg" + "ebay" "ebay" + "google-scholar" "google-scholar" + "github" "github" + "gitlab" "gitlab" + "hacker-news" "hacker-news" + "internet-archive" "university" + "matrix" "matrix" + "orcid" "orcid" + "quay" "circle-quarters" + "spotify" "spotify" + "steam" "steam" + "vimeo" "vimeo" + "zotero" "zotero" +}} + +{{ $urlBases := dict + "chocolatey" "https://community.chocolatey.org/profiles/" + "codeberg" "https://codeberg.org/" + "ebay" "https://www.ebay.com/usr/" + "google-scholar" "https://scholar.google.com/citations?user=" + "github" "https://github.com/" + "gitlab" "https://gitlab.com/" + "hacker-news" "https://news.ycombinator.com/user?id=" + "internet-archive" "https://archive.org/details/@" + "matrix" "https://matrix.to/#/" + "orcid" "https://orcid.org/" + "quay" "https://quay.io/user/" + "spotify" "https://open.spotify.com/user/" + "steam" "https://steamcommunity.com/id/" + "vimeo" "https://vimeo.com/" + "zotero" "https://www.zotero.org/" +}} + +{{ $icon := index $icons .account }} +{{ $urlBase := index $urlBases .account }} + +{{ $userURL := print $urlBase .username }} + + +{{ partial "fa.html" $icon }} diff --git a/layouts/partials/category-button.html b/layouts/partials/category-button.html new file mode 100644 index 0000000..95032e8 --- /dev/null +++ b/layouts/partials/category-button.html @@ -0,0 +1,23 @@ +{{ range first 1 (.Param "categories") }} + {{ $category := . }} + {{ with $.Site.GetPage (printf "/%s/%s" "categories" .) }} + {{ $iconDictionary := dict + "video" "video" + "paper" "book" + "poster" "presentation" + "thesis" "graduation-cap" + "presentation" "podium" + "web" "globe" + "blog" "block-quote" + "code" "code" + }} + {{ $categoryIcon := index $iconDictionary $category }} + + {{- partial "fa.html" $categoryIcon -}} + + {{ end }} +{{ end }} diff --git a/layouts/partials/fa.html b/layouts/partials/fa.html new file mode 100644 index 0000000..540a166 --- /dev/null +++ b/layouts/partials/fa.html @@ -0,0 +1,4 @@ +{{- $fontAwesomePath := print "assets/graphics/fa/" . ".svg" -}} + + {{- readFile $fontAwesomePath | safeHTML -}} + diff --git a/layouts/partials/favicon.html b/layouts/partials/favicon.html new file mode 100644 index 0000000..a8baf3d --- /dev/null +++ b/layouts/partials/favicon.html @@ -0,0 +1,8 @@ + +{{ $svgIcon := resources.Get "graphics/millironx-icon.svg" }} + +{{ $pngIcon := resources.Get "graphics/millironx-icon.png" }} +{{ $appleSizedIcon := $pngIcon.Resize "180x180" }} +{{ $appleTouchIcon := $appleSizedIcon.Content | resources.FromString "apple-touch-icon.png" }} + + diff --git a/layouts/partials/form-validation.html b/layouts/partials/form-validation.html new file mode 100644 index 0000000..0c84f23 --- /dev/null +++ b/layouts/partials/form-validation.html @@ -0,0 +1,3 @@ + +{{ $maskjs := resources.Get "scripts/phone-masking.js" | minify }} + diff --git a/layouts/partials/frontmatter.atom.xml b/layouts/partials/frontmatter.atom.xml new file mode 100644 index 0000000..9f94518 --- /dev/null +++ b/layouts/partials/frontmatter.atom.xml @@ -0,0 +1,12 @@ + {{- $atomDateFormat := "2006-01-02T15:04:05-07:00" }} + {{- with .Site.Hugo.Version }} + Hugo v{{ . }} + {{- end }} + {{ .Permalink }} + {{- with .OutputFormats.Get "atom" }} + + {{- end }} + {{- range .AlternativeOutputFormats }} + + {{- end }} + {{ now.Format $atomDateFormat }} diff --git a/layouts/partials/itemcard.html b/layouts/partials/itemcard.html new file mode 100644 index 0000000..59700d1 --- /dev/null +++ b/layouts/partials/itemcard.html @@ -0,0 +1,92 @@ +
+ {{ with .Param "fa-thumbnail" }} +
+
+ + {{- partial "fa.html" . -}} + +
+
+ {{ end }} + + {{/* Thumbnail images should be stored as 'thumbnail'.* in the page bundle, but + historically they might have been referenced as 'thumbnail' in the front + matter, or (even more historically) as 'cardImage'. Use scratch to + normalize all these different systems. + */}} + {{ $bundleGlob := "thumbnail.*" }} + {{ $frontThumbGlob := print "images/" (.Params.thumbnail) ".*" }} + {{ $frontCardGlob := print "images/" (.Params.cardImage) ".jpg" }} + {{ $allThumbnailGlob := print "{" $frontThumbGlob "," $frontCardGlob "," $bundleGlob "}" }} + {{ with .Resources.GetMatch $allThumbnailGlob }} + {{ $thumbnail := . }} + {{ $thumbnailResized := $thumbnail.Resize "600x" }} + + +
+ Thumbnail of {{ .Title }} +
+ {{ end }} + + +
+
+ {{/* Prefer full-text links over local ones */}} +
+ {{ $link := default .Permalink (index .Params "link") }} +

{{ .Title }}

+ + {{ with .Date }} + + {{ end }} +
+ + {{ partial "category-button" . }} + +
+ +
+ {{ range (.GetTerms "people") }} + + {{ end }} + + +

+ {{ .Content | strings.Truncate 500 }} + Read more » +

+ + +
+
+
+ diff --git a/layouts/partials/pagelist.atom.xml b/layouts/partials/pagelist.atom.xml new file mode 100644 index 0000000..54a9ec4 --- /dev/null +++ b/layouts/partials/pagelist.atom.xml @@ -0,0 +1,49 @@ +{{- $atomDateFormat := "2006-01-02T15:04:05-07:00" }} +{{- $pctx := . }} +{{- if .IsHome }}{{ $pctx = .Site }}{{ end }} +{{- $pages := slice }} +{{- if or $.IsHome $.IsSection }} +{{- $pages = $pctx.RegularPages }} +{{- else }} +{{- $pages = $pctx.Pages }} +{{- end }} +{{- $limit := .Site.Config.Services.RSS.Limit }} +{{- if ge $limit 1 }} +{{- $pages = $pages | first $limit }} +{{- end }} + +{{- range $pages }} +{{/* If a page doesn't have a date, then it's a meta page and should be excluded */}} +{{- if .Date }} + + {{ .Permalink }} + {{- $link := default .Permalink (index .Params "link") }} + + {{ .Title }} + {{ .Date.Format $atomDateFormat }} + {{ .Lastmod.Format $atomDateFormat }} + {{- range (.GetTerms "people") }} + + {{ .LinkTitle }} + {{ .Permalink }} + + {{- end }} + {{- range (.GetTerms "categories") }} + + {{- end }} + {{- range (.GetTerms "tags") }} + + {{- end }} + {{- with .Summary }} + + {{ . | plainify | htmlUnescape }} + + {{- end }} + {{- with .Content }} + + {{ . | transform.XMLEscape | safeHTML }} + + {{- end }} + +{{- end }} +{{- end }} diff --git a/layouts/partials/rss-subscribe-link.html b/layouts/partials/rss-subscribe-link.html new file mode 100644 index 0000000..ce70769 --- /dev/null +++ b/layouts/partials/rss-subscribe-link.html @@ -0,0 +1,12 @@ +{{ if not .Params.suppressRss }} + {{ range .AlternativeOutputFormats -}} + + {{ partial "fa.html" "rss" }} + Subscribe + + {{ end }} +{{ end }} diff --git a/layouts/partials/scrolling-image-header.html b/layouts/partials/scrolling-image-header.html new file mode 100644 index 0000000..60d5187 --- /dev/null +++ b/layouts/partials/scrolling-image-header.html @@ -0,0 +1,46 @@ +{{ $thumbnailImage := .Resources.GetMatch "*thumbnail*" }} +{{ with $thumbnailImage }} + {{ $croppedImage := $thumbnailImage.Fill "1500x500 center" }} + +{{ else }} + {{ with .Param "images" }} + {{ $firstImage := first 1 . }} + {{ range $firstImage }} + {{ $imageSource := print "images/" . }} + {{ $imageResource := resources.Get $imageSource }} + {{ with $imageResource }} + {{ $croppedImage := $imageResource.Fill "1500x500 center" }} + + {{ end }} + {{ end }} + {{ end }} +{{ end }} + + +
+
+
+

+ {{ with .Params.motto }} + {{ safeHTML . }} + {{ else with .Data.Singular }} + {{- . | humanize -}}: + {{ $.Title }} + {{ else }} + {{ .Title }} + {{ end }} +

+
+
+
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html new file mode 100644 index 0000000..307741d --- /dev/null +++ b/layouts/partials/sidebar.html @@ -0,0 +1,19 @@ +{{ $millironx := resources.Get "graphics/millironx.svg" }} +{{ $currentPage := . }} + diff --git a/layouts/people/term.atom.xml b/layouts/people/term.atom.xml new file mode 100644 index 0000000..70363c3 --- /dev/null +++ b/layouts/people/term.atom.xml @@ -0,0 +1,6 @@ +{{- printf "" | safeHTML }} + + {{ partial "frontmatter.atom.xml" . }} + {{ with .Title }}{{ . }}'s activity on {{ end }}{{ .Site.Title }} + {{ partial "pagelist.atom.xml" . }} + diff --git a/layouts/people/term.html b/layouts/people/term.html new file mode 100644 index 0000000..6d3bf99 --- /dev/null +++ b/layouts/people/term.html @@ -0,0 +1,109 @@ +{{ define "title" }} + About + {{ .Title }} +{{ end }} + +{{ define "main" }} + {{ $pageinator := .Paginate .Pages }} +
+
+
+ {{ with .Resources.GetMatch "thumbnail.*" }} + {{ $thumbnail := . }} + {{ $thumbnailResized := $thumbnail.Fill "600x600" }} + Photo of {{ $.Title }} + {{ end }} + + +

+ {{ .Title }} +

+ {{ with .Params.homepage }} + {{ partial "fa.html" "link" }} + + {{ . }} + + {{ end }} +
+
+ +
+ {{ if not ($pageinator.HasPrev) }} + + {{ with .Content }} +

Bio

+
+ {{ . }} +
+ {{ end }} + + {{ with .Params.accounts }} + + {{ end }} + + {{ with .Params.gpg_key }} + + {{ end }} + + {{ with .Params.crypto }} + + {{ end }} + + {{ end }} + + +

Latest Activity

+ + {{ partial "rss-subscribe-link.html" . }} + {{ range $pageinator.Pages }} + {{ partial "itemcard.html" . }} + {{ end }} + {{ template "_internal/pagination.html" . }} + +
+
+{{ end }} diff --git a/layouts/posts/single.html b/layouts/posts/single.html new file mode 100644 index 0000000..49151c4 --- /dev/null +++ b/layouts/posts/single.html @@ -0,0 +1,6 @@ +{{ define "main" }} +
+

{{ .Title }}

+ {{ .Content }} +
+{{ end }} diff --git a/layouts/shortcodes/abbr.html b/layouts/shortcodes/abbr.html new file mode 100644 index 0000000..1523598 --- /dev/null +++ b/layouts/shortcodes/abbr.html @@ -0,0 +1,3 @@ + + {{ .Inner | markdownify }} + diff --git a/layouts/shortcodes/blockquote.html b/layouts/shortcodes/blockquote.html new file mode 100644 index 0000000..d88d225 --- /dev/null +++ b/layouts/shortcodes/blockquote.html @@ -0,0 +1,9 @@ +
+ {{ .Inner | markdownify }} + {{ with .Get 0 }} +
+ + {{ . | markdownify }} + + {{ end }} +
diff --git a/layouts/shortcodes/character-dialog.html b/layouts/shortcodes/character-dialog.html new file mode 100644 index 0000000..bb1b9b0 --- /dev/null +++ b/layouts/shortcodes/character-dialog.html @@ -0,0 +1,24 @@ +{{ $character := .Get 0 }} +{{ $position := .Get 1 }} +{{ $emotion := .Get 2 }} + +{{ $resourceName := print "characters/" $character "/" $position "-" $emotion ".png" }} +{{ $characterImageResource := resources.Get $resourceName }} + +{{ $resizedCharacterImage := $characterImageResource.Resize "x100" }} + + +
+
+ thumbnail of {{ $character }} in {{ $emotion }} state +
+
+
+ {{ $character | humanize }} +
+
{{ .Inner | markdownify }}
+
+
diff --git a/layouts/shortcodes/dfn.html b/layouts/shortcodes/dfn.html new file mode 100644 index 0000000..8ed0ad6 --- /dev/null +++ b/layouts/shortcodes/dfn.html @@ -0,0 +1 @@ +{{ .Inner }} diff --git a/layouts/shortcodes/fa.html b/layouts/shortcodes/fa.html new file mode 100644 index 0000000..454b184 --- /dev/null +++ b/layouts/shortcodes/fa.html @@ -0,0 +1,2 @@ +{{- $faName := .Get 0 -}} +{{- partial "fa.html" $faName -}} diff --git a/layouts/shortcodes/imgproc.html b/layouts/shortcodes/imgproc.html new file mode 100644 index 0000000..c097a73 --- /dev/null +++ b/layouts/shortcodes/imgproc.html @@ -0,0 +1,31 @@ +{{ $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 }} +
+ + {{ with .Inner }} +
+ + {{ . | markdownify }} + +
+ {{ end }} +
diff --git a/layouts/shortcodes/sub.html b/layouts/shortcodes/sub.html new file mode 100644 index 0000000..98635bf --- /dev/null +++ b/layouts/shortcodes/sub.html @@ -0,0 +1 @@ +{{ .Get 0 }} diff --git a/layouts/shortcodes/sup.html b/layouts/shortcodes/sup.html new file mode 100644 index 0000000..e58e232 --- /dev/null +++ b/layouts/shortcodes/sup.html @@ -0,0 +1 @@ +{{ .Get 0 }} diff --git a/layouts/tags/term.atom.xml b/layouts/tags/term.atom.xml new file mode 100644 index 0000000..9c738bd --- /dev/null +++ b/layouts/tags/term.atom.xml @@ -0,0 +1,6 @@ +{{- printf "" | safeHTML }} + + {{ partial "frontmatter.atom.xml" . }} + {{ with .Title }}All content tagged "{{ . | lower }}" on {{ end }}{{ .Site.Title }} + {{ partial "pagelist.atom.xml" . }} + diff --git a/login/index.html b/login/index.html deleted file mode 100644 index 075c8f1..0000000 --- a/login/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Login -- -Milliron X -
-Milliron X

Milliron X

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/manifest.json b/manifest.json deleted file mode 100644 index b901263..0000000 --- a/manifest.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Milliron X","short_name":"Milliron X","icons":[{"src":"https://millironx.millironx.page/@indiewebpub/android-chrome-192x192.png","type":"image/png","sizes":"192x192"},{"src":"https://millironx.millironx.page/@indiewebpub/android-chrome-512x512.png","type":"image/png","sizes":"512x512"},{"src":"https://millironx.millironx.page/@indiewebpub/android-chrome-mask.png","type":"image/png","sizes":"512x512","purpose":"maskable"}],"start_url":".","display":"standalone","theme_color":"#6a1911","background_color":"#ffffff"} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..6ffef19 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1272 @@ +{ + "name": "millironx.github.io", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "millironx.github.io", + "version": "0.0.0", + "license": "MIT", + "devDependencies": { + "husky": "^8.0.1", + "lint-staged": "^13.0.3", + "prettier": "^2.7.1", + "prettier-plugin-go-template": "^0.0.13", + "prettier-plugin-toml": "^0.3.1" + } + }, + "node_modules/@toml-tools/lexer": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@toml-tools/lexer/-/lexer-0.3.5.tgz", + "integrity": "sha512-549zoTUhz4WvSNX0U+G5M+SqCPBVaLyKvE3Rfi43ww6LyJt98cwZR9kMBjkcMS28/cyLgIiShBbS12mqeo4Vsw==", + "dev": true, + "dependencies": { + "chevrotain": "^4.1.1" + } + }, + "node_modules/@toml-tools/parser": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@toml-tools/parser/-/parser-0.3.5.tgz", + "integrity": "sha512-ba1GnL5zc+X/nxkzrq+AvdxQv/0lqoI9PM2s6CZFGiKl/ftP49VhojoA/SSdC7FexYczeq/O81jyJk0+oHa+NQ==", + "dev": true, + "dependencies": { + "@toml-tools/lexer": "^0.3.5", + "chevrotain": "^4.1.1" + } + }, + "node_modules/ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "dev": true, + "dependencies": { + "type-fest": "^1.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chevrotain": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-4.8.1.tgz", + "integrity": "sha512-Dd2oHFdscdm8MSmG0ejTXdMlqKR5ryeKuwLpsf1ZOs3l8HD/jPfIY0MYs9Eh4X3gm9h0CR155zpVYFK+uAI3tA==", + "dev": true, + "dependencies": { + "regexp-to-ast": "0.4.0" + } + }, + "node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "dependencies": { + "restore-cursor": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lint-staged": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz", + "integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==", + "dev": true, + "dependencies": { + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", + "lilconfig": "2.1.0", + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/listr2": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "dev": true, + "dependencies": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", + "rfdc": "^1.3.0", + "wrap-ansi": "^8.1.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "dev": true, + "dependencies": { + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-go-template": { + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/prettier-plugin-go-template/-/prettier-plugin-go-template-0.0.13.tgz", + "integrity": "sha512-gG/xT5kd+kCzoMaTchXvdfBdsunyRCV6G8cgdPGPd2V5JGGKXUG7SjzBKU7jaGh2RTeblcAdBb/E+S/duOAMsA==", + "dev": true, + "dependencies": { + "ulid": "^2.3.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "prettier": "^2.0.0" + } + }, + "node_modules/prettier-plugin-toml": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-0.3.5.tgz", + "integrity": "sha512-yP8dTVjFn1m1RfMAQ2jSjxi41+prv7YSeCwD5k7BCazFDYl+bj1vrEJm8OJTrDa/U20pQsXjYLoVYlHEqEja3Q==", + "dev": true, + "dependencies": { + "@toml-tools/lexer": "^0.3.5", + "@toml-tools/parser": "^0.3.5", + "prettier": "^1.16.0 || ^2.0.0" + } + }, + "node_modules/regexp-to-ast": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.4.0.tgz", + "integrity": "sha512-4qf/7IsIKfSNHQXSwial1IFmfM1Cc/whNBQqRwe0V2stPe7KmN1U0tWQiIx6JiirgSrisjE0eECdNf7Tav1Ntw==", + "dev": true + }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ulid": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/ulid/-/ulid-2.3.0.tgz", + "integrity": "sha512-keqHubrlpvT6G2wH0OEfSW4mquYRcbe/J8NMmveoQOjUqmo+hXtO+ORCpWhdbZ7k72UtY61BL7haGxW6enBnjw==", + "dev": true, + "bin": { + "ulid": "bin/cli.js" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + } + }, + "dependencies": { + "@toml-tools/lexer": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@toml-tools/lexer/-/lexer-0.3.5.tgz", + "integrity": "sha512-549zoTUhz4WvSNX0U+G5M+SqCPBVaLyKvE3Rfi43ww6LyJt98cwZR9kMBjkcMS28/cyLgIiShBbS12mqeo4Vsw==", + "dev": true, + "requires": { + "chevrotain": "^4.1.1" + } + }, + "@toml-tools/parser": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@toml-tools/parser/-/parser-0.3.5.tgz", + "integrity": "sha512-ba1GnL5zc+X/nxkzrq+AvdxQv/0lqoI9PM2s6CZFGiKl/ftP49VhojoA/SSdC7FexYczeq/O81jyJk0+oHa+NQ==", + "dev": true, + "requires": { + "@toml-tools/lexer": "^0.3.5", + "chevrotain": "^4.1.1" + } + }, + "ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "dev": true, + "requires": { + "type-fest": "^1.0.2" + } + }, + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "chevrotain": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-4.8.1.tgz", + "integrity": "sha512-Dd2oHFdscdm8MSmG0ejTXdMlqKR5ryeKuwLpsf1ZOs3l8HD/jPfIY0MYs9Eh4X3gm9h0CR155zpVYFK+uAI3tA==", + "dev": true, + "requires": { + "regexp-to-ast": "0.4.0" + } + }, + "cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "requires": { + "restore-cursor": "^4.0.0" + } + }, + "cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "requires": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + } + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true + }, + "husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, + "lint-staged": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz", + "integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==", + "dev": true, + "requires": { + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", + "lilconfig": "2.1.0", + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" + } + }, + "listr2": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "dev": true, + "requires": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", + "rfdc": "^1.3.0", + "wrap-ansi": "^8.1.0" + } + }, + "log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "dev": true, + "requires": { + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "requires": { + "path-key": "^4.0.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true + } + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true + }, + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + }, + "prettier-plugin-go-template": { + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/prettier-plugin-go-template/-/prettier-plugin-go-template-0.0.13.tgz", + "integrity": "sha512-gG/xT5kd+kCzoMaTchXvdfBdsunyRCV6G8cgdPGPd2V5JGGKXUG7SjzBKU7jaGh2RTeblcAdBb/E+S/duOAMsA==", + "dev": true, + "requires": { + "ulid": "^2.3.0" + } + }, + "prettier-plugin-toml": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-0.3.5.tgz", + "integrity": "sha512-yP8dTVjFn1m1RfMAQ2jSjxi41+prv7YSeCwD5k7BCazFDYl+bj1vrEJm8OJTrDa/U20pQsXjYLoVYlHEqEja3Q==", + "dev": true, + "requires": { + "@toml-tools/lexer": "^0.3.5", + "@toml-tools/parser": "^0.3.5", + "prettier": "^1.16.0 || ^2.0.0" + } + }, + "regexp-to-ast": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.4.0.tgz", + "integrity": "sha512-4qf/7IsIKfSNHQXSwial1IFmfM1Cc/whNBQqRwe0V2stPe7KmN1U0tWQiIx6JiirgSrisjE0eECdNf7Tav1Ntw==", + "dev": true + }, + "restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + } + } + }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + } + }, + "string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true + }, + "ulid": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/ulid/-/ulid-2.3.0.tgz", + "integrity": "sha512-keqHubrlpvT6G2wH0OEfSW4mquYRcbe/J8NMmveoQOjUqmo+hXtO+ORCpWhdbZ7k72UtY61BL7haGxW6enBnjw==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2145ab4 --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "millironx.github.io", + "version": "0.0.0", + "description": "My personal website", + "repository": { + "type": "git", + "url": "git+https://github.com/MillironX/millironx.github.io.git" + }, + "author": "Thomas A. Christensen II", + "license": "MIT", + "bugs": { + "url": "https://github.com/MillironX/millironx.github.io/issues" + }, + "homepage": "https://github.com/MillironX/millironx.github.io#readme", + "devDependencies": { + "husky": "^8.0.1", + "lint-staged": "^13.0.3", + "prettier": "^2.7.1", + "prettier-plugin-go-template": "^0.0.13", + "prettier-plugin-toml": "^0.3.1" + }, + "lint-staged": { + "*.{js,css,scss,md,toml,yml,yaml,json,html}": "prettier --write" + }, + "scripts": { + "prepare": "husky install" + } +} diff --git a/page/1/index.html b/page/1/index.html deleted file mode 100644 index e2698d2..0000000 --- a/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/ - \ No newline at end of file diff --git a/page/10/index.html b/page/10/index.html deleted file mode 100644 index 33bc440..0000000 --- a/page/10/index.html +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - - - - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - -
-
-
-

- - My name is Thomas Christensen
I am Milliron X - -

-
-
-
- -
-
- -

What is a “Milliron X”?

-

It’s a cattle brand, of -course! My cattle brand!

-

The milliron - is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

-

X - 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.

-

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

- - -
- -

Recent activity

- - - - - Subscribe - - - - - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.png -
- - - -
-
- -
- -

Brian Harry's blog

- - -
- - - - -
- -
- - - -

-

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.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.webp -
- - - -
-
- -
- -

Car Talk

- - -
- - - - -
- -
- - - -

-

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.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpg -
- - - -
-
- -
- -

Enoch the Cow Vet

- - -
- - - - -
- -
- - - -

-

A veterinarian/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.

- - Read more » -

- - -
-
-
- - - -
- -
-
- - -
-
- - - - - - - - - - -
-
- -
- -

Login

- - -
- - - - -
- -
- - - -

-

The password is “Open sesame!”

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpg -
- - - -
-
- -
- -

Proslogion

- - -
- - - - -
- -
- - - -

-

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.

- - Read more » -

- - -
-
-
- - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/page/11/index.html b/page/11/index.html deleted file mode 100644 index 01c57b4..0000000 --- a/page/11/index.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - -
-
-
-

- - My name is Thomas Christensen
I am Milliron X - -

-
-
-
- -
-
- -

What is a “Milliron X”?

-

It’s a cattle brand, of -course! My cattle brand!

-

The milliron - is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

-

X - 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.

-

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

- - -
- -

Recent activity

- - - - - Subscribe - - - - - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.webp -
- - - -
-
- -
- -

Thru the Bible

- - -
- - - - -
- -
- - - -

-

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.

- - Read more » -

- - -
-
-
- - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/page/2/index.html b/page/2/index.html deleted file mode 100644 index 9bf597f..0000000 --- a/page/2/index.html +++ /dev/null @@ -1,90 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

- - - - -

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 …

Read more »

Cowsay.jl

11 May 2022

docker-names

09 May 2022

A docker name generator in TypeScript.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/3/index.html b/page/3/index.html deleted file mode 100644 index 6edf49b..0000000 --- a/page/3/index.html +++ /dev/null @@ -1,67 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
- - - - - -

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 …

Read more »

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

nfdocs-parser

25 Jan 2022

A Sphinx plugin for converting Nextflow docstrings into documentation

Read more »

cowsay-cows

12 Oct 2021

cowfiles in the original spirit of cowsay, except that all of these are actually bovine

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/4/index.html b/page/4/index.html deleted file mode 100644 index 4c78560..0000000 --- a/page/4/index.html +++ /dev/null @@ -1,122 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

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 …

Read more »

Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/5/index.html b/page/5/index.html deleted file mode 100644 index 78ffb85..0000000 --- a/page/5/index.html +++ /dev/null @@ -1,65 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
- -

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 …

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/6/index.html b/page/6/index.html deleted file mode 100644 index 8c87a39..0000000 --- a/page/6/index.html +++ /dev/null @@ -1,71 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/7/index.html b/page/7/index.html deleted file mode 100644 index d76c381..0000000 --- a/page/7/index.html +++ /dev/null @@ -1,68 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/8/index.html b/page/8/index.html deleted file mode 100644 index ad75e5b..0000000 --- a/page/8/index.html +++ /dev/null @@ -1,74 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

Thumbnail of thumbnail.png

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.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/page/9/index.html b/page/9/index.html deleted file mode 100644 index 99d9d7f..0000000 --- a/page/9/index.html +++ /dev/null @@ -1,40 +0,0 @@ -Milliron X -
-Milliron X

Milliron X

My name is Thomas Christensen
I am Milliron X

What is a “Milliron X”?

It’s a cattle brand, of -course! My cattle brand!

The milliron -is the bar with a bend in the middle. It -does not represent anything physical or textual per se, 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.

X -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.

Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige.

Recent activity

-Subscribe
Thumbnail of thumbnail.webp

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.

Read more »

Thumbnail of thumbnail.jpg

A veterinarian/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.

Read more »

The password is “Open sesame!”

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.webp

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.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/amanda-christensen/feed.xml b/people/amanda-christensen/feed.xml deleted file mode 100644 index b8f9813..0000000 --- a/people/amanda-christensen/feed.xml +++ /dev/null @@ -1,99 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/amanda-christensen/2025-03-31T00:14:19+00:00Amanda Christensen's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/amanda-christensen/index.html b/people/amanda-christensen/index.html deleted file mode 100644 index 54cd0f9..0000000 --- a/people/amanda-christensen/index.html +++ /dev/null @@ -1,61 +0,0 @@ -About -Amanda Christensen -- -Milliron X -
-Milliron X

Milliron X

Amanda Christensen

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/amanda-christensen/index.xml b/people/amanda-christensen/index.xml deleted file mode 100644 index 02769fd..0000000 --- a/people/amanda-christensen/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Amanda Christensen on MillironX - http://localhost:1313/people/amanda-christensen/ - Recent content in Amanda Christensen on MillironX - Hugo - en-us - Tue, 15 Dec 2015 11:20:23 +0000 - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/amanda-christensen/page/1/index.html b/people/amanda-christensen/page/1/index.html deleted file mode 100644 index 216d472..0000000 --- a/people/amanda-christensen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ - \ No newline at end of file diff --git a/people/andrea-lu/feed.xml b/people/andrea-lu/feed.xml deleted file mode 100644 index 50e88fb..0000000 --- a/people/andrea-lu/feed.xml +++ /dev/null @@ -1,59 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/andrea-lu/2025-03-31T00:14:19+00:00Andrea Lu's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/andrea-lu/index.html b/people/andrea-lu/index.html deleted file mode 100644 index fea8cb2..0000000 --- a/people/andrea-lu/index.html +++ /dev/null @@ -1,75 +0,0 @@ -About -Andrea Lu -- -Milliron X -
-Milliron X

Milliron X

Andrea Lu

Latest Activity

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/andrea-lu/index.xml b/people/andrea-lu/index.xml deleted file mode 100644 index c97e146..0000000 --- a/people/andrea-lu/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Andrea Lu on MillironX - http://localhost:1313/people/andrea-lu/ - Recent content in Andrea Lu on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/andrea-lu/page/1/index.html b/people/andrea-lu/page/1/index.html deleted file mode 100644 index 5ad102d..0000000 --- a/people/andrea-lu/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/andrea-lu/ - \ No newline at end of file diff --git a/people/bob-gentry/feed.xml b/people/bob-gentry/feed.xml deleted file mode 100644 index 7056ded..0000000 --- a/people/bob-gentry/feed.xml +++ /dev/null @@ -1,30 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/bob-gentry/2025-03-31T00:14:19+00:00Bob Gentry's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ \ No newline at end of file diff --git a/people/bob-gentry/index.html b/people/bob-gentry/index.html deleted file mode 100644 index b2dfc30..0000000 --- a/people/bob-gentry/index.html +++ /dev/null @@ -1,39 +0,0 @@ -About -Bob Gentry -- -Milliron X -
-Milliron X

Milliron X

Bob Gentry

Latest Activity

-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/bob-gentry/index.xml b/people/bob-gentry/index.xml deleted file mode 100644 index d1af724..0000000 --- a/people/bob-gentry/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Bob Gentry on MillironX - http://localhost:1313/people/bob-gentry/ - Recent content in Bob Gentry on MillironX - Hugo - en-us - Thu, 19 Sep 2024 00:00:00 +0000 - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination - http://localhost:1313/academia/got-warts-naab/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/got-warts-naab/ - - - - diff --git a/people/bob-gentry/page/1/index.html b/people/bob-gentry/page/1/index.html deleted file mode 100644 index f00c019..0000000 --- a/people/bob-gentry/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/bob-gentry/ - \ No newline at end of file diff --git a/people/carson-j.-silsby/feed.xml b/people/carson-j.-silsby/feed.xml deleted file mode 100644 index 416dbf8..0000000 --- a/people/carson-j.-silsby/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/2025-03-31T00:14:19+00:00Carson J. Silsby's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/people/carson-j.-silsby/index.html b/people/carson-j.-silsby/index.html deleted file mode 100644 index 1a341d8..0000000 --- a/people/carson-j.-silsby/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Carson J. Silsby -- -Milliron X -
-Milliron X

Milliron X

Carson J. Silsby

Latest Activity

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/carson-j.-silsby/index.xml b/people/carson-j.-silsby/index.xml deleted file mode 100644 index c98953b..0000000 --- a/people/carson-j.-silsby/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Carson J. Silsby on MillironX - http://localhost:1313/people/carson-j.-silsby/ - Recent content in Carson J. Silsby on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/people/carson-j.-silsby/page/1/index.html b/people/carson-j.-silsby/page/1/index.html deleted file mode 100644 index 8d8e6e8..0000000 --- a/people/carson-j.-silsby/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/ - \ No newline at end of file diff --git a/people/cecilia-hewlett/feed.xml b/people/cecilia-hewlett/feed.xml deleted file mode 100644 index 5c0b0b4..0000000 --- a/people/cecilia-hewlett/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/2025-03-31T00:14:19+00:00Cecilia Hewlett's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/cecilia-hewlett/index.html b/people/cecilia-hewlett/index.html deleted file mode 100644 index 9eb7018..0000000 --- a/people/cecilia-hewlett/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Cecilia Hewlett -- -Milliron X -
-Milliron X

Milliron X

Cecilia Hewlett

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/cecilia-hewlett/index.xml b/people/cecilia-hewlett/index.xml deleted file mode 100644 index 1ce2172..0000000 --- a/people/cecilia-hewlett/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Cecilia Hewlett on MillironX - http://localhost:1313/people/cecilia-hewlett/ - Recent content in Cecilia Hewlett on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/cecilia-hewlett/page/1/index.html b/people/cecilia-hewlett/page/1/index.html deleted file mode 100644 index bd3c927..0000000 --- a/people/cecilia-hewlett/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/ - \ No newline at end of file diff --git a/people/christiana-hewlett/feed.xml b/people/christiana-hewlett/feed.xml deleted file mode 100644 index 011f8b1..0000000 --- a/people/christiana-hewlett/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/2025-03-31T00:14:19+00:00Christiana Hewlett's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/christiana-hewlett/index.html b/people/christiana-hewlett/index.html deleted file mode 100644 index cacde0a..0000000 --- a/people/christiana-hewlett/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Christiana Hewlett -- -Milliron X -
-Milliron X

Milliron X

Christiana Hewlett

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/christiana-hewlett/index.xml b/people/christiana-hewlett/index.xml deleted file mode 100644 index 532d652..0000000 --- a/people/christiana-hewlett/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Christiana Hewlett on MillironX - http://localhost:1313/people/christiana-hewlett/ - Recent content in Christiana Hewlett on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/christiana-hewlett/page/1/index.html b/people/christiana-hewlett/page/1/index.html deleted file mode 100644 index 46ad11d..0000000 --- a/people/christiana-hewlett/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/ - \ No newline at end of file diff --git a/people/cindi-hewlett/feed.xml b/people/cindi-hewlett/feed.xml deleted file mode 100644 index 393f2bb..0000000 --- a/people/cindi-hewlett/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/2025-03-31T00:14:19+00:00Cindi Hewlett's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/cindi-hewlett/index.html b/people/cindi-hewlett/index.html deleted file mode 100644 index e10d7a2..0000000 --- a/people/cindi-hewlett/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Cindi Hewlett -- -Milliron X -
-Milliron X

Milliron X

Cindi Hewlett

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/cindi-hewlett/index.xml b/people/cindi-hewlett/index.xml deleted file mode 100644 index 8e6cbdc..0000000 --- a/people/cindi-hewlett/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Cindi Hewlett on MillironX - http://localhost:1313/people/cindi-hewlett/ - Recent content in Cindi Hewlett on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/cindi-hewlett/page/1/index.html b/people/cindi-hewlett/page/1/index.html deleted file mode 100644 index 20dc30d..0000000 --- a/people/cindi-hewlett/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ - \ No newline at end of file diff --git a/people/colette-christensen/feed.xml b/people/colette-christensen/feed.xml deleted file mode 100644 index c9d8055..0000000 --- a/people/colette-christensen/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/colette-christensen/2025-03-31T00:14:19+00:00Colette Christensen's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/colette-christensen/index.html b/people/colette-christensen/index.html deleted file mode 100644 index ced530c..0000000 --- a/people/colette-christensen/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Colette Christensen -- -Milliron X -
-Milliron X

Milliron X

Colette Christensen

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/colette-christensen/index.xml b/people/colette-christensen/index.xml deleted file mode 100644 index c4adcd0..0000000 --- a/people/colette-christensen/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Colette Christensen on MillironX - http://localhost:1313/people/colette-christensen/ - Recent content in Colette Christensen on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/colette-christensen/page/1/index.html b/people/colette-christensen/page/1/index.html deleted file mode 100644 index 6e8659e..0000000 --- a/people/colette-christensen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/colette-christensen/ - \ No newline at end of file diff --git a/people/dana-mitzel/feed.xml b/people/dana-mitzel/feed.xml deleted file mode 100644 index c82441b..0000000 --- a/people/dana-mitzel/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/dana-mitzel/2025-03-31T00:14:19+00:00Dana Mitzel's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/people/dana-mitzel/index.html b/people/dana-mitzel/index.html deleted file mode 100644 index 465962a..0000000 --- a/people/dana-mitzel/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Dana Mitzel -- -Milliron X -
-Milliron X

Milliron X

Dana Mitzel

Latest Activity

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/dana-mitzel/index.xml b/people/dana-mitzel/index.xml deleted file mode 100644 index cb033f5..0000000 --- a/people/dana-mitzel/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Dana Mitzel on MillironX - http://localhost:1313/people/dana-mitzel/ - Recent content in Dana Mitzel on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/people/dana-mitzel/page/1/index.html b/people/dana-mitzel/page/1/index.html deleted file mode 100644 index 107c858..0000000 --- a/people/dana-mitzel/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/dana-mitzel/ - \ No newline at end of file diff --git a/people/hannah-c.-cunningham-hollinger/feed.xml b/people/hannah-c.-cunningham-hollinger/feed.xml deleted file mode 100644 index 38475e1..0000000 --- a/people/hannah-c.-cunningham-hollinger/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/2025-03-31T00:14:19+00:00Hannah C. Cunningham-Hollinger's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/people/hannah-c.-cunningham-hollinger/index.html b/people/hannah-c.-cunningham-hollinger/index.html deleted file mode 100644 index 643875d..0000000 --- a/people/hannah-c.-cunningham-hollinger/index.html +++ /dev/null @@ -1,45 +0,0 @@ -About -Hannah C. Cunningham-Hollinger -- -Milliron X -
-Milliron X

Milliron X

Hannah C. Cunningham-Hollinger

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/hannah-c.-cunningham-hollinger/index.xml b/people/hannah-c.-cunningham-hollinger/index.xml deleted file mode 100644 index 4450b54..0000000 --- a/people/hannah-c.-cunningham-hollinger/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Hannah C. Cunningham-Hollinger on MillironX - http://localhost:1313/people/hannah-c.-cunningham-hollinger/ - Recent content in Hannah C. Cunningham-Hollinger on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/people/hannah-c.-cunningham-hollinger/page/1/index.html b/people/hannah-c.-cunningham-hollinger/page/1/index.html deleted file mode 100644 index d42c448..0000000 --- a/people/hannah-c.-cunningham-hollinger/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ - \ No newline at end of file diff --git a/people/index.html b/people/index.html deleted file mode 100644 index a072f23..0000000 --- a/people/index.html +++ /dev/null @@ -1,29 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe
Thumbnail of thumbnail.jpg

Hi! I’m Thomas. I love anything to do with cattle or technology, but especially -anything to do with both of them. I spend way more time in beef country with -beef cows, but I’ve got a soft spot for Brown Swiss dairy cows (just in case you -couldn’t tell by the pictures). I’ve worn a lot of different hats:

First and foremost✝️ Christian
Location🦬 Wyomingite …
Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/index.xml b/people/index.xml deleted file mode 100644 index 342b21b..0000000 --- a/people/index.xml +++ /dev/null @@ -1,65 +0,0 @@ -People on Milliron Xhttps://millironx.millironx.page/@indiewebpub/people/Recent content in People on Milliron XHugoen-usSat, 15 Mar 2025 21:22:22 -0500Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Sat, 15 Mar 2025 21:22:22 -0500https://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/<p>Hi! I&rsquo;m Thomas. I love anything to do with cattle or technology, but especially -anything to do with both of them. I spend way more time in beef country with -beef cows, but I&rsquo;ve got a soft spot for Brown Swiss dairy cows (just in case you -couldn&rsquo;t tell by the pictures). I&rsquo;ve worn a lot of different hats:</p> -<table> - <thead> - <tr> - <th></th> - <th></th> - </tr> - </thead> - <tbody> - <tr> - <td>First and foremost</td> - <td>✝️ <abbr title="Born again, fundamentalist, dispensationalist, King James Bible-believing, independent Baptist" tabindex="0"> - Christian -</abbr> -</td> - </tr> - <tr> - <td>Location</td> - <td>🦬 <abbr title="I want to keep claiming Wyoming, but they&#39;re pretty strict about residency there, and I don&#39;t want to repeat the Liz Cheney fishing license incident" tabindex="0"> - Wyomingite -</abbr> - sojourning in 🌻 <abbr title="Yes, Toto, we are in Kansas now" tabindex="0"> - Kansas -</abbr> - (this ought to be interesting)</td> - </tr> - <tr> - <td>Education</td> - <td>📐 <abbr title="noun. A person who cannot build cool things like airplanes or bridges, but can blow up an entire neighborhood and kill dozens of children by misplacing a decimal point. See also: self-hating chemist" tabindex="0"> - Chemical Engineer -</abbr> -</td> - </tr> - <tr> - <td>Profession</td> - <td>🧬 <abbr title="I do genetics and computers" tabindex="0"> - Bioinformatician -</abbr> - and 🐄🩺 <abbr title="I can&#39;t rope well enough to be a cowboy, so being a cow doctor will have to suffice" tabindex="0"> - Veterinarian -</abbr> - (soon!)</td> - </tr> - <tr> - <td>Politics</td> - <td>🗽 <abbr title="Refers to the belief in natural social and political laws created by God that are as inflexible as the laws of physics" tabindex="0"> - Juris naturalist -</abbr> -</td> - </tr> - <tr> - <td>Hobbies</td> - <td>🎥 <abbr title="Storytelling at 24 frames per second" tabindex="0"> - Filmmaker -</abbr> - and 💃🏻 <abbr title="Square dancing is more musically rigid and is standardized across the country. Swing dancing is more freeform and differs regionally. It&#39;s like the difference between classical music and jazz. I like both." tabindex="0"> - Square/swing dancer -</abbr> -</td> - </tr> - </tbody> -</table>Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thu, 19 Sep 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/bob-gentry/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Thu, 19 Sep 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/dana-mitzel/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/steven-stancic/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/william-wilson/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/maxime-borry/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/nf-core-community/Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/tanja-normark/Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/lance-noll/Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mon, 29 Oct 2018 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Mon, 29 Oct 2018 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Tue, 15 Dec 2015 11:20:23 +0000https://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/ \ No newline at end of file diff --git a/people/james-a.-fellows-yates/feed.xml b/people/james-a.-fellows-yates/feed.xml deleted file mode 100644 index bab68a6..0000000 --- a/people/james-a.-fellows-yates/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/2025-03-31T00:14:19+00:00James A. Fellows Yates's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/james-a.-fellows-yates/index.html b/people/james-a.-fellows-yates/index.html deleted file mode 100644 index 015caa3..0000000 --- a/people/james-a.-fellows-yates/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -James A. Fellows Yates -- -Milliron X -
-Milliron X

Milliron X

James A. Fellows Yates

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/james-a.-fellows-yates/index.xml b/people/james-a.-fellows-yates/index.xml deleted file mode 100644 index dd00c80..0000000 --- a/people/james-a.-fellows-yates/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - James A. Fellows Yates on MillironX - http://localhost:1313/people/james-a.-fellows-yates/ - Recent content in James A. Fellows Yates on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/james-a.-fellows-yates/page/1/index.html b/people/james-a.-fellows-yates/page/1/index.html deleted file mode 100644 index 4f2c1f8..0000000 --- a/people/james-a.-fellows-yates/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ - \ No newline at end of file diff --git a/people/james-g.-moberly/feed.xml b/people/james-g.-moberly/feed.xml deleted file mode 100644 index dc3a478..0000000 --- a/people/james-g.-moberly/feed.xml +++ /dev/null @@ -1,66 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/2025-03-31T00:14:19+00:00James G. Moberly's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> - \ No newline at end of file diff --git a/people/james-g.-moberly/index.html b/people/james-g.-moberly/index.html deleted file mode 100644 index b8df808..0000000 --- a/people/james-g.-moberly/index.html +++ /dev/null @@ -1,88 +0,0 @@ -About -James G. Moberly -- -Milliron X -
-Milliron X

Milliron X

James G. Moberly

Latest Activity

-Subscribe
- - - - -

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

- -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/james-g.-moberly/index.xml b/people/james-g.-moberly/index.xml deleted file mode 100644 index 295ccf8..0000000 --- a/people/james-g.-moberly/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - James G. Moberly on MillironX - http://localhost:1313/people/james-g.-moberly/ - Recent content in James G. Moberly on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - diff --git a/people/james-g.-moberly/page/1/index.html b/people/james-g.-moberly/page/1/index.html deleted file mode 100644 index 52a9d30..0000000 --- a/people/james-g.-moberly/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ - \ No newline at end of file diff --git a/people/jamie-henningson/feed.xml b/people/jamie-henningson/feed.xml deleted file mode 100644 index 115e663..0000000 --- a/people/jamie-henningson/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jamie-henningson/2025-03-31T00:14:19+00:00Jamie Henningson's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/jamie-henningson/index.html b/people/jamie-henningson/index.html deleted file mode 100644 index 85b6850..0000000 --- a/people/jamie-henningson/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Jamie Henningson -- -Milliron X -
-Milliron X

Milliron X

Jamie Henningson

Latest Activity

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jamie-henningson/index.xml b/people/jamie-henningson/index.xml deleted file mode 100644 index 8ec7c5f..0000000 --- a/people/jamie-henningson/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Jamie Henningson on MillironX - http://localhost:1313/people/jamie-henningson/ - Recent content in Jamie Henningson on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/jamie-henningson/page/1/index.html b/people/jamie-henningson/page/1/index.html deleted file mode 100644 index 65ce742..0000000 --- a/people/jamie-henningson/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jamie-henningson/ - \ No newline at end of file diff --git a/people/jedidiah-hewlett/feed.xml b/people/jedidiah-hewlett/feed.xml deleted file mode 100644 index fdca860..0000000 --- a/people/jedidiah-hewlett/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/2025-03-31T00:14:19+00:00Jedidiah Hewlett's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/jedidiah-hewlett/index.html b/people/jedidiah-hewlett/index.html deleted file mode 100644 index efecbda..0000000 --- a/people/jedidiah-hewlett/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Jedidiah Hewlett -- -Milliron X -
-Milliron X

Milliron X

Jedidiah Hewlett

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jedidiah-hewlett/index.xml b/people/jedidiah-hewlett/index.xml deleted file mode 100644 index a149e7b..0000000 --- a/people/jedidiah-hewlett/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Jedidiah Hewlett on MillironX - http://localhost:1313/people/jedidiah-hewlett/ - Recent content in Jedidiah Hewlett on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/jedidiah-hewlett/page/1/index.html b/people/jedidiah-hewlett/page/1/index.html deleted file mode 100644 index 2b702e8..0000000 --- a/people/jedidiah-hewlett/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/ - \ No newline at end of file diff --git a/people/jeremiah-hewlett/feed.xml b/people/jeremiah-hewlett/feed.xml deleted file mode 100644 index 456b2fe..0000000 --- a/people/jeremiah-hewlett/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/2025-03-31T00:14:19+00:00Jeremiah Hewlett's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/jeremiah-hewlett/index.html b/people/jeremiah-hewlett/index.html deleted file mode 100644 index 3015c25..0000000 --- a/people/jeremiah-hewlett/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Jeremiah Hewlett -- -Milliron X -
-Milliron X

Milliron X

Jeremiah Hewlett

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jeremiah-hewlett/index.xml b/people/jeremiah-hewlett/index.xml deleted file mode 100644 index 56512ca..0000000 --- a/people/jeremiah-hewlett/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Jeremiah Hewlett on MillironX - http://localhost:1313/people/jeremiah-hewlett/ - Recent content in Jeremiah Hewlett on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/jeremiah-hewlett/page/1/index.html b/people/jeremiah-hewlett/page/1/index.html deleted file mode 100644 index f08452c..0000000 --- a/people/jeremiah-hewlett/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/ - \ No newline at end of file diff --git a/people/jianfa-bai/feed.xml b/people/jianfa-bai/feed.xml deleted file mode 100644 index 058c376..0000000 --- a/people/jianfa-bai/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jianfa-bai/2025-03-31T00:14:19+00:00Jianfa Bai's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/jianfa-bai/index.html b/people/jianfa-bai/index.html deleted file mode 100644 index ae59b17..0000000 --- a/people/jianfa-bai/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Jianfa Bai -- -Milliron X -
-Milliron X

Milliron X

Jianfa Bai

Latest Activity

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jianfa-bai/index.xml b/people/jianfa-bai/index.xml deleted file mode 100644 index 66fcf97..0000000 --- a/people/jianfa-bai/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Jianfa Bai on MillironX - http://localhost:1313/people/jianfa-bai/ - Recent content in Jianfa Bai on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/jianfa-bai/page/1/index.html b/people/jianfa-bai/page/1/index.html deleted file mode 100644 index 99ae32a..0000000 --- a/people/jianfa-bai/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jianfa-bai/ - \ No newline at end of file diff --git a/people/jonathan-counts/feed.xml b/people/jonathan-counts/feed.xml deleted file mode 100644 index 4f38548..0000000 --- a/people/jonathan-counts/feed.xml +++ /dev/null @@ -1,44 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jonathan-counts/2025-03-31T00:14:19+00:00Jonathan Counts's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> - \ No newline at end of file diff --git a/people/jonathan-counts/index.html b/people/jonathan-counts/index.html deleted file mode 100644 index 5792b0b..0000000 --- a/people/jonathan-counts/index.html +++ /dev/null @@ -1,62 +0,0 @@ -About -Jonathan Counts -- -Milliron X -
-Milliron X

Milliron X

Jonathan Counts

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

- -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jonathan-counts/index.xml b/people/jonathan-counts/index.xml deleted file mode 100644 index 613dfb7..0000000 --- a/people/jonathan-counts/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Jonathan Counts on MillironX - http://localhost:1313/people/jonathan-counts/ - Recent content in Jonathan Counts on MillironX - Hugo - en-us - Mon, 29 Oct 2018 00:00:00 +0000 - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - diff --git a/people/jonathan-counts/page/1/index.html b/people/jonathan-counts/page/1/index.html deleted file mode 100644 index 37a3c0e..0000000 --- a/people/jonathan-counts/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jonathan-counts/ - \ No newline at end of file diff --git a/people/jonathan-r.-counts/feed.xml b/people/jonathan-r.-counts/feed.xml deleted file mode 100644 index 99548fa..0000000 --- a/people/jonathan-r.-counts/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/2025-03-31T00:14:19+00:00Jonathan R. Counts's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/people/jonathan-r.-counts/index.html b/people/jonathan-r.-counts/index.html deleted file mode 100644 index c672607..0000000 --- a/people/jonathan-r.-counts/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Jonathan R. Counts -- -Milliron X -
-Milliron X

Milliron X

Jonathan R. Counts

Latest Activity

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/jonathan-r.-counts/index.xml b/people/jonathan-r.-counts/index.xml deleted file mode 100644 index e82985a..0000000 --- a/people/jonathan-r.-counts/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Jonathan R. Counts on MillironX - http://localhost:1313/people/jonathan-r.-counts/ - Recent content in Jonathan R. Counts on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/people/jonathan-r.-counts/page/1/index.html b/people/jonathan-r.-counts/page/1/index.html deleted file mode 100644 index c0f7324..0000000 --- a/people/jonathan-r.-counts/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/ - \ No newline at end of file diff --git a/people/kathy-j.-austin/feed.xml b/people/kathy-j.-austin/feed.xml deleted file mode 100644 index c4d89e7..0000000 --- a/people/kathy-j.-austin/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/2025-03-31T00:14:19+00:00Kathy J. Austin's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/people/kathy-j.-austin/index.html b/people/kathy-j.-austin/index.html deleted file mode 100644 index baf637b..0000000 --- a/people/kathy-j.-austin/index.html +++ /dev/null @@ -1,45 +0,0 @@ -About -Kathy J. Austin -- -Milliron X -
-Milliron X

Milliron X

Kathy J. Austin

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/kathy-j.-austin/index.xml b/people/kathy-j.-austin/index.xml deleted file mode 100644 index d35896a..0000000 --- a/people/kathy-j.-austin/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Kathy J. Austin on MillironX - http://localhost:1313/people/kathy-j.-austin/ - Recent content in Kathy J. Austin on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/people/kathy-j.-austin/page/1/index.html b/people/kathy-j.-austin/page/1/index.html deleted file mode 100644 index abdb0ed..0000000 --- a/people/kathy-j.-austin/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/ - \ No newline at end of file diff --git a/people/kristi-m.-cammack/feed.xml b/people/kristi-m.-cammack/feed.xml deleted file mode 100644 index a6f023b..0000000 --- a/people/kristi-m.-cammack/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/2025-03-31T00:14:19+00:00Kristi M. Cammack's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/people/kristi-m.-cammack/index.html b/people/kristi-m.-cammack/index.html deleted file mode 100644 index 78c8454..0000000 --- a/people/kristi-m.-cammack/index.html +++ /dev/null @@ -1,45 +0,0 @@ -About -Kristi M. Cammack -- -Milliron X -
-Milliron X

Milliron X

Kristi M. Cammack

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/kristi-m.-cammack/index.xml b/people/kristi-m.-cammack/index.xml deleted file mode 100644 index 617acdb..0000000 --- a/people/kristi-m.-cammack/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Kristi M. Cammack on MillironX - http://localhost:1313/people/kristi-m.-cammack/ - Recent content in Kristi M. Cammack on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/people/kristi-m.-cammack/page/1/index.html b/people/kristi-m.-cammack/page/1/index.html deleted file mode 100644 index dadcbf4..0000000 --- a/people/kristi-m.-cammack/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/ - \ No newline at end of file diff --git a/people/kristopher-v.-waynant/feed.xml b/people/kristopher-v.-waynant/feed.xml deleted file mode 100644 index 6f58ad5..0000000 --- a/people/kristopher-v.-waynant/feed.xml +++ /dev/null @@ -1,43 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/2025-03-31T00:14:19+00:00Kristopher v. Waynant's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/people/kristopher-v.-waynant/index.html b/people/kristopher-v.-waynant/index.html deleted file mode 100644 index 1827419..0000000 --- a/people/kristopher-v.-waynant/index.html +++ /dev/null @@ -1,77 +0,0 @@ -About -Kristopher v. Waynant -- -Milliron X -
-Milliron X

Milliron X

Kristopher v. Waynant

Latest Activity

-Subscribe
- - - - -

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/kristopher-v.-waynant/index.xml b/people/kristopher-v.-waynant/index.xml deleted file mode 100644 index 6bfd166..0000000 --- a/people/kristopher-v.-waynant/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Kristopher v. Waynant on MillironX - http://localhost:1313/people/kristopher-v.-waynant/ - Recent content in Kristopher v. Waynant on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/people/kristopher-v.-waynant/page/1/index.html b/people/kristopher-v.-waynant/page/1/index.html deleted file mode 100644 index 9017529..0000000 --- a/people/kristopher-v.-waynant/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/ - \ No newline at end of file diff --git a/people/lance-noll/feed.xml b/people/lance-noll/feed.xml deleted file mode 100644 index c95435a..0000000 --- a/people/lance-noll/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/lance-noll/2025-03-31T00:14:19+00:00Lance Noll's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/lance-noll/index.html b/people/lance-noll/index.html deleted file mode 100644 index 7e931bd..0000000 --- a/people/lance-noll/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Lance Noll -- -Milliron X -
-Milliron X

Milliron X

Lance Noll

Latest Activity

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/lance-noll/index.xml b/people/lance-noll/index.xml deleted file mode 100644 index 6a63634..0000000 --- a/people/lance-noll/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Lance Noll on MillironX - http://localhost:1313/people/lance-noll/ - Recent content in Lance Noll on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/lance-noll/page/1/index.html b/people/lance-noll/page/1/index.html deleted file mode 100644 index de1cc18..0000000 --- a/people/lance-noll/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/lance-noll/ - \ No newline at end of file diff --git a/people/lili-andersson-li/feed.xml b/people/lili-andersson-li/feed.xml deleted file mode 100644 index 04aa802..0000000 --- a/people/lili-andersson-li/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/2025-03-31T00:14:19+00:00Lili Andersson-Li's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/lili-andersson-li/index.html b/people/lili-andersson-li/index.html deleted file mode 100644 index 958730b..0000000 --- a/people/lili-andersson-li/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Lili Andersson-Li -- -Milliron X -
-Milliron X

Milliron X

Lili Andersson-Li

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/lili-andersson-li/index.xml b/people/lili-andersson-li/index.xml deleted file mode 100644 index 2121a43..0000000 --- a/people/lili-andersson-li/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Lili Andersson-Li on MillironX - http://localhost:1313/people/lili-andersson-li/ - Recent content in Lili Andersson-Li on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/lili-andersson-li/page/1/index.html b/people/lili-andersson-li/page/1/index.html deleted file mode 100644 index ee9e022..0000000 --- a/people/lili-andersson-li/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/ - \ No newline at end of file diff --git a/people/mahwash-jamy/feed.xml b/people/mahwash-jamy/feed.xml deleted file mode 100644 index e245121..0000000 --- a/people/mahwash-jamy/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/2025-03-31T00:14:19+00:00Mahwash Jamy's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/mahwash-jamy/index.html b/people/mahwash-jamy/index.html deleted file mode 100644 index 02c1b85..0000000 --- a/people/mahwash-jamy/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Mahwash Jamy -- -Milliron X -
-Milliron X

Milliron X

Mahwash Jamy

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/mahwash-jamy/index.xml b/people/mahwash-jamy/index.xml deleted file mode 100644 index a060e9d..0000000 --- a/people/mahwash-jamy/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Mahwash Jamy on MillironX - http://localhost:1313/people/mahwash-jamy/ - Recent content in Mahwash Jamy on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/mahwash-jamy/page/1/index.html b/people/mahwash-jamy/page/1/index.html deleted file mode 100644 index 287827e..0000000 --- a/people/mahwash-jamy/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/ - \ No newline at end of file diff --git a/people/malea-christensen/feed.xml b/people/malea-christensen/feed.xml deleted file mode 100644 index fd5c313..0000000 --- a/people/malea-christensen/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/malea-christensen/2025-03-31T00:14:19+00:00Malea Christensen's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/malea-christensen/index.html b/people/malea-christensen/index.html deleted file mode 100644 index f085ebc..0000000 --- a/people/malea-christensen/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Malea Christensen -- -Milliron X -
-Milliron X

Milliron X

Malea Christensen

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/malea-christensen/index.xml b/people/malea-christensen/index.xml deleted file mode 100644 index 9637f02..0000000 --- a/people/malea-christensen/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Malea Christensen on MillironX - http://localhost:1313/people/malea-christensen/ - Recent content in Malea Christensen on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/malea-christensen/page/1/index.html b/people/malea-christensen/page/1/index.html deleted file mode 100644 index c015c7d..0000000 --- a/people/malea-christensen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/malea-christensen/ - \ No newline at end of file diff --git a/people/mark-f.-roll/feed.xml b/people/mark-f.-roll/feed.xml deleted file mode 100644 index 8f80b72..0000000 --- a/people/mark-f.-roll/feed.xml +++ /dev/null @@ -1,43 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/2025-03-31T00:14:19+00:00Mark F. Roll's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/people/mark-f.-roll/index.html b/people/mark-f.-roll/index.html deleted file mode 100644 index e4d92fb..0000000 --- a/people/mark-f.-roll/index.html +++ /dev/null @@ -1,77 +0,0 @@ -About -Mark F. Roll -- -Milliron X -
-Milliron X

Milliron X

Mark F. Roll

Latest Activity

-Subscribe
- - - - -

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/mark-f.-roll/index.xml b/people/mark-f.-roll/index.xml deleted file mode 100644 index 4a82836..0000000 --- a/people/mark-f.-roll/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Mark F. Roll on MillironX - http://localhost:1313/people/mark-f.-roll/ - Recent content in Mark F. Roll on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/people/mark-f.-roll/page/1/index.html b/people/mark-f.-roll/page/1/index.html deleted file mode 100644 index 9024978..0000000 --- a/people/mark-f.-roll/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/ - \ No newline at end of file diff --git a/people/maxime-borry/feed.xml b/people/maxime-borry/feed.xml deleted file mode 100644 index dd0b219..0000000 --- a/people/maxime-borry/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/maxime-borry/2025-03-31T00:14:19+00:00Maxime Borry's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/maxime-borry/index.html b/people/maxime-borry/index.html deleted file mode 100644 index ab9b74f..0000000 --- a/people/maxime-borry/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Maxime Borry -- -Milliron X -
-Milliron X

Milliron X

Maxime Borry

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/maxime-borry/index.xml b/people/maxime-borry/index.xml deleted file mode 100644 index 3ab6085..0000000 --- a/people/maxime-borry/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Maxime Borry on MillironX - http://localhost:1313/people/maxime-borry/ - Recent content in Maxime Borry on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/maxime-borry/page/1/index.html b/people/maxime-borry/page/1/index.html deleted file mode 100644 index 609fab2..0000000 --- a/people/maxime-borry/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/maxime-borry/ - \ No newline at end of file diff --git a/people/moritz-e.-beber/feed.xml b/people/moritz-e.-beber/feed.xml deleted file mode 100644 index 3e3df0f..0000000 --- a/people/moritz-e.-beber/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/2025-03-31T00:14:19+00:00Moritz E. Beber's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/moritz-e.-beber/index.html b/people/moritz-e.-beber/index.html deleted file mode 100644 index f811355..0000000 --- a/people/moritz-e.-beber/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Moritz E. Beber -- -Milliron X -
-Milliron X

Milliron X

Moritz E. Beber

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/moritz-e.-beber/index.xml b/people/moritz-e.-beber/index.xml deleted file mode 100644 index c9d41b9..0000000 --- a/people/moritz-e.-beber/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Moritz E. Beber on MillironX - http://localhost:1313/people/moritz-e.-beber/ - Recent content in Moritz E. Beber on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/moritz-e.-beber/page/1/index.html b/people/moritz-e.-beber/page/1/index.html deleted file mode 100644 index 9922c21..0000000 --- a/people/moritz-e.-beber/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/ - \ No newline at end of file diff --git a/people/nf-core-community/feed.xml b/people/nf-core-community/feed.xml deleted file mode 100644 index ff1cc3e..0000000 --- a/people/nf-core-community/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/nf-core-community/2025-03-31T00:14:19+00:00Nf-Core Community's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/nf-core-community/index.html b/people/nf-core-community/index.html deleted file mode 100644 index 2f7c5df..0000000 --- a/people/nf-core-community/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Nf-Core Community -- -Milliron X -
-Milliron X

Milliron X

Nf-Core Community

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/nf-core-community/index.xml b/people/nf-core-community/index.xml deleted file mode 100644 index e0f782d..0000000 --- a/people/nf-core-community/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Nf-Core Community on MillironX - http://localhost:1313/people/nf-core-community/ - Recent content in Nf-Core Community on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/nf-core-community/page/1/index.html b/people/nf-core-community/page/1/index.html deleted file mode 100644 index 2d6a6b5..0000000 --- a/people/nf-core-community/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/nf-core-community/ - \ No newline at end of file diff --git a/people/page/1/index.html b/people/page/1/index.html deleted file mode 100644 index ecf5ec0..0000000 --- a/people/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/ - \ No newline at end of file diff --git a/people/page/2/index.html b/people/page/2/index.html deleted file mode 100644 index 6376124..0000000 --- a/people/page/2/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/3/index.html b/people/page/3/index.html deleted file mode 100644 index 59bf48c..0000000 --- a/people/page/3/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/4/index.html b/people/page/4/index.html deleted file mode 100644 index 1126d50..0000000 --- a/people/page/4/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/5/index.html b/people/page/5/index.html deleted file mode 100644 index 9412114..0000000 --- a/people/page/5/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/6/index.html b/people/page/6/index.html deleted file mode 100644 index 81667db..0000000 --- a/people/page/6/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/7/index.html b/people/page/7/index.html deleted file mode 100644 index edbecbe..0000000 --- a/people/page/7/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/page/8/index.html b/people/page/8/index.html deleted file mode 100644 index b29e7ea..0000000 --- a/people/page/8/index.html +++ /dev/null @@ -1,26 +0,0 @@ -People: -People -- -Milliron X -
-Milliron X

Milliron X

People: -People

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/rachel-palinski/feed.xml b/people/rachel-palinski/feed.xml deleted file mode 100644 index 8ee435f..0000000 --- a/people/rachel-palinski/feed.xml +++ /dev/null @@ -1,88 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/rachel-palinski/2025-03-31T00:14:19+00:00Rachel Palinski's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/rachel-palinski/index.html b/people/rachel-palinski/index.html deleted file mode 100644 index 53b370d..0000000 --- a/people/rachel-palinski/index.html +++ /dev/null @@ -1,86 +0,0 @@ -About -Rachel Palinski -- -Milliron X -
-Milliron X

Milliron X

Rachel Palinski

Latest Activity

-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/rachel-palinski/index.xml b/people/rachel-palinski/index.xml deleted file mode 100644 index dee2a4e..0000000 --- a/people/rachel-palinski/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Rachel Palinski on MillironX - http://localhost:1313/people/rachel-palinski/ - Recent content in Rachel Palinski on MillironX - Hugo - en-us - Thu, 19 Sep 2024 00:00:00 +0000 - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/rachel-palinski/page/1/index.html b/people/rachel-palinski/page/1/index.html deleted file mode 100644 index b41ed50..0000000 --- a/people/rachel-palinski/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ - \ No newline at end of file diff --git a/people/samuel-r.-wolfe/feed.xml b/people/samuel-r.-wolfe/feed.xml deleted file mode 100644 index 88f1671..0000000 --- a/people/samuel-r.-wolfe/feed.xml +++ /dev/null @@ -1,21 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/2025-03-31T00:14:19+00:00Samuel R. Wolfe's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/people/samuel-r.-wolfe/index.html b/people/samuel-r.-wolfe/index.html deleted file mode 100644 index 9bff7de..0000000 --- a/people/samuel-r.-wolfe/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Samuel R. Wolfe -- -Milliron X -
-Milliron X

Milliron X

Samuel R. Wolfe

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/samuel-r.-wolfe/index.xml b/people/samuel-r.-wolfe/index.xml deleted file mode 100644 index c860b4a..0000000 --- a/people/samuel-r.-wolfe/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Samuel R. Wolfe on MillironX - http://localhost:1313/people/samuel-r.-wolfe/ - Recent content in Samuel R. Wolfe on MillironX - Hugo - en-us - Mon, 29 Oct 2018 00:00:00 +0000 - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/people/samuel-r.-wolfe/page/1/index.html b/people/samuel-r.-wolfe/page/1/index.html deleted file mode 100644 index f5faf75..0000000 --- a/people/samuel-r.-wolfe/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/ - \ No newline at end of file diff --git a/people/sofia-stamouli/feed.xml b/people/sofia-stamouli/feed.xml deleted file mode 100644 index c822db7..0000000 --- a/people/sofia-stamouli/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/2025-03-31T00:14:19+00:00Sofia Stamouli's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/sofia-stamouli/index.html b/people/sofia-stamouli/index.html deleted file mode 100644 index 08bc02a..0000000 --- a/people/sofia-stamouli/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Sofia Stamouli -- -Milliron X -
-Milliron X

Milliron X

Sofia Stamouli

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/sofia-stamouli/index.xml b/people/sofia-stamouli/index.xml deleted file mode 100644 index 69fbd49..0000000 --- a/people/sofia-stamouli/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Sofia Stamouli on MillironX - http://localhost:1313/people/sofia-stamouli/ - Recent content in Sofia Stamouli on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/sofia-stamouli/page/1/index.html b/people/sofia-stamouli/page/1/index.html deleted file mode 100644 index d79fe3d..0000000 --- a/people/sofia-stamouli/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/ - \ No newline at end of file diff --git a/people/steven-stancic/feed.xml b/people/steven-stancic/feed.xml deleted file mode 100644 index 6eae434..0000000 --- a/people/steven-stancic/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/steven-stancic/2025-03-31T00:14:19+00:00Steven Stancic's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/people/steven-stancic/index.html b/people/steven-stancic/index.html deleted file mode 100644 index 2f1ddd0..0000000 --- a/people/steven-stancic/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Steven Stancic -- -Milliron X -
-Milliron X

Milliron X

Steven Stancic

Latest Activity

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/steven-stancic/index.xml b/people/steven-stancic/index.xml deleted file mode 100644 index 37c078b..0000000 --- a/people/steven-stancic/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Steven Stancic on MillironX - http://localhost:1313/people/steven-stancic/ - Recent content in Steven Stancic on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/people/steven-stancic/page/1/index.html b/people/steven-stancic/page/1/index.html deleted file mode 100644 index 3f1555e..0000000 --- a/people/steven-stancic/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/steven-stancic/ - \ No newline at end of file diff --git a/people/tanja-normark/feed.xml b/people/tanja-normark/feed.xml deleted file mode 100644 index 55fc109..0000000 --- a/people/tanja-normark/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/tanja-normark/2025-03-31T00:14:19+00:00Tanja Normark's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/people/tanja-normark/index.html b/people/tanja-normark/index.html deleted file mode 100644 index 78a48eb..0000000 --- a/people/tanja-normark/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -Tanja Normark -- -Milliron X -
-Milliron X

Milliron X

Tanja Normark

Latest Activity

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/tanja-normark/index.xml b/people/tanja-normark/index.xml deleted file mode 100644 index 77165e5..0000000 --- a/people/tanja-normark/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Tanja Normark on MillironX - http://localhost:1313/people/tanja-normark/ - Recent content in Tanja Normark on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/people/tanja-normark/page/1/index.html b/people/tanja-normark/page/1/index.html deleted file mode 100644 index cab6d70..0000000 --- a/people/tanja-normark/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/tanja-normark/ - \ No newline at end of file diff --git a/people/thaddaeus-christensen/feed.xml b/people/thaddaeus-christensen/feed.xml deleted file mode 100644 index 937ed98..0000000 --- a/people/thaddaeus-christensen/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/2025-03-31T00:14:19+00:00Thaddaeus Christensen's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/thaddaeus-christensen/index.html b/people/thaddaeus-christensen/index.html deleted file mode 100644 index 73bc4b5..0000000 --- a/people/thaddaeus-christensen/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Thaddaeus Christensen -- -Milliron X -
-Milliron X

Milliron X

Thaddaeus Christensen

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thaddaeus-christensen/index.xml b/people/thaddaeus-christensen/index.xml deleted file mode 100644 index e2ecbeb..0000000 --- a/people/thaddaeus-christensen/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Thaddaeus Christensen on MillironX - http://localhost:1313/people/thaddaeus-christensen/ - Recent content in Thaddaeus Christensen on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/thaddaeus-christensen/page/1/index.html b/people/thaddaeus-christensen/page/1/index.html deleted file mode 100644 index 0ffd90c..0000000 --- a/people/thaddaeus-christensen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/ - \ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/feed.xml b/people/thomas-a.-christensen-ii/feed.xml deleted file mode 100644 index 2deb837..0000000 --- a/people/thomas-a.-christensen-ii/feed.xml +++ /dev/null @@ -1,433 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/2025-03-31T00:14:19+00:00Thomas A. Christensen II's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/Genetic analysis of bovine papillomas2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/ -Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development. -<p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy animals, and in non-cutaneous secretions -including milk, blood, urine and semen. Currently, no commercially available BPV -vaccine uses isolated viral particles and naturally occurring virus does not -produce cross-protective immunity. In order to develop a proper vaccine for -penile papillomas further studies are required to understand the epidemiology of -BPV in herds. While vulvar, cutaneous, and mammary papillomas have been -genotyped in recent years, this information is not available for penile -papillomas. In this study there were 31 submissions, collected from 7 states, -NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were -collected between August of 2022 and April 2024. Twenty-two submissions were -penile papillomas and with pooling of samples represented over 50 penile -papillomas. Samples were metagenomically sequenced at the Kansas State -Veterinary Diagnostic Lab, and the genotype of each sample was determined using -the phylogenetic analysis. The clade of each sample was determined by aligning -consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine -target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. -Analysis found that all penile papilloma submissions were composed of BPV type -2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous -and teat papillomas had BPV genotypes that were more variable with genotypes of -1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide -a unified target for bovine penile papilloma vaccine development.</p> -https://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination2024-09-19T00:00:00+00:002024-09-19T00:00:00+00:00Bob Gentryhttps://millironx.millironx.page/@indiewebpub/people/bob-gentry/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> -https://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> -https://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> -https://millironx.millironx.page/@indiewebpub/code/cowsay.jl/Cowsay.jl2022-05-11T01:32:54+00:002022-05-11T01:32:54+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:cow2: cowsay for Julia! -<p>:cow2: cowsay for Julia!</p> -https://millironx.millironx.page/@indiewebpub/code/docker-names/docker-names2022-05-09T09:13:08-05:002022-05-09T09:13:08-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A docker name generator in TypeScript. -<p>A docker name generator in TypeScript.</p> -https://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> -https://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> -https://millironx.millironx.page/@indiewebpub/code/nfdocs-parser/nfdocs-parser2022-01-25T10:15:13-06:002022-01-25T10:15:13-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A Sphinx plugin for converting Nextflow docstrings into documentation -<p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> -https://millironx.millironx.page/@indiewebpub/code/singularity-builds/singularity-builds2021-11-15T12:37:15-06:002021-11-15T12:37:15-06:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/code/cowsay-cows/cowsay-cows2021-10-12T15:13:28-05:002021-10-12T15:13:28-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -cowfiles in the original spirit of cowsay, except that all of these are actually bovine -<p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> -https://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> -https://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/academia/how-to-build-a-cow-cud-fuel-cell/How to Build a Cow-Cud Fuel Cell2018-08-01T00:00:00+00:002018-08-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/Measuring diffusion of protons in polyvinyalginate2018-07-31T00:00:00+00:002018-07-31T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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+ 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-5 ± 1.91 × 10-6 cm2 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>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>&#43;</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> -https://millironx.millironx.page/@indiewebpub/videos/ag-olympics-reel/Farm Bureau Ag Olympics Reel2017-02-16T00:00:00+00:002017-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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. -<p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> -https://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> -https://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/index.html b/people/thomas-a.-christensen-ii/index.html deleted file mode 100644 index 0a4d236..0000000 --- a/people/thomas-a.-christensen-ii/index.html +++ /dev/null @@ -1,167 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Bio

Hi! I’m Thomas. I love anything to do with cattle or technology, but especially -anything to do with both of them. I spend way more time in beef country with -beef cows, but I’ve got a soft spot for Brown Swiss dairy cows (just in case you -couldn’t tell by the pictures). I’ve worn a lot of different hats:

First and foremost✝️ Christian
Location🦬 Wyomingite -sojourning in 🌻 Kansas -(this ought to be interesting)
Education📐 Chemical Engineer
Profession🧬 Bioinformatician -and 🐄🩺 Veterinarian -(soon!)
Politics🗽 Juris naturalist
Hobbies🎥 Filmmaker -and 💃🏻 Square/swing dancer

Latest Activity

-Subscribe
- -

Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. -In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is -always a cause to fail an animal on a breeding soundness exam. Historically, it -has been thought that BPV was transmitted via direct contact and could be -controlled by managing clinically presenting animals in the herd, but more -recent evidence suggests alternative modes of transmission. BPV has been found -repeatably in clinically healthy …

Read more »

- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/index.xml b/people/thomas-a.-christensen-ii/index.xml deleted file mode 100644 index 9f224e6..0000000 --- a/people/thomas-a.-christensen-ii/index.xml +++ /dev/null @@ -1,320 +0,0 @@ - - - - Thomas A. Christensen II on MillironX - http://localhost:1313/people/thomas-a.-christensen-ii/ - Recent content in Thomas A. Christensen II on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - Genetic analysis of bovine papillomas - http://localhost:1313/academia/bpv-genetics/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/bpv-genetics/ - <p>Bovine papillomavirus (BPV) is a major cause of reproductive failure in cattle. In bulls, penile papillomas caused by BPV may cause reluctance to breed, and is always a cause to fail an animal on a breeding soundness exam. Historically, it has been thought that BPV was transmitted via direct contact and could be controlled by managing clinically presenting animals in the herd, but more recent evidence suggests alternative modes of transmission. BPV has been found repeatably in clinically healthy animals, and in non-cutaneous secretions including milk, blood, urine and semen. Currently, no commercially available BPV vaccine uses isolated viral particles and naturally occurring virus does not produce cross-protective immunity. In order to develop a proper vaccine for penile papillomas further studies are required to understand the epidemiology of BPV in herds. While vulvar, cutaneous, and mammary papillomas have been genotyped in recent years, this information is not available for penile papillomas. In this study there were 31 submissions, collected from 7 states, NE, KS, NY, TX, AL, MO and SD (14 different cattle operations) Samples were collected between August of 2022 and April 2024. Twenty-two submissions were penile papillomas and with pooling of samples represented over 50 penile papillomas. Samples were metagenomically sequenced at the Kansas State Veterinary Diagnostic Lab, and the genotype of each sample was determined using the phylogenetic analysis. The clade of each sample was determined by aligning consensus sequences of the L1 gene (used for both for phylogeny and as a vaccine target) using MAFFT and a maximum-likelihood phylogeny generated in Mega X. Analysis found that all penile papilloma submissions were composed of BPV type 2, with one sample showing co-infection with BPV type 1. Conversely, cutaneous and teat papillomas had BPV genotypes that were more variable with genotypes of 1,2,7,12,14,29 and 40. These results indicate that BPV type 2 and type 1 provide a unified target for bovine penile papilloma vaccine development.</p> - - - Got Warts? Bovine Papillomavirus Pathogenesis, Transmission, and Vaccination - http://localhost:1313/academia/got-warts-naab/ - Thu, 19 Sep 2024 00:00:00 +0000 - http://localhost:1313/academia/got-warts-naab/ - - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - Cowsay.jl - http://localhost:1313/code/cowsay.jl/ - Wed, 11 May 2022 01:32:54 +0000 - http://localhost:1313/code/cowsay.jl/ - <p>:cow2: cowsay for Julia!</p> - - - docker-names - http://localhost:1313/code/docker-names/ - Mon, 09 May 2022 09:13:08 -0500 - http://localhost:1313/code/docker-names/ - <p>A docker name generator in TypeScript.</p> - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - nfdocs-parser - http://localhost:1313/code/nfdocs-parser/ - Tue, 25 Jan 2022 10:15:13 -0600 - http://localhost:1313/code/nfdocs-parser/ - <p>A Sphinx plugin for converting Nextflow docstrings into documentation</p> - - - singularity-builds - http://localhost:1313/code/singularity-builds/ - Mon, 15 Nov 2021 12:37:15 -0600 - http://localhost:1313/code/singularity-builds/ - - - - cowsay-cows - http://localhost:1313/code/cowsay-cows/ - Tue, 12 Oct 2021 15:13:28 -0500 - http://localhost:1313/code/cowsay-cows/ - <p>cowfiles in the original spirit of cowsay, except that all of these are actually bovine</p> - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - How to Build a Cow-Cud Fuel Cell - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - Wed, 01 Aug 2018 00:00:00 +0000 - http://localhost:1313/academia/how-to-build-a-cow-cud-fuel-cell/ - - - - Measuring diffusion of protons in polyvinyalginate - http://localhost:1313/academia/pva-inbre/ - Tue, 31 Jul 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-inbre/ - <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>&#43;</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> - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/people/thomas-a.-christensen-ii/page/1/index.html b/people/thomas-a.-christensen-ii/page/1/index.html deleted file mode 100644 index 6d1b4d1..0000000 --- a/people/thomas-a.-christensen-ii/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ - \ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/2/index.html b/people/thomas-a.-christensen-ii/page/2/index.html deleted file mode 100644 index c2c19e9..0000000 --- a/people/thomas-a.-christensen-ii/page/2/index.html +++ /dev/null @@ -1,87 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

- - - - -

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 …

Read more »

Cowsay.jl

11 May 2022

docker-names

09 May 2022

A docker name generator in TypeScript.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/3/index.html b/people/thomas-a.-christensen-ii/page/3/index.html deleted file mode 100644 index 6566fd1..0000000 --- a/people/thomas-a.-christensen-ii/page/3/index.html +++ /dev/null @@ -1,64 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
- - - - - -

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 …

Read more »

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

nfdocs-parser

25 Jan 2022

A Sphinx plugin for converting Nextflow docstrings into documentation

Read more »

cowsay-cows

12 Oct 2021

cowfiles in the original spirit of cowsay, except that all of these are actually bovine

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/4/index.html b/people/thomas-a.-christensen-ii/page/4/index.html deleted file mode 100644 index 4a5f160..0000000 --- a/people/thomas-a.-christensen-ii/page/4/index.html +++ /dev/null @@ -1,119 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

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 …

Read more »

Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/5/index.html b/people/thomas-a.-christensen-ii/page/5/index.html deleted file mode 100644 index 4b91bc5..0000000 --- a/people/thomas-a.-christensen-ii/page/5/index.html +++ /dev/null @@ -1,62 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
- -

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 …

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/6/index.html b/people/thomas-a.-christensen-ii/page/6/index.html deleted file mode 100644 index 9284457..0000000 --- a/people/thomas-a.-christensen-ii/page/6/index.html +++ /dev/null @@ -1,68 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/7/index.html b/people/thomas-a.-christensen-ii/page/7/index.html deleted file mode 100644 index 6597ec2..0000000 --- a/people/thomas-a.-christensen-ii/page/7/index.html +++ /dev/null @@ -1,65 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/8/index.html b/people/thomas-a.-christensen-ii/page/8/index.html deleted file mode 100644 index bb1ab21..0000000 --- a/people/thomas-a.-christensen-ii/page/8/index.html +++ /dev/null @@ -1,69 +0,0 @@ -About -Thomas A. Christensen II -- -Milliron X -
-Milliron X

Milliron X

Photo of Thomas A. Christensen II

Thomas A. Christensen II

-https://millironx.com

Latest Activity

-Subscribe
Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/thomas-a.-christensen-ii/page/9/index.html b/people/thomas-a.-christensen-ii/page/9/index.html deleted file mode 100644 index 68fada7..0000000 --- a/people/thomas-a.-christensen-ii/page/9/index.html +++ /dev/null @@ -1,859 +0,0 @@ - - - - - - - - - - - About - Thomas A. Christensen II - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- -
-
-
- - - - Photo of Thomas A. Christensen II - - - -

- Thomas A. Christensen II -

- - - - - https://millironx.com - - -
-
- -
- - - -

Latest Activity

- - - - - - Subscribe - - - - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpeg -
- - - -
-
- -
- -

Cow Roundup and Loading - September 28, 2014

- - -
- 11 Dec 2014 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

-

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpeg -
- - - -
-
- -
- -

Cow Herding with Magica - 1

- - -
- 04 Dec 2014 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

-

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpeg -
- - - -
-
- -
- -

Cow Herding with Magica - 2

- - -
- 02 Dec 2014 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

-

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpeg -
- - - -
-
- -
- -

The Wild West's Bloopers

- - -
- 01 Dec 2014 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

-

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - - - -
- Thumbnail of thumbnail.jpeg -
- - - -
-
- -
- -

The Wild West Wasn't So Wild After All!

- - -
- 22 Nov 2014 -
- -
- - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - -

-

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

- Read more » -

- - -
-
-
- - - - - - -
-
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/people/thomas-a.-christensen-ii/thumbnail_hu5164275534463841614.jpg b/people/thomas-a.-christensen-ii/thumbnail_hu5164275534463841614.jpg deleted file mode 100644 index 310dc0d..0000000 Binary files a/people/thomas-a.-christensen-ii/thumbnail_hu5164275534463841614.jpg and /dev/null differ diff --git a/people/thomas-a.-christensen-ii/thumbnail_hu7090504081556056618.jpg b/people/thomas-a.-christensen-ii/thumbnail_hu7090504081556056618.jpg deleted file mode 100644 index c6c6200..0000000 Binary files a/people/thomas-a.-christensen-ii/thumbnail_hu7090504081556056618.jpg and /dev/null differ diff --git a/people/tyler-doerksen/feed.xml b/people/tyler-doerksen/feed.xml deleted file mode 100644 index 6a0fd98..0000000 --- a/people/tyler-doerksen/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/2025-03-31T00:14:19+00:00Tyler Doerksen's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/people/tyler-doerksen/index.html b/people/tyler-doerksen/index.html deleted file mode 100644 index 72b461a..0000000 --- a/people/tyler-doerksen/index.html +++ /dev/null @@ -1,51 +0,0 @@ -About -Tyler Doerksen -- -Milliron X -
-Milliron X

Milliron X

Tyler Doerksen

Latest Activity

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/tyler-doerksen/index.xml b/people/tyler-doerksen/index.xml deleted file mode 100644 index 9fe51ed..0000000 --- a/people/tyler-doerksen/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Tyler Doerksen on MillironX - http://localhost:1313/people/tyler-doerksen/ - Recent content in Tyler Doerksen on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/people/tyler-doerksen/page/1/index.html b/people/tyler-doerksen/page/1/index.html deleted file mode 100644 index 4f40183..0000000 --- a/people/tyler-doerksen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/ - \ No newline at end of file diff --git a/people/william-wilson/feed.xml b/people/william-wilson/feed.xml deleted file mode 100644 index 06f9de6..0000000 --- a/people/william-wilson/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/people/william-wilson/2025-03-31T00:14:19+00:00William Wilson's activity on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/people/william-wilson/index.html b/people/william-wilson/index.html deleted file mode 100644 index 8e5515f..0000000 --- a/people/william-wilson/index.html +++ /dev/null @@ -1,49 +0,0 @@ -About -William Wilson -- -Milliron X -
-Milliron X

Milliron X

William Wilson

Latest Activity

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/people/william-wilson/index.xml b/people/william-wilson/index.xml deleted file mode 100644 index 9f9afcc..0000000 --- a/people/william-wilson/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - William Wilson on MillironX - http://localhost:1313/people/william-wilson/ - Recent content in William Wilson on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/people/william-wilson/page/1/index.html b/people/william-wilson/page/1/index.html deleted file mode 100644 index 0d36e52..0000000 --- a/people/william-wilson/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/people/william-wilson/ - \ No newline at end of file diff --git a/posts/baptist-mafia/index.html b/posts/baptist-mafia/index.html deleted file mode 100644 index 7c05c59..0000000 --- a/posts/baptist-mafia/index.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed institutions. No, no, -nothing like that. It’s merely a case of observational reporting, where I’m -poking around the fringes of Baptist culture to get a better understanding of -what makes them tick.

-

As someone who’s spent considerable time within the fold (hello, 20+ years of -being born again), I’ve come to realize that there are certain habits, -practices, and attitudes that seem endemic to Baptist churches. Now, keep in -mind that this isn’t a generalization, but rather an observation born out of -personal experience.

-

One of these habits is an extraordinary level of fervor and zealotry. Baptists -tend to be deeply invested in their faith, often to the point where it borders -on fanaticism. I’ve seen folks who will passionately argue for or against just -about anything that’s perceived as contrary to their interpretation of -scripture. Now, while this can be a laudable trait in moderation, excessive -fervor can quickly turn toxic.

-

Another peculiar habit of Baptist churches is an unsettling preoccupation with -hierarchy and authority. It’s not uncommon to see senior pastors wielding near -absolute power within the church, often based on factors such as age, -experience, or – heaven forbid – personal popularity. This can lead to a culture -where dissenting voices are stifled, and nonconformity is discouraged.

-

The worship services themselves often feel more like formal lectures or -performances than genuinely communal gatherings. Don’t get me wrong; I love a -good hymn or sermon as much as the next person, but sometimes it feels like -you’re trapped in a 90-minute lecture on theology. And if you’re sitting too far -forward, forget about trying to contribute to the conversation – your -participation will be met with stern disapproval.

-

In addition, there’s an omnipresent air of suspicion and mistrust that seems to -pervade every aspect of Baptist life. If someone doesn’t toe the party line, -they’re often met with swift reprimand or outright ostracism. This creates a -toxic environment where people feel pressured into conformity rather than being -encouraged to explore their own spirituality.

-

Of course, there are always exceptions to the rule, just like in any other human -endeavor. I’ve encountered Baptist churches that embody the very opposite of -these described habits – places where worship is genuine, inclusive, and -welcoming, where individual freedom and creativity are cherished, and where the -emphasis is on community rather than control.

-

So what drives this peculiar breed of authoritarianism within some Baptist -churches? Is it a genuine misunderstanding of scripture, or perhaps a result of -historical context? Or is there something deeper at play – perhaps an inherent -tension between the democratic values of American society and the hierarchical -structures of traditional Christianity?

-

These questions are central to my exploration of this topic. I’ll delve into the -complexities of Baptist history, the role of patriarchal ideology, and the ways -in which cultural and social factors have shaped the institution over time.

-

In conclusion, while I’m not ready to declare war on all things Baptist just yet -(although, I must admit, it’s tempting), I do hope that this exploration will -shed some light on a fascinating aspect of American religiosity. Perhaps, -through a better understanding of these peculiar habits and practices, we can -foster a more inclusive and compassionate community – one where faith and -conviction are tempered by empathy and respect for differing viewpoints.

-

Ultimately, as someone who’s found their own spiritual home within the Baptist -fold, I believe it’s essential to approach this conversation with sensitivity, -curiosity, and an open mind. By embracing our shared humanity rather than -perpetuating artificial divisions, we can work towards creating a more vibrant -tapestry of faith in America – one that celebrates diversity while remaining -committed to core principles of love and service.

-

But for now, I’ll leave you with these final thoughts on Baptist habits – habits -that may seem baffling or even disturbing at times, but are ultimately part of -what makes the Baptist experience so richly textured.

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/feed.xml b/posts/feed.xml deleted file mode 100644 index 23e2378..0000000 --- a/posts/feed.xml +++ /dev/null @@ -1 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/posts/2025-03-31T00:14:19+00:00ChemE Cows on Milliron X \ No newline at end of file diff --git a/posts/history-of-medicine/index.html b/posts/history-of-medicine/index.html deleted file mode 100644 index 83e13b5..0000000 --- a/posts/history-of-medicine/index.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - - - - - A Brief History of Medicine (2438) - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to extend his lifespan by several decades.

-

As a young physician, it was exhilarating to be part of a field that seemed to -have no limits. We were constantly pushing the boundaries of what was thought -possible, and it showed in our results. Patients who would have been doomed -years ago were now thriving, thanks to advances in medicine.

-

But as with any rapidly advancing field, there were also risks involved. The use -of nanorobots and AI algorithms raised concerns about accountability and -transparency. As a physician, I had to be careful to ensure that my actions were -guided by the highest ethical standards.

-

The years that followed were marked by incredible breakthroughs in medicine. -Diseases that had plagued humanity for centuries began to disappear as -treatments became more effective. Cancer, in particular, was a major target for -researchers, and significant progress was made in understanding its causes and -developing targeted therapies.

-

One of the most exciting developments in this area was the discovery of a new -type of cancer-killing nanobot that could selectively target and destroy tumor -cells while leaving healthy tissue intact. The technology was still in its -infancy, but the potential it held was enormous.

-

As I look back on those early years of my career, I am reminded of the -importance of perseverance and creativity. Medicine is a field that requires -constant innovation and adaptation, and it takes a lot of hard work to stay -ahead of the curve.

-

Over time, medicine evolved to become an integral part of daily life. People -began to live longer, healthier lives, thanks to advances in preventative care -and personalized medicine. The rise of genomics and precision medicine allowed -for tailored treatments that could be customized to individual needs.

-

As a physician, I had the privilege of witnessing firsthand the impact that -these advancements had on people’s lives. Patients who would have been confined -to beds for years were now able to return to their normal activities, thanks to -the latest treatments.

-

But with all the progress we made, there were also new challenges that emerged. -The increasing reliance on technology led to concerns about the ethics of -medicine. As medical robots and AI algorithms took over more tasks, there were -questions about accountability and the role of human physicians in this new -landscape.

-

These debates are ongoing to this day. As a physician, it’s essential for me to -stay up-to-date with the latest developments and advancements in my field. By -doing so, I can ensure that patients receive the best possible care, while also -navigating the complex issues surrounding medicine in the 24th century.

-

Fast forward to 2438, and medicine has changed dramatically. Diseases have -become a rarity, thanks to breakthroughs in biotechnology and genetic -engineering. Humans live longer, healthier lives, with an average lifespan of -over 120 years.

-

Despite these advancements, there are still challenges to overcome. The -increasing reliance on AI and biotechnology has raised concerns about the ethics -of medicine. Many people worry that as medical robots and algorithms take over -more tasks, human physicians will become obsolete.

-

However, I firmly believe that this is a misconception. As a physician in 2438, -I can attest that being a doctor still requires a deep understanding of human -biology, psychology, and sociology. While technology has certainly advanced -medicine, there are also skills and qualities that cannot be replicated by -machines alone.

-

One of the most critical aspects of being a doctor is empathy. As a human being, -you need to understand your patients’ emotional states, their fears and -anxieties, in order to provide them with effective care. This is something that -AI systems struggle to replicate, no matter how advanced they become.

-

In my practice, I see patients who have been diagnosed with conditions that were -previously considered incurable. Cancer, for example, has all but disappeared -thanks to targeted therapies and immunotherapies. However, there are still other -challenges to overcome.

-

As a physician, it’s essential to stay informed about the latest developments in -medicine. This includes understanding how new technologies can be used to -improve patient outcomes, as well as addressing any concerns or fears that -patients may have regarding these advancements.

-

One of the most significant breakthroughs in recent years has been the -development of advanced bioprinting techniques. These allow for the creation of -complex tissue structures and organs, which can then be transplanted into -patients who require them.

-

The potential applications for this technology are vast. It could revolutionize -organ transplantation, allowing for more efficient use of donor organs and -reducing the need for long-term immunosuppression treatments.

-

However, there are also concerns about the ethics of bioprinting. As with any -new technology, there are questions about accountability, safety, and the role -of human physicians in this process.

-

Despite these challenges, I remain optimistic about the future of medicine. As a -physician in 2438, I’ve seen firsthand the incredible progress that has been -made, and I’m excited to see what the next generation of medical breakthroughs -will bring.

-

One area of particular interest is the development of new treatments for mental -health disorders. In my practice, I often encounter patients who struggle with -anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions -are complex and multifaceted, and it’s essential to develop treatments that -address all aspects of their impact.

-

Recently, there has been a significant breakthrough in the development of new -therapies for mental health disorders. A team of researchers has made -significant progress in understanding the underlying mechanisms of these -conditions, and this has led to the development of new treatments that are more -effective than anything that came before.

-

The treatment is based on the idea that mental health disorders are not just -symptoms, but rather a manifestation of an imbalance in the body’s natural -chemistry. By developing targeted therapies that address this imbalance, -researchers have been able to create medications that can effectively treat a -wide range of conditions.

-

One of the most promising developments in this area is the use of -neurotransmitter modulators. These are small molecules that can be used to -regulate the balance of neurotransmitters in the brain, which play a critical -role in regulating mood and emotional states.

-

The implications for mental health treatment are enormous. For the first time in -history, we have a class of medications that could potentially treat multiple -conditions at once. This is a game-changer for patients who suffer from complex -mental health disorders, and it’s a testament to the power of medical research.

-

As I look back on my career as a physician, I am reminded of the importance of -perseverance and creativity. Medicine is a field that requires constant -innovation and adaptation, and it takes a lot of hard work to stay ahead of the -curve.

-

Despite all the progress we’ve made, there are still challenges to overcome. The -increasing reliance on technology raises concerns about accountability and -transparency, as well as questions about the role of human physicians in this -new landscape.

-

These debates will likely continue for years to come. As a physician, it’s -essential for me to stay informed about the latest developments in medicine, -while also addressing any concerns or fears that patients may have regarding -these advancements.

-

Ultimately, my goal is to provide the best possible care to my patients, while -also pushing the boundaries of what’s thought possible in this field. As a -doctor in 2438, I am excited to see what the future holds for medicine, and I am -confident that we will continue to make tremendous progress in the years ahead.

-

}}

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/index.html b/posts/index.html deleted file mode 100644 index 3d61566..0000000 --- a/posts/index.html +++ /dev/null @@ -1,27 +0,0 @@ -ChemE Cows -- -Milliron X -
-Milliron X

Milliron X

ChemE Cows
A blog about cattle, technology, or anything remotely affecting either of them

A blog where I might post stuff some day.

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/posts/index.xml b/posts/index.xml deleted file mode 100644 index 1f55004..0000000 --- a/posts/index.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - ChemE Cows on MillironX - http://localhost:1313/posts/ - Recent content in ChemE Cows on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/posts/keep-epds-real/index.html b/posts/keep-epds-real/index.html deleted file mode 100644 index 6c8af39..0000000 --- a/posts/keep-epds-real/index.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - - - Keep EPDs Real - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain -traits. Think of it like trying to guess what your favorite cow’s children will -look like based on their parents’ characteristics. In genetics, we call this -inheritance – and EPDs are a simple yet powerful tool to help us understand how -genetic traits are passed down.

-

The Basics of Genetics

-

Before diving into EPDs, let’s quickly review the basics of genetics. You see, -every living thing has DNA (deoxyribonucleic acid), which contains the -instructions for its development and function. The DNA is made up of genes, -which code for specific traits like eye color, hair color, or in our case, milk -production.

-

Genes are like recipes that tell our bodies what to make – but instead of -ingredients like flour and sugar, they’re made up of nucleotides. These -nucleotides can be either A (adenine), C (cytosine), G (guanine), or T -(thymine). The sequence of these nucleotides determines the genetic information.

-

How EPDs Work

-

Now that we’ve covered some basics, let’s talk about how EPDs work. Imagine -you’re breeding two cows, Bessie and Daisy, to produce offspring. You want -Bessie to pass on her desirable traits, like excellent milk production, to their -children.

-

To predict which calf will inherit these traits, you’d look at the genetic -information of both parents. You’d then use a complex formula that takes into -account the genetic potential of each parent and their offspring’s genotype (the -actual DNA sequence). This gives you an Expected Progeny Difference score – -which represents how much better or worse the trait is expected to be in the -offspring compared to the parent.

-

For example, let’s say Bessie has a high EPD for milk production, but Daisy has -a low EPD. The formula would take into account both parents’ scores and predict -that their calf will have an average EPD for milk production.

-

Benefits of EPDs

-

So why do we need EPDs? In short, they help us make informed decisions about -breeding. By knowing which traits are being passed down from one generation to -the next, we can:

-
    -
  1. Make better breeding choices
  2. -
  3. Predict potential problems or improvements in future generations
  4. -
  5. Develop more accurate breeding strategies
  6. -
-

But that’s not all – EPDs also have a significant impact on the cattle industry -as a whole. By using data-driven approaches, breeders and farmers can:

-
    -
  1. Increase efficiency and reduce costs
  2. -
  3. Improve animal welfare by selecting for desirable traits
  4. -
  5. Support sustainable agriculture practices
  6. -
-

Challenges with EPDs

-

While EPDs offer many benefits, there are also some challenges to consider:

-
    -
  1. Data quality: If the data used to calculate EPDs is inaccurate or incomplete, -it can lead to incorrect predictions.
  2. -
  3. Complex genetics: Genetic inheritance can be complex, making it difficult to -predict how certain traits will manifest in offspring.
  4. -
  5. Selection bias: Breeders may unconsciously favor certain breeds or animals -due to personal preferences rather than objective genetic data.
  6. -
-

Staying Up-to-Date with EPD Research

-

EPDs are constantly evolving as new research emerges and technology improves. To -stay informed, it’s essential to:

-
    -
  1. Follow industry publications and scientific journals
  2. -
  3. Attend workshops and conferences on genetics and EPDs
  4. -
  5. Network with other breeders and researchers in the field
  6. -
-

Conclusion

-

In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for -cattle breeders. By understanding how genetic traits are passed down through -generations, we can make more informed decisions about breeding and improve -animal welfare.

-

Remember – keeping EPDs real means staying current with the latest research, -attending workshops, and networking with experts in the field. With these -skills, you’ll be well on your way to becoming a genetics-savvy breeder!

-

As always, I’m grateful for this opportunity to share my passion for cattle -breeding and genetics with you – whether it’s through EPDs or something entirely -different!

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/nf-core/index.html b/posts/nf-core/index.html deleted file mode 100644 index 6201819..0000000 --- a/posts/nf-core/index.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - - My Troubles with nf-core - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way nf-core is currently structured and -maintained.

-

Background

-

NF-core (short for Next-Generation Sequencing Core) is an open-source framework -developed by the Broad Institute of MIT and Harvard that provides a -comprehensive set of tools for analyzing high-throughput sequencing data. The -platform has been widely adopted in the scientific community due to its ease of -use, scalability, and flexibility.

-

My Experience with nf-core

-

As a bioinformatician, I have worked extensively with various pipelines built on -top of nf-core, including the popular -SNEAK pipeline for variant discovery. -While nf-core has provided me with a reliable platform for analyzing large -datasets, I have consistently encountered issues with its organization, -documentation, and community support.

-

Issues with Organization

-

One of my biggest frustrations with nf-core is the lack of clear organization -within its repository. The project’s main directory contains an overwhelming -number of subdirectories, each representing a different tool or pipeline. This -makes it difficult to navigate the codebase and understand how the various tools -interact with each other.

-

Documentation and Community Support

-

NF-core has excellent documentation, but in my experience, this documentation is -often incomplete or outdated. I have encountered several instances where I was -unable to find relevant information about a particular tool or pipeline, leading -me to waste hours of time searching for answers online.

-

Moreover, the nf-core community has historically been relatively inactive, with -few developers actively contributing to the project over the years. This lack of -support and resources makes it challenging to address issues or implement new -features.

-

Impact on Bioinformaticians

-

Despite my personal frustrations with nf-core, I firmly believe that this -platform remains an essential tool for bioinformaticians around the world. The -benefits of using nf-core include its scalability, flexibility, and ease of use. -However, I strongly advocate for a renewed focus on addressing the issues -mentioned above to ensure that this platform continues to meet the evolving -needs of the scientific community.

-

Conclusion

-

As someone who has dedicated their career to bioinformatics, it pains me to see -a project like nf-core hindered by its own structure and lack of support. While -I will continue to contribute to and use nf-core in my work, I hope that this -article will serve as a catalyst for the developers and community leaders -involved in maintaining this platform to prioritize much-needed changes.

-

Recommendations

-

To address the issues I have raised above, I recommend the following steps:

-
    -
  • Reorganize the repository structure to make it more logical and easier to -navigate.
  • -
  • Update and expand the documentation to include comprehensive information on -all tools and pipelines within nf-core.
  • -
  • Foster a more active community by engaging with bioinformaticians through -regular forums, workshops, or online events.
  • -
-

By addressing these issues, I am confident that nf-core can continue to thrive -as a powerful tool for analyzing high-throughput sequencing data.

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/page/1/index.html b/posts/page/1/index.html deleted file mode 100644 index 4d6774f..0000000 --- a/posts/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/posts/ - \ No newline at end of file diff --git a/posts/page/2/index.html b/posts/page/2/index.html deleted file mode 100644 index 4e60d9f..0000000 --- a/posts/page/2/index.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - - - - ChemE Cows - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - -
-
-
-

- - ChemE Cows
A blog about cattle, technology, or anything remotely affecting either of them - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/phineas-and-ferb/index.html b/posts/phineas-and-ferb/index.html deleted file mode 100644 index 6869f01..0000000 --- a/posts/phineas-and-ferb/index.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - - - Phineas and Ferb is (an) Epic - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological narratives found in cultures around the world. In contrast, Phineas -and Ferb’s episode structure is centered around self-contained events or -journeys that are more reminiscent of ancient epics like Homer’s Iliad or -Odyssey.

-

“A common theme among ancient epics was the overcoming of challenges.” One key -element that sets Phineas and Ferb apart from modern hero’s journey novels is -its focus on the adventures themselves rather than individual characters' -emotional journeys. In an episode like “The Fireworks Episode,” Phineas and Ferb -work together to create a spectacular fireworks display, but their actions are -not necessarily motivated by personal growth or transformation. Instead, they -take on the challenge as a way to have fun and make their day better.

-

“This approach is similar to ancient epics like The Iliad, which tells the story -of the Trojan War.” In Homer’s Iliad, the characters are often driven by a -desire for honor or personal glory, rather than a deeper emotional journey. The -focus is on the event itself – in this case, the war between Troy and Greece – -rather than the individual characters’ inner lives.

-

“The Phineas and Ferb approach also avoids the ‘big reveal’ trope.” Another key -element of ancient epics was often a dramatic twist or revelation at the end. In -Homer’s Odyssey, for example, the protagonist Odysseus must navigate his way -home after being stranded on a distant island. The final scene reveals that he -has finally returned to Ithaca and is reunited with his wife.

-

“Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.” -In contrast, Phineas and Ferb tends to wrap up its storylines in a way that -feels satisfying and fun for the audience. The final scene of an episode often -shows Phineas and Ferb achieving their goal or finding a creative solution to -their problem, without revealing any deeper truths or secrets.

-

“This approach also reflects the show’s focus on creativity and imagination.” -One key aspect of ancient epics was their emphasis on the power of the human -mind and imagination. In Homer’s Odyssey, for example, Odysseus uses his -intelligence and cunning to navigate his way home.

-

“Phineas and Ferb encourages viewers to think creatively in a similar way.” -Phineas and Ferb is known for its emphasis on creativity and imagination, with -characters often coming up with innovative solutions to problems. The show’s -focus on the creative process itself – rather than individual characters’ -emotional journeys – reflects this emphasis.

-

“By following an episode structure that mimics ancient literary epics.” Phineas -and Ferb’s use of self-contained events or journeys, combined with a focus on -creativity and imagination, reflects a more traditional approach to -storytelling. By avoiding the ‘big reveal’ trope and emphasizing the creative -process, the show encourages viewers to think creatively and find their own -solutions to problems.

-

“This is an approach that has been lost in many modern adaptations of ancient -stories.” One criticism of modern hero’s journey novels is that they often -prioritize individual character development over the adventures themselves. In -contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing -on the events themselves rather than individual characters’ emotional journeys.

-

“The show’s creators have said that they were influenced by their own love of -literature.” Dan Povenmire and Jeff ‘Swifty’ Swinton, the creators of Phineas -and Ferb, have both mentioned being influenced by classic literature when -creating the show. They have stated that they wanted to create a show that -celebrated creativity and imagination in a way that was reminiscent of ancient -epics.

-

“By taking an epic approach to storytelling.” By following an episode structure -that mimics ancient literary epics, Phineas and Ferb offers a unique take on the -traditional ‘hero’s journey’ narrative. While individual characters may grow or -change over the course of an episode, the focus is always on the event itself – -rather than individual emotional journeys.

-

“This approach makes the show feel fresh and exciting.” One key element that -sets Phineas and Ferb apart from modern hero’s journey novels is its focus on -action and adventure. By emphasizing the creative process and self-contained -events, the show creates a sense of excitement and possibility that is rare in -modern television.

-

“The show’s use of music also reflects an epic approach.” Another key element of -Phineas and Ferb is its use of music – specifically, Perry the Platypus’ secret -agent theme song. The show’s creators have said that they wanted to incorporate -a musical element into the episode structure, creating a sense of excitement and -anticipation that is reminiscent of ancient epics.

-

“This approach creates a sense of rhythm and flow.” By incorporating music in -this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to -ancient epics. The show’s use of melody and tempo helps to create a sense of -tension and release, drawing the viewer into the episode’s narrative.

-

“The show’s focus on action and adventure also makes it feel epic.” One key -element that sets Phineas and Ferb apart from modern hero’s journey novels is -its focus on action and adventure. By emphasizing creativity and imagination in -this way, the show creates a sense of excitement and possibility that is rare in -modern television.

-

“This approach also makes the show feel more timeless.” Another key element of -Phineas and Ferb is its focus on storytelling itself – rather than individual -characters’ emotional journeys. By taking an epic approach to storytelling, the -show creates a sense of timelessness that is rare in modern television.

-

“The show’s creators have said that they wanted to create a show that would -appeal to viewers of all ages.” Dan Povenmire and Jeff ‘Swifty’ Swinton, the -creators of Phineas and Ferb, have both mentioned wanting to create a show that -celebrates creativity and imagination in a way that is accessible to audiences -of all ages.

-

“By taking an epic approach to storytelling, Phineas and Ferb achieves this -goal.” By following an episode structure that mimics ancient literary epics, -Phineas and Ferb creates a sense of excitement and possibility that is appealing -to viewers of all ages. The show’s focus on creativity and imagination makes it -feel fresh and exciting, while its use of music and storytelling techniques -helps to create a sense of rhythm and flow.

-

“In conclusion, the episode structure of Phineas and Ferb is more closely -aligned with ancient literary epics than modern hero’s journey novels.” By -taking an epic approach to storytelling, Phineas and Ferb offers a unique take -on the traditional ‘hero’s journey’ narrative. While individual characters may -grow or change over the course of an episode, the focus is always on the event -itself – rather than individual emotional journeys.

-

“The show’s creators have said that they were influenced by their own love of -literature.” Dan Povenmire and Jeff ‘Swifty’ Swinton, the creators of Phineas -and Ferb, have both mentioned being influenced by classic literature when -creating the show. They have stated that they wanted to create a show that -celebrated creativity and imagination in a way that was reminiscent of ancient -epics.

-

“By following an epic approach to storytelling.” By taking an epic approach to -storytelling, Phineas and Ferb offers a unique take on the traditional ‘hero’s -journey’ narrative. While individual characters may grow or change over the -course of an episode, the focus is always on the event itself – rather than -individual emotional journeys.

-

“This approach makes the show feel fresh and exciting.” One key element that -sets Phineas and Ferb apart from modern hero’s journey novels is its focus on -action and adventure. By emphasizing creativity and imagination in this way, the -show creates a sense of excitement and possibility that is rare in modern -television.

-

“The show’s use of music also reflects an epic approach.” Another key element of -Phineas and Ferb is its use of music – specifically, Perry the Platypus’ secret -agent theme song. The show’s creators have said that they wanted to incorporate -a musical element into the episode structure, creating a sense of excitement and -anticipation that is reminiscent of ancient epics.

-

“This approach creates a sense of rhythm and flow.” By incorporating music in -this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to -ancient epics. The show’s use of melody and tempo helps to create a sense of -tension and release, drawing the viewer into the episode’s narrative.

-

“The show’s focus on action and adventure also makes it feel epic.” One key -element that sets Phineas and Ferb apart from modern hero’s journey novels is -its focus on action and adventure. By emphasizing creativity and imagination in -this way, the show creates a sense of excitement and possibility that is rare in -modern television.

-

“The show also encourages viewers to think creatively.” Phineas and Ferb -encourages viewers to think creatively by presenting them with complex problems -to solve or adventures to embark upon. By emphasizing creativity and -imagination, the show inspires viewers to find their own solutions to problems.

-

“This is an approach that has been lost in many modern adaptations of ancient -stories.” One criticism of modern hero’s journey novels is that they often -prioritize individual character development over the adventures themselves. In -contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing -on the events themselves rather than individual characters’ emotional journeys.

-

“The show’s creators have said that they wanted to create a show that would -appeal to viewers of all ages.” Dan Povenmire and Jeff ‘Swifty’ Swinton, the -creators of Phineas and Ferb, have both mentioned wanting to create a show that -celebrates creativity and imagination in a way that is accessible to audiences -of all ages.

-

“By taking an epic approach to storytelling.” By following an episode structure -that mimics ancient literary epics, Phineas and Ferb achieves this goal. The -show’s focus on creativity and imagination makes it feel fresh and exciting, -while its use of music and storytelling techniques helps to create a sense of -rhythm and flow.

-

“In conclusion, the episode structure of Phineas and Ferb is more closely -aligned with ancient literary epics than modern hero’s journey novels.” In -conclusion, the episode structure of Phineas and Ferb is more closely aligned -with ancient literary epics than modern hero’s journey novels.

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/posts/thumbnail_hu3392630905686566864.jpg b/posts/thumbnail_hu3392630905686566864.jpg deleted file mode 100644 index d9854e5..0000000 Binary files a/posts/thumbnail_hu3392630905686566864.jpg and /dev/null differ diff --git a/posts/why-i-gave-up-github/index.html b/posts/why-i-gave-up-github/index.html deleted file mode 100644 index 56874ff..0000000 --- a/posts/why-i-gave-up-github/index.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - - - - - Why I gave up GitHub: A personal retrospective - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business model. The platform’s emphasis on open-source and -community-driven development seemed at odds with my own values of intellectual -property and personal autonomy.

-

One day, while working on a project, I stumbled upon an article about the -growing pains of GitHub’s dominance in the tech industry. It highlighted the -tension between the need for collaboration and the perils of unchecked corporate -power. Something clicked inside me, and I realized that I couldn’t remain silent -anymore. I began to question whether my use of GitHub was truly aligning with my -values.

-

As a Christian, I had always believed in the importance of living a life of -integrity and authenticity. But the more I learned about GitHub’s practices, the -more I felt like I was compromising on those principles. The platform’s reliance -on open-source code seemed to prioritize the interests of corporations over -those of individuals. It was a hard pill to swallow.

-

So, I made the decision to take a stand. I began to explore alternative -platforms and tools for my work, seeking out options that better aligned with my -values. It wasn’t easy – it meant relearning new skills, investing time and -effort into building new relationships within the developer community.

-

But as I dug deeper, I realized that quitting GitHub wasn’t just about -technology – it was about re-examining my own motivations and priorities. Why -had I joined GitHub in the first place? What did I hope to achieve through my -work?

-

For me, it was never truly about the technology itself, but about the community -and the sense of purpose that came with working on projects that mattered. As a -filmmaker at heart, I had always been drawn to stories that explored complex -issues and promoted empathy and understanding.

-

Quitting GitHub wasn’t an easy decision, but it was one that ultimately freed me -from feeling like I was compromising my values. It forced me to confront the -tension between my desires for connection and collaboration, and the need for -personal autonomy.

-

Today, I work on a range of projects using alternative platforms and tools. It’s -not always easy – sometimes I miss the convenience and community of GitHub – but -it’s worth it to know that I’m living more authentically.

-

One of the biggest challenges has been building new relationships within the -developer community. In the past, I relied heavily on GitHub for collaboration -and networking opportunities. But by leaving, I’ve had to start from scratch.

-

It’s taken time and effort to rebuild those connections, but it’s worth it. -Today, I’m part of a vibrant network of developers who share my values and -priorities. We work together on projects that truly matter – issues like data -privacy, intellectual property, and accessibility.

-

Quitting GitHub wasn’t just about technology – it was about reclaiming my own -integrity and living out my values in a more meaningful way. It’s been a journey -of self-discovery, growth, and transformation. And I’m grateful for every step -along the way.

-

So, if you’re like me and struggling with the tension between your personal -values and your work choices, I want to encourage you to take a step back and -re-examine your own motivations. What are you working towards? Why is it truly -important to you?

-

Take the time to reflect on those questions, and consider whether your current -tools and platforms align with your values.

-

In my experience, it’s never too late to make a change. And sometimes, the -biggest changes come from taking small steps outside of our comfort zones.

-

So, I’ll leave you with this: if you’re ready to take control of your own -journey and reclaim your integrity, start by taking a single step. It might be -as simple as switching to an alternative platform or tool. Or it could mean -having a difficult conversation with a colleague or manager.

-

Whatever that step is, know that it’s worth it. You’ll be surprised at how -empowering it feels to take ownership of your own choices and priorities.

-

And if you’re feeling lost or uncertain, remember that you’re not alone. There -are many people out there who share your values and aspirations.

-

Let’s build a community together – one where we prioritize empathy, -understanding, and authenticity.

-

That’s my story – a tale of disillusionment, rededication, and the power of -taking control of our own choices. I hope it inspires you to take a step in the -right direction.

-

As a filmmaker at heart, I believe that stories have the power to shape us and -inspire change. And I’m grateful to be part of this community – working together -towards a brighter future where technology serves humanity, not just corporate -interests.

-

We’ll get there – one small step at a time.

- -
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/qr_16b650478b82ca3d.png b/qr_16b650478b82ca3d.png deleted file mode 100644 index 458f122..0000000 Binary files a/qr_16b650478b82ca3d.png and /dev/null differ diff --git a/qr_7bfa4341b1db6c0c.png b/qr_7bfa4341b1db6c0c.png deleted file mode 100644 index 34f6cc0..0000000 Binary files a/qr_7bfa4341b1db6c0c.png and /dev/null differ diff --git a/qr_9827beb0a644482e.png b/qr_9827beb0a644482e.png deleted file mode 100644 index 8a936e1..0000000 Binary files a/qr_9827beb0a644482e.png and /dev/null differ diff --git a/qr_c277fb58fceb342.png b/qr_c277fb58fceb342.png deleted file mode 100644 index adb5de1..0000000 Binary files a/qr_c277fb58fceb342.png and /dev/null differ diff --git a/qr_e2cc51dc926e84f.png b/qr_e2cc51dc926e84f.png deleted file mode 100644 index 905ee8b..0000000 Binary files a/qr_e2cc51dc926e84f.png and /dev/null differ diff --git a/scripts/phone-masking.min.js b/scripts/phone-masking.min.js deleted file mode 100644 index 2c306b4..0000000 --- a/scripts/phone-masking.min.js +++ /dev/null @@ -1 +0,0 @@ -function maskPhoneNumber(e){e.addEventListener("input",function(e){var t=e.target.value.replace(/\D/g,"").match(/(\d{0,3})(\d{0,3})(\d{0,4})/);e.target.value=t[2]?"("+t[1]+") "+t[2]+(t[3]?"-"+t[3]:""):t[1]})}var phoneInput=document.getElementById("phone");maskPhoneNumber(phoneInput) \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml deleted file mode 100644 index 9ddae8f..0000000 --- a/sitemap.xml +++ /dev/null @@ -1 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/tags/biojulia/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/categories/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/categories/code/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/tags/docker/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/tags/julia/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/people/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/tags/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/2025-03-15T21:22:22-05:00https://millironx.millironx.page/@indiewebpub/posts/2024-11-01T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/academia/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/bob-gentry/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/academia/bpv-genetics/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/academia/got-warts-naab/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/categories/poster/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/categories/presentation/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/rachel-palinski/2024-09-19T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/andrea-lu/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/dana-mitzel/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/next-generation-sequencing/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/pipeline/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/quasispecies/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/steven-stancic/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/virus/2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/william-wilson/2024-03-05T00:00:00+00:00https:/millironx.millironx.page/@indiewebpub/academia/yavsap/yavsap.pdf2024-03-05T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/christian-veterinary-mission/2023-11-07T00:48:13+00:00https://millironx.millironx.page/@indiewebpub/tags/promotion/2023-11-07T00:48:13+00:00https://millironx.millironx.page/@indiewebpub/tags/real-life-real-impact/2023-11-07T00:48:13+00:00https://millironx.millironx.page/@indiewebpub/categories/video/2023-11-07T00:48:13+00:00https://millironx.millironx.page/@indiewebpub/tags/genomics/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/maxime-borry/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/nf-core-community/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/categories/paper/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/tanja-normark/2023-10-23T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/contact/2023-07-01T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/diffusion/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/hydrogels/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/ionic-strength/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/polymers/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/transport-properties/2022-09-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jamie-henningson/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jianfa-bai/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/lance-noll/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/porcine-enteric-disease/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/porcine-rotavirus/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/rotavirus/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/virome/2022-04-27T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/html/2022-04-06T19:32:52+00:00https://millironx.millironx.page/@indiewebpub/tags/template-engine/2022-04-06T19:32:52+00:00https://millironx.millironx.page/@indiewebpub/tags/beef-cattle/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/blup/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/expected-breeding-values/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/expected-progeny-differences/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/keepepdsreal/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/predicted-transmitting-abilities/2021-08-09T19:10:22-05:00https://millironx.millironx.page/@indiewebpub/tags/bioremediation/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/chemical-engineering/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/hydrogel-polymers/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/polyoxometalate/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/proton-transport/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/categories/thesis/2020-08-07T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/gestation/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/2019-06-12T00:00:00+00:00https:/millironx.millironx.page/@indiewebpub/academia/metagenomics/metagenomics_analysis_of_rumen_populations.pdf2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/metagenomics/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/microbiome/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/rumen/2019-06-12T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/aiche/2019-05-14T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/microbial-electrolysis-cells/2019-05-14T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/radiation/2019-05-14T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jonathan-counts/2018-10-29T00:00:00+00:00https:/millironx.millironx.page/@indiewebpub/academia/pva-aiche/measuring_diffusion_of_trichloroethylene.pdf2018-10-29T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/2018-10-29T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/academia/how-to-build-a-cow-cud-fuel-cell/2018-08-01T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/academia/pva-inbre/2018-07-31T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/4-h/2016-11-13T00:28:26+00:00https://millironx.millironx.page/@indiewebpub/tags/agriculture/2016-11-13T00:28:26+00:00https://millironx.millironx.page/@indiewebpub/tags/albany-county-fair/2016-11-13T00:28:26+00:00https://millironx.millironx.page/@indiewebpub/tags/gopro/2016-11-13T00:28:26+00:00https://millironx.millironx.page/@indiewebpub/tags/outtakes/2016-11-07T21:11:02+00:00https://millironx.millironx.page/@indiewebpub/people/amanda-christensen/2015-12-15T11:20:23+00:00https://millironx.millironx.page/@indiewebpub/tags/artificial-insemination/2015-12-15T11:20:23+00:00https://millironx.millironx.page/@indiewebpub/tags/cattle/2015-12-15T11:20:23+00:00https://millironx.millironx.page/@indiewebpub/tags/ranching/2015-07-10T18:23:48+00:00https://millironx.millironx.page/@indiewebpub/tags/wyoming/2015-07-10T18:23:48+00:00https://millironx.millironx.page/@indiewebpub/tags/-disease/2015-06-12T11:58:14+00:00https://millironx.millironx.page/@indiewebpub/tags/mocumentary/2015-06-12T11:58:14+00:00https://millironx.millironx.page/@indiewebpub/tags/4-h-carnival/2015-03-20T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/albany-county-4-h/2015-03-20T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/marti-gras/2015-03-20T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/rubber-band-guns/2015-03-20T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/shooting-gallery/2015-03-20T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/firearms/2015-02-16T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/reloading/2015-02-16T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/repetition/2015-02-16T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/haying/2015-02-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/christmas/2014-12-26T15:45:36+00:00https://millironx.millironx.page/@indiewebpub/tags/winter/2014-12-26T15:45:36+00:00https://millironx.millironx.page/@indiewebpub/tags/cows/2014-12-11T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/horseriding/2014-12-04T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/herding/2014-12-02T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/bloopers/2014-12-01T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/colette-christensen/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/documentary/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/history/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/malea-christensen/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/tags/wild-west/2014-11-22T00:00:00+00:00https://millironx.millironx.page/@indiewebpub/blogroll/ \ No newline at end of file diff --git a/CNAME b/static/CNAME similarity index 100% rename from CNAME rename to static/CNAME diff --git a/anatomy-quiz.html b/static/anatomy-quiz.html similarity index 100% rename from anatomy-quiz.html rename to static/anatomy-quiz.html diff --git a/docker-name.html b/static/docker-name.html similarity index 100% rename from docker-name.html rename to static/docker-name.html diff --git a/favicon.ico b/static/favicon.ico similarity index 100% rename from favicon.ico rename to static/favicon.ico diff --git a/static/images/saddles.jpg b/static/images/saddles.jpg new file mode 100644 index 0000000..538f5e3 Binary files /dev/null and b/static/images/saddles.jpg differ diff --git a/styles/millironx.min.css b/styles/millironx.min.css deleted file mode 100644 index 0b6f37e..0000000 --- a/styles/millironx.min.css +++ /dev/null @@ -1,15 +0,0 @@ -:root{color-scheme:light dark;--ear-tag-red-1:oklch(97.5% 0.016 35.7);--ear-tag-red-2:oklch(95.9% 0.027 37.7);--ear-tag-red-3:oklch(91.8% 0.055 33.4);--ear-tag-red-4:oklch(84% 0.092 29.8);--ear-tag-red-5:oklch(80% 0.123 29.8);--ear-tag-red-6:oklch(71% 0.146 29.8);--ear-tag-red-7:oklch(66% 0.154 29.8);--ear-tag-red-8:oklch(58% 0.162 29.8);--ear-tag-red-9:oklch(53% 0.154 29.8);--ear-tag-red-10:oklch(49% 0.146 29.8);--ear-tag-red-11:oklch(42% 0.131 29.8);--ear-tag-red-12:oklch(35% 0.115 29.8);--ear-tag-red-13:oklch(27% 0.092 29.8);--ear-tag-red-14:oklch(20% 0.07 29.8);--ear-tag-red-15:oklch(16% 0.054 29.8);--ear-tag-red-16:oklch(10% 0.039 29.8);--ear-tag-red:var(--ear-tag-red-12);--swiss-brown-1:oklch(98% 0.011 67.7);--swiss-brown-2:oklch(97% 0.023 67.7);--swiss-brown-3:oklch(93% 0.039 67.7);--swiss-brown-4:oklch(84% 0.046 67.7);--swiss-brown-5:oklch(80% 0.061 67.7);--swiss-brown-6:oklch(71% 0.072 67.7);--swiss-brown-7:oklch(66% 0.076 67.7);--swiss-brown-8:oklch(58% 0.08 67.7);--swiss-brown-9:oklch(53% 0.076 67.7);--swiss-brown-10:oklch(49% 0.072 67.7);--swiss-brown-11:oklch(42% 0.065 67.7);--swiss-brown-12:oklch(35% 0.057 67.7);--swiss-brown-13:oklch(27% 0.046 67.7);--swiss-brown-14:oklch(20% 0.035 67.7);--swiss-brown-15:oklch(16% 0.027 67.7);--swiss-brown-16:oklch(10% 0.019 67.7);--swiss-brown:var(--swiss-brown-12);--prickly-pear-yellow-1:oklch(98% 0.017 94.5);--prickly-pear-yellow-2:oklch(97% 0.035 94.5);--prickly-pear-yellow-3:oklch(93% 0.059 94.5);--prickly-pear-yellow-4:oklch(84% 0.07 94.5);--prickly-pear-yellow-5:oklch(80% 0.093 94.5);--prickly-pear-yellow-6:oklch(71% 0.11 94.5);--prickly-pear-yellow-7:oklch(66% 0.116 94.5);--prickly-pear-yellow-8:oklch(58% 0.122 94.5);--prickly-pear-yellow-9:oklch(53% 0.116 94.5);--prickly-pear-yellow-10:oklch(49% 0.11 94.5);--prickly-pear-yellow-11:oklch(42% 0.099 94.5);--prickly-pear-yellow-12:oklch(35% 0.083 93.6);--prickly-pear-yellow-13:oklch(27.1% 0.064 92.8);--prickly-pear-yellow-14:oklch(20% 0.047 92.4);--prickly-pear-yellow-15:oklch(16% 0.038 93.3);--prickly-pear-yellow-16:oklch(10% 0.024 89.7);--prickly-pear-yellow:var(--prickly-pear-yellow-7);--hayyard-green-1:oklch(98% 0.014 135);--hayyard-green-2:oklch(97% 0.03 135);--hayyard-green-3:oklch(93% 0.049 135);--hayyard-green-4:oklch(84% 0.058 135);--hayyard-green-5:oklch(80% 0.078 135);--hayyard-green-6:oklch(71% 0.092 135);--hayyard-green-7:oklch(66% 0.097 135);--hayyard-green-8:oklch(58% 0.103 135);--hayyard-green-9:oklch(53% 0.097 135);--hayyard-green-10:oklch(49% 0.092 135);--hayyard-green-11:oklch(42% 0.083 135);--hayyard-green-12:oklch(35% 0.073 135);--hayyard-green-13:oklch(27% 0.058 135);--hayyard-green-14:oklch(20% 0.044 135);--hayyard-green-15:oklch(16% 0.034 135);--hayyard-green-16:oklch(10% 0.025 135);--hayyard-green:var(--hayyard-green-11);--flaming-gorge-blue-1:oklch(98% 0.012 241);--flaming-gorge-blue-2:oklch(96.8% 0.021 230);--flaming-gorge-blue-3:oklch(92.9% 0.041 242);--flaming-gorge-blue-4:oklch(84% 0.051 245);--flaming-gorge-blue-5:oklch(80% 0.069 245);--flaming-gorge-blue-6:oklch(71% 0.081 245);--flaming-gorge-blue-7:oklch(66% 0.086 245);--flaming-gorge-blue-8:oklch(58% 0.09 245);--flaming-gorge-blue-9:oklch(53% 0.086 245);--flaming-gorge-blue-10:oklch(49% 0.081 245);--flaming-gorge-blue-11:oklch(42% 0.073 245);--flaming-gorge-blue-12:oklch(35% 0.064 245);--flaming-gorge-blue-13:oklch(27% 0.051 245);--flaming-gorge-blue-14:oklch(20% 0.039 245);--flaming-gorge-blue-15:oklch(16% 0.03 245);--flaming-gorge-blue-16:oklch(10% 0.022 245);--flaming-gorge-blue:var(--flaming-gorge-blue-12);--coeurdalene-purple-1:oklch(97.8% 0.016 311);--coeurdalene-purple-2:oklch(96.5% 0.026 314);--coeurdalene-purple-3:oklch(92.5% 0.052 308);--coeurdalene-purple-4:oklch(84% 0.097 302);--coeurdalene-purple-5:oklch(80% 0.129 302);--coeurdalene-purple-6:oklch(71% 0.153 302);--coeurdalene-purple-7:oklch(66% 0.162 302);--coeurdalene-purple-8:oklch(58% 0.17 302);--coeurdalene-purple-9:oklch(53% 0.162 302);--coeurdalene-purple-10:oklch(49% 0.153 302);--coeurdalene-purple-11:oklch(42% 0.138 302);--coeurdalene-purple-12:oklch(35% 0.121 302);--coeurdalene-purple-13:oklch(27% 0.097 302);--coeurdalene-purple-14:oklch(20% 0.073 302);--coeurdalene-purple-15:oklch(16% 0.056 302);--coeurdalene-purple-16:oklch(10% 0.041 302);--coeurdalene-purple:var(--coeurdalene-purple-13);--eclipse-1:oklch(98% 0 0);--eclipse-2:oklch(97% 0 0);--eclipse-3:oklch(93% 0 0);--eclipse-4:oklch(84% 0 0);--eclipse-5:oklch(80% 0 0);--eclipse-6:oklch(71% 0 0);--eclipse-7:oklch(66% 0 0);--eclipse-8:oklch(58% 0 0);--eclipse-9:oklch(53% 0 0);--eclipse-10:oklch(49% 0 0);--eclipse-11:oklch(42% 0 0);--eclipse-12:oklch(35% 0 0);--eclipse-13:oklch(27% 0 0);--eclipse-14:oklch(20% 0 0);--eclipse-15:oklch(16% 0 0);--eclipse-16:oklch(10% 0 0);--eclipse:var(--eclipse-12);--cowhide-1:oklch(98% 0.009 77.5);--cowhide-2:oklch(97% 0.018 77.5);--cowhide-3:oklch(93% 0.029 77.5);--cowhide-4:oklch(84% 0.034 77.5);--cowhide-5:oklch(80% 0.046 77.5);--cowhide-6:oklch(71% 0.054 77.5);--cowhide-7:oklch(66% 0.057 77.5);--cowhide-8:oklch(58% 0.06 77.5);--cowhide-9:oklch(53% 0.057 77.5);--cowhide-10:oklch(49% 0.054 77.5);--cowhide-11:oklch(42% 0.049 77.5);--cowhide-12:oklch(35% 0.043 77.5);--cowhide-13:oklch(27% 0.034 77.5);--cowhide-14:oklch(20% 0.026 77.5);--cowhide-15:oklch(16% 0.02 77.5);--cowhide-16:oklch(10% 0.015 77.5);--cowhide:var(--cowhide-3);--body-background:light-dark(var(--cowhide-3), var(--eclipse-11));--link-color:light-dark( - var(--flaming-gorge-blue), - var(--coeurdalene-purple-4) - );--nav-button-text:light-dark(var(--eclipse-2), var(--cowhide-12));--nav-button-background:light-dark(var(--eclipse-11), var(--cowhide-2));--nav-button-background-hover:light-dark( - var(--eclipse-13), - var(--cowhide-4) - );--nav-button-background-active:light-dark( - var(--eclipse-14), - var(--cowhide-5) - );--container-border:light-dark(var(--swiss-brown-6), var(--eclipse-16));--container-background:light-dark(var(--swiss-brown-4), var(--eclipse-12));--container-border-alt:light-dark(var(--eclipse-16), var(--swiss-brown-6));--container-background-alt:light-dark( - var(--eclipse-12), - var(--swiss-brown-4) - );--motto-background:rgba(0, 0, 0, 0.66);--page-button-text:var(--prickly-pear-yellow-1);--page-button-background:var(--prickly-pear-yellow-8);--page-button-background-hover:var(--prickly-pear-yellow-10);--page-button-background-active:var(--prickly-pear-yellow-12);--page-button-background-disabled:var(--prickly-pear-yellow-6);--page-button-text-disabled:var(--eclipse-7);--font-family-antique:Superclarendon, "Bookman Old Style", "URW Bookman", - "URW Bookman L", "Georgia Pro", Georgia, serif;--font-family-slab-serif:Rockwell, "Rockwell Nova", "Roboto Slab", - "DejaVu Serif", "Sitka Small", serif;--font-family-system-ui:system-ui, sans-serif;--font-family-monospace:"Nimbus Mono PS", "Courier New", monospace}html{background-color:var(--body-background);font-family:var(--font-family-slab-serif)}body{display:flex;flex-direction:column;min-height:98vh;margin:0 8px}a{color:var(--link-color)}header{display:flex;justify-content:space-evenly;align-items:center}nav{display:flex;flex-direction:row;overflow:scroll;padding-bottom:1rem;position:sticky;top:0}nav a{color:var(--nav-button-text);background-color:var(--nav-button-background);border-radius:.05rem;border-style:outset;border-width:.2rem;border-color:var(--nav-button-background);min-width:7.5rem;max-width:7.5rem;display:flex;justify-content:space-between;align-items:center;margin:.2rem;text-decoration:none;padding:0 .2rem;font-family:var(--font-family-system-ui)}nav a.active{background-color:var(--nav-button-background-active)}nav a:active{border-style:inset}nav a:hover{background-color:var(--nav-button-background-hover)}main{display:flex;flex-direction:column}figure{border-color:var(--container-border);border-width:1.5pt;border-style:inset;border-radius:2.5pt;background-color:var(--container-background);padding:1.25pt}figure:has(blockquote){background:linear-gradient( to right,var(--container-border),var(--container-background) );border:none;border-radius:0;border-left:6px solid #000;padding:.25em 1em}figure:has(blockquote)>blockquote{margin:0}figure:has(blockquote)>figcaption::before{content:"\2014 \00A0"}figure:has(blockquote)>figcaption{margin-top:-1em;margin-bottom:1em;font-size:80%}footer{background-color:var(--container-background);margin:0 0 -1em -1em;width:calc(100% - 1em);padding:.25em 1.25em;display:flex;justify-content:space-between;align-items:center;flex-shrink:0}form{margin:1rem}fieldset{padding:1rem}input,select,textarea{width:100%;margin-bottom:.5rem}input:invalid,select:invalid,textarea:invalid{border-bottom-width:2px;border-bottom-color:var(--ear-tag-red)}code{font-family:var(--font-family-monospace)}abbr[title]:focus::after{content:attr(title);background-color:#1e1e1e;color:#fff;border-radius:.125em;box-shadow:1px 1px 5px rgba(0,0,0,.4);font-size:smaller;padding:.5em;display:block}.row{display:flex;flex-direction:column;width:100%}.motto-wrapper{display:block;flex:1 0 30vh;margin-bottom:1em}.motto{position:relative;display:grid;place-items:center;text-align:center;color:#fff;font-weight:600;text-shadow:0 0 10px rgba(0,0,0,.33);width:100%;height:100%;padding:0 0 .5em;border-radius:.25rem;z-index:10}.motto::before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;background-size:cover;background-position:50%}.motto-inside{position:relative;max-width:95%;display:grid;place-items:center;text-align:center}.motto .motto-inside h1{background-color:var(--motto-background);padding:.5rem}.card{background-color:var(--container-background);border-color:var(--container-border);border-width:1.5pt;border-radius:.1rem;border-style:outset;margin:1rem 0;padding:.5rem;padding-top:0;display:flex;flex-direction:column}.card-content{display:flex;flex-direction:column;flex-grow:1}.card-header{display:flex;flex-direction:row;justify-content:space-between;flex-grow:1}.card-link{white-space:nowrap;display:inline-flex;gap:.375rem;align-items:center;text-underline-offset:.25em;backface-visibility:hidden;margin:.1em .25em;padding:.33em;padding-right:.45em}.card-body{margin-top:.33em}.category-button{display:grid;align-items:center;justify-items:center;color:#fff;background-color:var(--ear-tag-red);border-radius:.5em;padding:1em;margin:1em;height:2em;aspect-ratio:1/1}.card-title>a{color:inherit}.img-thumbnail{width:100%;height:auto;margin-top:.5rem}.thumb-icon-wrapper{margin-top:1rem;display:flex;justify-content:center;align-content:center}.thumb-icon-badge{font-size:xx-large;justify-self:center;align-self:center;padding:1.5rem 3rem;border-radius:3rem;background-color:var(--ear-tag-red);color:#fff}.fa-container svg{overflow:visible;box-sizing:content-box;display:inline-block;height:1em;width:1.25em;vertical-align:-.125em}.fa-container svg path{fill:currentColor}.account-bucket{display:grid;grid-template-columns:3em 1em 1fr;background-color:var(--container-background-alt);padding:1em 0;border-radius:.5em;border-color:var(--container-border-alt);border-style:solid;color:light-dark(white,black);margin:1em 0;align-items:center}.account-bucket h3{align-self:center;writing-mode:sideways-lr}.account-bucket details{grid-column:3}.account-bucket .crypto-list{grid-column:3;max-width:100%}.account-list{display:flex;justify-content:space-between;flex-wrap:wrap;width:calc(100% - 1.5em)}.account-bucket .account-list{grid-column:3}.account-list a{font-size:xx-large;text-decoration:none;color:inherit;padding:.5em}.account-list a:hover{background-color:var(--container-background);border-color:var(--container-border);border-width:2.5px;border-radius:.5em;border-style:solid;padding:calc(.5em - 2.5px)}figcaption .mono{color:light-dark(black,white);overflow-wrap:anywhere}.crypto-list details{max-width:100%}.font-small-caps{font-variant-caps:small-caps}.img-fluid{max-width:100%;height:auto;display:grid;align-items:center;justify-items:center}.float-left{float:none;max-width:100%}.float-right{float:none;max-width:100%}.pagination{display:flex;justify-content:center;gap:.5em;padding-left:0}.pagination li{list-style-type:none;color:var(--nav-button-text)}.pagination li a{color:var(--page-button-text);background-color:var(--page-button-background);border-radius:.05rem;border-style:outset;border-width:.2rem;border-color:var(--page-button-background);width:2rem;max-width:1.8vw;aspect-ratio:1/1;display:flex;justify-content:center;align-items:center;margin:.2rem;text-decoration:none;padding:0 .2rem;font-family:var(--font-family-system-ui)}.pagination li a:hover{background-color:var(--page-button-background-hover)}.pagination li.active a{background-color:var(--page-button-background-active)}.pagination li.disabled a{cursor:not-allowed;background-color:var(--page-button-background-disabled);color:var(--page-button-text-disabled);border-style:solid}.mono{font-family:var(--font-family-monospace);font-weight:600}.bolder{font-weight:bolder;background-color:rgba(0,0,0,.33);border-radius:.25em}#content{flex:1 0 max-content}@media(min-width:768px){nav{flex-direction:column;padding-right:1rem;padding-bottom:0;-ms-overflow-style:none;scrollbar-width:none}nav::-webkit-scrollbar{display:none}main{width:calc(100% - 10rem)}.row{flex-direction:row}.person-profile{position:sticky;top:0;width:300px;min-width:20vw;max-width:30vw;margin-bottom:5vh}.float-left{float:left;max-width:50%}.float-right{float:right;max-width:50%}.card{flex-direction:row}.img-thumbnail{margin-right:1rem}.card-thumbnail{width:20vw;flex-shrink:0}.card-thumbnail:not( :has(~.card-content>.card-header>.card-title>.dt-published) ){width:10vw}.card-content{margin-left:1rem}h1::before,h2::before,h3::before,h4::before,h5::before,h6::before,blockquote::before{content:" ";visibility:hidden;display:block;height:0;clear:both}} \ No newline at end of file diff --git a/styles/scrolling-header.min.css b/styles/scrolling-header.min.css deleted file mode 100644 index 6fbec4d..0000000 --- a/styles/scrolling-header.min.css +++ /dev/null @@ -1 +0,0 @@ -@media(prefers-reduced-motion:no-preference){@supports(animation-timeline:scroll()) and (animation-range:0 50vh){@keyframes sticky-header{from{flex-basis:30vh}to{flex-basis:0}}.motto-wrapper{position:sticky;top:0;z-index:100;animation:sticky-header linear forwards;animation-timeline:scroll();animation-range:0 30vh}@keyframes blurry-header{from{filter:blur(0)}to{filter:blur(3.5px)}}.motto::before{animation:blurry-header linear forwards;animation-timeline:scroll();animation-range:0 30vh}@keyframes transparent-text-bg{from{background-color:var(--motto-background);text-shadow:0 0 10px rgba(0,0,0,.33)}to{background-color:transparent;text-shadow:0 0 10px #000}}.motto-inside h1{animation:transparent-text-bg linear forwards;animation-timeline:scroll();animation-range:0 30vh}.motto-inside h1 small{display:block;font-size:calc(1vh + 1vw);line-height:calc(1vh + 1vw)}main section{margin:0 .25em}}} \ No newline at end of file diff --git a/tags/-disease/feed.xml b/tags/-disease/feed.xml deleted file mode 100644 index 1797ee4..0000000 --- a/tags/-disease/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/-disease/2025-03-31T00:14:19+00:00All content tagged " disease" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - \ No newline at end of file diff --git a/tags/-disease/index.html b/tags/-disease/index.html deleted file mode 100644 index 8025681..0000000 --- a/tags/-disease/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Disease -- -Milliron X -
-Milliron X

Milliron X

Tag: -Disease

-Subscribe
Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/-disease/index.xml b/tags/-disease/index.xml deleted file mode 100644 index 6f77774..0000000 --- a/tags/-disease/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Disease on MillironX - http://localhost:1313/tags/-disease/ - Recent content in Disease on MillironX - Hugo - en-us - Fri, 12 Jun 2015 11:58:14 +0000 - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - diff --git a/tags/-disease/page/1/index.html b/tags/-disease/page/1/index.html deleted file mode 100644 index 11ddc9a..0000000 --- a/tags/-disease/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/-disease/ - \ No newline at end of file diff --git a/tags/4-h-carnival/feed.xml b/tags/4-h-carnival/feed.xml deleted file mode 100644 index 0f473dd..0000000 --- a/tags/4-h-carnival/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/4-h-carnival/2025-03-31T00:14:19+00:00All content tagged "4-h carnival" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> - \ No newline at end of file diff --git a/tags/4-h-carnival/index.html b/tags/4-h-carnival/index.html deleted file mode 100644 index 2f4d7c2..0000000 --- a/tags/4-h-carnival/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -4-H Carnival -- -Milliron X -
-Milliron X

Milliron X

Tag: -4-H Carnival

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/4-h-carnival/index.xml b/tags/4-h-carnival/index.xml deleted file mode 100644 index 83e8d1d..0000000 --- a/tags/4-h-carnival/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - 4-H Carnival on MillironX - http://localhost:1313/tags/4-h-carnival/ - Recent content in 4-H Carnival on MillironX - Hugo - en-us - Fri, 20 Mar 2015 00:00:00 +0000 - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - diff --git a/tags/4-h-carnival/page/1/index.html b/tags/4-h-carnival/page/1/index.html deleted file mode 100644 index 05a2bde..0000000 --- a/tags/4-h-carnival/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/4-h-carnival/ - \ No newline at end of file diff --git a/tags/4-h/feed.xml b/tags/4-h/feed.xml deleted file mode 100644 index f5d9f7e..0000000 --- a/tags/4-h/feed.xml +++ /dev/null @@ -1,103 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/4-h/2025-03-31T00:14:19+00:00All content tagged "4-h" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/tags/4-h/index.html b/tags/4-h/index.html deleted file mode 100644 index 5526b5a..0000000 --- a/tags/4-h/index.html +++ /dev/null @@ -1,83 +0,0 @@ -Tag: -4-H -- -Milliron X -
-Milliron X

Milliron X

Tag: -4-H

-Subscribe
Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/4-h/index.xml b/tags/4-h/index.xml deleted file mode 100644 index 242c5c3..0000000 --- a/tags/4-h/index.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - 4-H on MillironX - http://localhost:1313/tags/4-h/ - Recent content in 4-H on MillironX - Hugo - en-us - Sun, 13 Nov 2016 00:28:26 +0000 - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/tags/4-h/page/1/index.html b/tags/4-h/page/1/index.html deleted file mode 100644 index 809f3ee..0000000 --- a/tags/4-h/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/4-h/ - \ No newline at end of file diff --git a/tags/agriculture/feed.xml b/tags/agriculture/feed.xml deleted file mode 100644 index ccc5960..0000000 --- a/tags/agriculture/feed.xml +++ /dev/null @@ -1,30 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/agriculture/2025-03-31T00:14:19+00:00All content tagged "agriculture" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - \ No newline at end of file diff --git a/tags/agriculture/index.html b/tags/agriculture/index.html deleted file mode 100644 index 57f80ec..0000000 --- a/tags/agriculture/index.html +++ /dev/null @@ -1,67 +0,0 @@ -Tag: -Agriculture -- -Milliron X -
-Milliron X

Milliron X

Tag: -Agriculture

-Subscribe
Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/agriculture/index.xml b/tags/agriculture/index.xml deleted file mode 100644 index 4b93db6..0000000 --- a/tags/agriculture/index.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - Agriculture on MillironX - http://localhost:1313/tags/agriculture/ - Recent content in Agriculture on MillironX - Hugo - en-us - Sun, 13 Nov 2016 00:28:26 +0000 - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - diff --git a/tags/agriculture/page/1/index.html b/tags/agriculture/page/1/index.html deleted file mode 100644 index 744f7de..0000000 --- a/tags/agriculture/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/agriculture/ - \ No newline at end of file diff --git a/tags/agriculture/page/2/index.html b/tags/agriculture/page/2/index.html deleted file mode 100644 index 77b2014..0000000 --- a/tags/agriculture/page/2/index.html +++ /dev/null @@ -1,35 +0,0 @@ -Tag: -Agriculture -- -Milliron X -
-Milliron X

Milliron X

Tag: -Agriculture

-Subscribe
Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/aiche/feed.xml b/tags/aiche/feed.xml deleted file mode 100644 index 35ecc9b..0000000 --- a/tags/aiche/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/aiche/2025-03-31T00:14:19+00:00All content tagged "aiche" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> - \ No newline at end of file diff --git a/tags/aiche/index.html b/tags/aiche/index.html deleted file mode 100644 index f1e638a..0000000 --- a/tags/aiche/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -AIChE -- -Milliron X -
-Milliron X

Milliron X

Tag: -AIChE

-Subscribe
Thumbnail of thumbnail.jpg

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/aiche/index.xml b/tags/aiche/index.xml deleted file mode 100644 index 9c1e76d..0000000 --- a/tags/aiche/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - AIChE on MillironX - http://localhost:1313/tags/aiche/ - Recent content in AIChE on MillironX - Hugo - en-us - Tue, 14 May 2019 00:00:00 +0000 - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - diff --git a/tags/aiche/page/1/index.html b/tags/aiche/page/1/index.html deleted file mode 100644 index 09ae0a2..0000000 --- a/tags/aiche/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/aiche/ - \ No newline at end of file diff --git a/tags/albany-county-4-h/feed.xml b/tags/albany-county-4-h/feed.xml deleted file mode 100644 index 900a81c..0000000 --- a/tags/albany-county-4-h/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/albany-county-4-h/2025-03-31T00:14:19+00:00All content tagged "albany county 4-h" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> - \ No newline at end of file diff --git a/tags/albany-county-4-h/index.html b/tags/albany-county-4-h/index.html deleted file mode 100644 index c10d283..0000000 --- a/tags/albany-county-4-h/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Albany County 4-H -- -Milliron X -
-Milliron X

Milliron X

Tag: -Albany County 4-H

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/albany-county-4-h/index.xml b/tags/albany-county-4-h/index.xml deleted file mode 100644 index 7ec54e7..0000000 --- a/tags/albany-county-4-h/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Albany County 4-H on MillironX - http://localhost:1313/tags/albany-county-4-h/ - Recent content in Albany County 4-H on MillironX - Hugo - en-us - Fri, 20 Mar 2015 00:00:00 +0000 - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - diff --git a/tags/albany-county-4-h/page/1/index.html b/tags/albany-county-4-h/page/1/index.html deleted file mode 100644 index 6d8a9e3..0000000 --- a/tags/albany-county-4-h/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/albany-county-4-h/ - \ No newline at end of file diff --git a/tags/albany-county-fair/feed.xml b/tags/albany-county-fair/feed.xml deleted file mode 100644 index f2284a2..0000000 --- a/tags/albany-county-fair/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/albany-county-fair/2025-03-31T00:14:19+00:00All content tagged "albany county fair" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - \ No newline at end of file diff --git a/tags/albany-county-fair/index.html b/tags/albany-county-fair/index.html deleted file mode 100644 index aed1580..0000000 --- a/tags/albany-county-fair/index.html +++ /dev/null @@ -1,53 +0,0 @@ -Tag: -Albany County Fair -- -Milliron X -
-Milliron X

Milliron X

Tag: -Albany County Fair

-Subscribe
Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/albany-county-fair/index.xml b/tags/albany-county-fair/index.xml deleted file mode 100644 index 2ed589d..0000000 --- a/tags/albany-county-fair/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Albany County Fair on MillironX - http://localhost:1313/tags/albany-county-fair/ - Recent content in Albany County Fair on MillironX - Hugo - en-us - Sun, 13 Nov 2016 00:28:26 +0000 - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - diff --git a/tags/albany-county-fair/page/1/index.html b/tags/albany-county-fair/page/1/index.html deleted file mode 100644 index 9a7bcce..0000000 --- a/tags/albany-county-fair/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/albany-county-fair/ - \ No newline at end of file diff --git a/tags/artificial-insemination/feed.xml b/tags/artificial-insemination/feed.xml deleted file mode 100644 index 65b927b..0000000 --- a/tags/artificial-insemination/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/artificial-insemination/2025-03-31T00:14:19+00:00All content tagged "artificial insemination" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - \ No newline at end of file diff --git a/tags/artificial-insemination/index.html b/tags/artificial-insemination/index.html deleted file mode 100644 index cc8f6cf..0000000 --- a/tags/artificial-insemination/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Artificial Insemination -- -Milliron X -
-Milliron X

Milliron X

Tag: -Artificial Insemination

-Subscribe
Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/artificial-insemination/index.xml b/tags/artificial-insemination/index.xml deleted file mode 100644 index 083de49..0000000 --- a/tags/artificial-insemination/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Artificial Insemination on MillironX - http://localhost:1313/tags/artificial-insemination/ - Recent content in Artificial Insemination on MillironX - Hugo - en-us - Tue, 15 Dec 2015 11:20:23 +0000 - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - diff --git a/tags/artificial-insemination/page/1/index.html b/tags/artificial-insemination/page/1/index.html deleted file mode 100644 index 91863ee..0000000 --- a/tags/artificial-insemination/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/artificial-insemination/ - \ No newline at end of file diff --git a/tags/baptist/feed.xml b/tags/baptist/feed.xml deleted file mode 100644 index c9337ee..0000000 --- a/tags/baptist/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/baptist/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "baptist" on Milliron X - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - diff --git a/tags/baptist/index.html b/tags/baptist/index.html deleted file mode 100644 index 217eb9f..0000000 --- a/tags/baptist/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Baptist - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Baptist - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/baptist/index.xml b/tags/baptist/index.xml deleted file mode 100644 index e47a536..0000000 --- a/tags/baptist/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Baptist on MillironX - http://localhost:1313/tags/baptist/ - Recent content in Baptist on MillironX - Hugo - en-us - Fri, 01 Mar 2024 00:00:00 +0000 - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - diff --git a/tags/baptist/page/1/index.html b/tags/baptist/page/1/index.html deleted file mode 100644 index c7a0217..0000000 --- a/tags/baptist/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/baptist/ - - - - - - diff --git a/tags/beef-cattle/feed.xml b/tags/beef-cattle/feed.xml deleted file mode 100644 index 8178558..0000000 --- a/tags/beef-cattle/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/beef-cattle/2025-03-31T00:14:19+00:00All content tagged "beef-cattle" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/beef-cattle/index.html b/tags/beef-cattle/index.html deleted file mode 100644 index 4865dde..0000000 --- a/tags/beef-cattle/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Beef-Cattle -- -Milliron X -
-Milliron X

Milliron X

Tag: -Beef-Cattle

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/beef-cattle/index.xml b/tags/beef-cattle/index.xml deleted file mode 100644 index a236a7d..0000000 --- a/tags/beef-cattle/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Beef-Cattle on MillironX - http://localhost:1313/tags/beef-cattle/ - Recent content in Beef-Cattle on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/beef-cattle/page/1/index.html b/tags/beef-cattle/page/1/index.html deleted file mode 100644 index ce96b88..0000000 --- a/tags/beef-cattle/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/beef-cattle/ - \ No newline at end of file diff --git a/tags/bioinformatics/feed.xml b/tags/bioinformatics/feed.xml deleted file mode 100644 index 6bb5204..0000000 --- a/tags/bioinformatics/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/bioinformatics/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "bioinformatics" on Milliron X - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - diff --git a/tags/bioinformatics/index.html b/tags/bioinformatics/index.html deleted file mode 100644 index bfa5bde..0000000 --- a/tags/bioinformatics/index.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - Tag: - - Bioinformatics - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Bioinformatics - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/bioinformatics/index.xml b/tags/bioinformatics/index.xml deleted file mode 100644 index 294dd86..0000000 --- a/tags/bioinformatics/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Bioinformatics on MillironX - http://localhost:1313/tags/bioinformatics/ - Recent content in Bioinformatics on MillironX - Hugo - en-us - Sun, 01 Sep 2024 00:00:00 +0000 - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - diff --git a/tags/bioinformatics/page/1/index.html b/tags/bioinformatics/page/1/index.html deleted file mode 100644 index f908ce1..0000000 --- a/tags/bioinformatics/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/bioinformatics/ - - - - - - diff --git a/tags/biojulia/feed.xml b/tags/biojulia/feed.xml deleted file mode 100644 index f7b1cac..0000000 --- a/tags/biojulia/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/biojulia/2025-03-31T00:14:19+00:00All content tagged "biojulia" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> - \ No newline at end of file diff --git a/tags/biojulia/index.html b/tags/biojulia/index.html deleted file mode 100644 index 84c717a..0000000 --- a/tags/biojulia/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Biojulia -- -Milliron X -
-Milliron X

Milliron X

Tag: -Biojulia

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/biojulia/index.xml b/tags/biojulia/index.xml deleted file mode 100644 index dd21cdd..0000000 --- a/tags/biojulia/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Biojulia on MillironX - http://localhost:1313/tags/biojulia/ - Recent content in Biojulia on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - diff --git a/tags/biojulia/page/1/index.html b/tags/biojulia/page/1/index.html deleted file mode 100644 index 92f6d16..0000000 --- a/tags/biojulia/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/biojulia/ - \ No newline at end of file diff --git a/tags/bioremediation/feed.xml b/tags/bioremediation/feed.xml deleted file mode 100644 index 5eca4a2..0000000 --- a/tags/bioremediation/feed.xml +++ /dev/null @@ -1,53 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/bioremediation/2025-03-31T00:14:19+00:00All content tagged "bioremediation" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/tags/bioremediation/index.html b/tags/bioremediation/index.html deleted file mode 100644 index c6f746c..0000000 --- a/tags/bioremediation/index.html +++ /dev/null @@ -1,68 +0,0 @@ -Tag: -Bioremediation -- -Milliron X -
-Milliron X

Milliron X

Tag: -Bioremediation

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/bioremediation/index.xml b/tags/bioremediation/index.xml deleted file mode 100644 index 9850543..0000000 --- a/tags/bioremediation/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Bioremediation on MillironX - http://localhost:1313/tags/bioremediation/ - Recent content in Bioremediation on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/tags/bioremediation/page/1/index.html b/tags/bioremediation/page/1/index.html deleted file mode 100644 index af4d104..0000000 --- a/tags/bioremediation/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/bioremediation/ - \ No newline at end of file diff --git a/tags/bloopers/feed.xml b/tags/bloopers/feed.xml deleted file mode 100644 index df5a956..0000000 --- a/tags/bloopers/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/bloopers/2025-03-31T00:14:19+00:00All content tagged "bloopers" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - \ No newline at end of file diff --git a/tags/bloopers/index.html b/tags/bloopers/index.html deleted file mode 100644 index a96ea34..0000000 --- a/tags/bloopers/index.html +++ /dev/null @@ -1,30 +0,0 @@ -Tag: -Bloopers -- -Milliron X -
-Milliron X

Milliron X

Tag: -Bloopers

-Subscribe
Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/bloopers/index.xml b/tags/bloopers/index.xml deleted file mode 100644 index 5b9f7b0..0000000 --- a/tags/bloopers/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Bloopers on MillironX - http://localhost:1313/tags/bloopers/ - Recent content in Bloopers on MillironX - Hugo - en-us - Mon, 01 Dec 2014 00:00:00 +0000 - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - diff --git a/tags/bloopers/page/1/index.html b/tags/bloopers/page/1/index.html deleted file mode 100644 index 8b1559a..0000000 --- a/tags/bloopers/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/bloopers/ - \ No newline at end of file diff --git a/tags/blup/feed.xml b/tags/blup/feed.xml deleted file mode 100644 index b267783..0000000 --- a/tags/blup/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/blup/2025-03-31T00:14:19+00:00All content tagged "blup" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/blup/index.html b/tags/blup/index.html deleted file mode 100644 index 774cd60..0000000 --- a/tags/blup/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Blup -- -Milliron X -
-Milliron X

Milliron X

Tag: -Blup

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/blup/index.xml b/tags/blup/index.xml deleted file mode 100644 index dd95668..0000000 --- a/tags/blup/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Blup on MillironX - http://localhost:1313/tags/blup/ - Recent content in Blup on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/blup/page/1/index.html b/tags/blup/page/1/index.html deleted file mode 100644 index 44a4c42..0000000 --- a/tags/blup/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/blup/ - \ No newline at end of file diff --git a/tags/cattle/feed.xml b/tags/cattle/feed.xml deleted file mode 100644 index 0ee0732..0000000 --- a/tags/cattle/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/cattle/2025-03-31T00:14:19+00:00All content tagged "cattle" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - \ No newline at end of file diff --git a/tags/cattle/index.html b/tags/cattle/index.html deleted file mode 100644 index 9bd294a..0000000 --- a/tags/cattle/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Cattle -- -Milliron X -
-Milliron X

Milliron X

Tag: -Cattle

-Subscribe
Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/cattle/index.xml b/tags/cattle/index.xml deleted file mode 100644 index f2357fd..0000000 --- a/tags/cattle/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Cattle on MillironX - http://localhost:1313/tags/cattle/ - Recent content in Cattle on MillironX - Hugo - en-us - Mon, 01 Jul 2024 00:00:00 +0000 - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - diff --git a/tags/cattle/page/1/index.html b/tags/cattle/page/1/index.html deleted file mode 100644 index d03ee7e..0000000 --- a/tags/cattle/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/cattle/ - \ No newline at end of file diff --git a/tags/chemical-engineering/feed.xml b/tags/chemical-engineering/feed.xml deleted file mode 100644 index a465d41..0000000 --- a/tags/chemical-engineering/feed.xml +++ /dev/null @@ -1,63 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/chemical-engineering/2025-03-31T00:14:19+00:00All content tagged "chemical engineering" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/tags/chemical-engineering/index.html b/tags/chemical-engineering/index.html deleted file mode 100644 index ef041f3..0000000 --- a/tags/chemical-engineering/index.html +++ /dev/null @@ -1,84 +0,0 @@ -Tag: -Chemical Engineering -- -Milliron X -
-Milliron X

Milliron X

Tag: -Chemical Engineering

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/chemical-engineering/index.xml b/tags/chemical-engineering/index.xml deleted file mode 100644 index 7ddd144..0000000 --- a/tags/chemical-engineering/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Chemical Engineering on MillironX - http://localhost:1313/tags/chemical-engineering/ - Recent content in Chemical Engineering on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/tags/chemical-engineering/page/1/index.html b/tags/chemical-engineering/page/1/index.html deleted file mode 100644 index 2bf4292..0000000 --- a/tags/chemical-engineering/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/chemical-engineering/ - \ No newline at end of file diff --git a/tags/christian-veterinary-mission/feed.xml b/tags/christian-veterinary-mission/feed.xml deleted file mode 100644 index 1945dcf..0000000 --- a/tags/christian-veterinary-mission/feed.xml +++ /dev/null @@ -1,7 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/christian-veterinary-mission/2025-03-31T00:14:19+00:00All content tagged "christian veterinary mission" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - \ No newline at end of file diff --git a/tags/christian-veterinary-mission/index.html b/tags/christian-veterinary-mission/index.html deleted file mode 100644 index 47bea3c..0000000 --- a/tags/christian-veterinary-mission/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Christian Veterinary Mission -- -Milliron X -
-Milliron X

Milliron X

Tag: -Christian Veterinary Mission

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/christian-veterinary-mission/index.xml b/tags/christian-veterinary-mission/index.xml deleted file mode 100644 index 69fa3d4..0000000 --- a/tags/christian-veterinary-mission/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Christian Veterinary Mission on MillironX - http://localhost:1313/tags/christian-veterinary-mission/ - Recent content in Christian Veterinary Mission on MillironX - Hugo - en-us - Tue, 07 Nov 2023 00:48:13 +0000 - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - diff --git a/tags/christian-veterinary-mission/page/1/index.html b/tags/christian-veterinary-mission/page/1/index.html deleted file mode 100644 index 9c025b3..0000000 --- a/tags/christian-veterinary-mission/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/christian-veterinary-mission/ - \ No newline at end of file diff --git a/tags/christianity/feed.xml b/tags/christianity/feed.xml deleted file mode 100644 index 7b40e33..0000000 --- a/tags/christianity/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/christianity/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "christianity" on Milliron X - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - diff --git a/tags/christianity/index.html b/tags/christianity/index.html deleted file mode 100644 index 54ff2a5..0000000 --- a/tags/christianity/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Christianity - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Christianity - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/christianity/index.xml b/tags/christianity/index.xml deleted file mode 100644 index 63c1707..0000000 --- a/tags/christianity/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Christianity on MillironX - http://localhost:1313/tags/christianity/ - Recent content in Christianity on MillironX - Hugo - en-us - Fri, 01 Mar 2024 00:00:00 +0000 - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - diff --git a/tags/christianity/page/1/index.html b/tags/christianity/page/1/index.html deleted file mode 100644 index ba94461..0000000 --- a/tags/christianity/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/christianity/ - - - - - - diff --git a/tags/christmas/feed.xml b/tags/christmas/feed.xml deleted file mode 100644 index 3fa8240..0000000 --- a/tags/christmas/feed.xml +++ /dev/null @@ -1 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/christmas/2025-03-31T00:14:19+00:00All content tagged "christmas" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ \ No newline at end of file diff --git a/tags/christmas/index.html b/tags/christmas/index.html deleted file mode 100644 index c760e24..0000000 --- a/tags/christmas/index.html +++ /dev/null @@ -1,34 +0,0 @@ -Tag: -Christmas -- -Milliron X -
-Milliron X

Milliron X

Tag: -Christmas

-Subscribe
Thumbnail of thumbnail.jpeg

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/christmas/index.xml b/tags/christmas/index.xml deleted file mode 100644 index 8cfeeb1..0000000 --- a/tags/christmas/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Christmas on MillironX - http://localhost:1313/tags/christmas/ - Recent content in Christmas on MillironX - Hugo - en-us - Fri, 26 Dec 2014 15:45:36 +0000 - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - diff --git a/tags/christmas/page/1/index.html b/tags/christmas/page/1/index.html deleted file mode 100644 index 7e90b4b..0000000 --- a/tags/christmas/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/christmas/ - \ No newline at end of file diff --git a/tags/cows/feed.xml b/tags/cows/feed.xml deleted file mode 100644 index 33fb133..0000000 --- a/tags/cows/feed.xml +++ /dev/null @@ -1,10 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/cows/2025-03-31T00:14:19+00:00All content tagged "cows" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - \ No newline at end of file diff --git a/tags/cows/index.html b/tags/cows/index.html deleted file mode 100644 index 0cdfd8a..0000000 --- a/tags/cows/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -Cows -- -Milliron X -
-Milliron X

Milliron X

Tag: -Cows

-Subscribe
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/cows/index.xml b/tags/cows/index.xml deleted file mode 100644 index 1c4314a..0000000 --- a/tags/cows/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Cows on MillironX - http://localhost:1313/tags/cows/ - Recent content in Cows on MillironX - Hugo - en-us - Thu, 11 Dec 2014 00:00:00 +0000 - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - diff --git a/tags/cows/page/1/index.html b/tags/cows/page/1/index.html deleted file mode 100644 index 2c30a3d..0000000 --- a/tags/cows/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/cows/ - \ No newline at end of file diff --git a/tags/diffusion/feed.xml b/tags/diffusion/feed.xml deleted file mode 100644 index 26f636c..0000000 --- a/tags/diffusion/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/diffusion/2025-03-31T00:14:19+00:00All content tagged "diffusion" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/tags/diffusion/index.html b/tags/diffusion/index.html deleted file mode 100644 index 7f07646..0000000 --- a/tags/diffusion/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Diffusion -- -Milliron X -
-Milliron X

Milliron X

Tag: -Diffusion

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/diffusion/index.xml b/tags/diffusion/index.xml deleted file mode 100644 index bc28515..0000000 --- a/tags/diffusion/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Diffusion on MillironX - http://localhost:1313/tags/diffusion/ - Recent content in Diffusion on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/tags/diffusion/page/1/index.html b/tags/diffusion/page/1/index.html deleted file mode 100644 index d4b15d5..0000000 --- a/tags/diffusion/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/diffusion/ - \ No newline at end of file diff --git a/tags/docker/feed.xml b/tags/docker/feed.xml deleted file mode 100644 index a093a03..0000000 --- a/tags/docker/feed.xml +++ /dev/null @@ -1,7 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/docker/2025-03-31T00:14:19+00:00All content tagged "docker" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> - \ No newline at end of file diff --git a/tags/docker/index.html b/tags/docker/index.html deleted file mode 100644 index 081ba71..0000000 --- a/tags/docker/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Docker -- -Milliron X -
-Milliron X

Milliron X

Tag: -Docker

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/docker/index.xml b/tags/docker/index.xml deleted file mode 100644 index 7f94551..0000000 --- a/tags/docker/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Docker on MillironX - http://localhost:1313/tags/docker/ - Recent content in Docker on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - diff --git a/tags/docker/page/1/index.html b/tags/docker/page/1/index.html deleted file mode 100644 index 1d47ba4..0000000 --- a/tags/docker/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/docker/ - \ No newline at end of file diff --git a/tags/doctrine/feed.xml b/tags/doctrine/feed.xml deleted file mode 100644 index 88446d6..0000000 --- a/tags/doctrine/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/doctrine/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "doctrine" on Milliron X - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - diff --git a/tags/doctrine/index.html b/tags/doctrine/index.html deleted file mode 100644 index 100f5de..0000000 --- a/tags/doctrine/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Doctrine - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Doctrine - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/doctrine/index.xml b/tags/doctrine/index.xml deleted file mode 100644 index 751f0cd..0000000 --- a/tags/doctrine/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Doctrine on MillironX - http://localhost:1313/tags/doctrine/ - Recent content in Doctrine on MillironX - Hugo - en-us - Fri, 01 Mar 2024 00:00:00 +0000 - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - diff --git a/tags/doctrine/page/1/index.html b/tags/doctrine/page/1/index.html deleted file mode 100644 index cee1c54..0000000 --- a/tags/doctrine/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/doctrine/ - - - - - - diff --git a/tags/documentary/feed.xml b/tags/documentary/feed.xml deleted file mode 100644 index 655f3ba..0000000 --- a/tags/documentary/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/documentary/2025-03-31T00:14:19+00:00All content tagged "documentary" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/tags/documentary/index.html b/tags/documentary/index.html deleted file mode 100644 index 1868e29..0000000 --- a/tags/documentary/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Documentary -- -Milliron X -
-Milliron X

Milliron X

Tag: -Documentary

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/documentary/index.xml b/tags/documentary/index.xml deleted file mode 100644 index 9b936c8..0000000 --- a/tags/documentary/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Documentary on MillironX - http://localhost:1313/tags/documentary/ - Recent content in Documentary on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/tags/documentary/page/1/index.html b/tags/documentary/page/1/index.html deleted file mode 100644 index f51f242..0000000 --- a/tags/documentary/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/documentary/ - \ No newline at end of file diff --git a/tags/epds/feed.xml b/tags/epds/feed.xml deleted file mode 100644 index 0803590..0000000 --- a/tags/epds/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/epds/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "epds" on Milliron X - - - - http://localhost:1313/posts/keep-epds-real/ - - Keep EPDs Real - 2024-07-01T00:00:00+00:00 - 2024-07-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the world of cattle breeding, there’s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll delve into what EPDs are, why they matter, and how to keep them real. -What Are EPDs? EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow’s children will look like based on their parents’ characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> <h2 id="the-basics-of-genetics">The Basics of Genetics</h2> <p>Before diving into EPDs, let&rsquo;s quickly review the basics of genetics. You see, every living thing has DNA (deoxyribonucleic acid), which contains the instructions for its development and function. The DNA is made up of genes, which code for specific traits like eye color, hair color, or in our case, milk production.</p> <p>Genes are like recipes that tell our bodies what to make – but instead of ingredients like flour and sugar, they&rsquo;re made up of nucleotides. These nucleotides can be either A (adenine), C (cytosine), G (guanine), or T (thymine). The sequence of these nucleotides determines the genetic information.</p> <h2 id="how-epds-work">How EPDs Work</h2> <p>Now that we&rsquo;ve covered some basics, let&rsquo;s talk about how EPDs work. Imagine you&rsquo;re breeding two cows, Bessie and Daisy, to produce offspring. You want Bessie to pass on her desirable traits, like excellent milk production, to their children.</p> <p>To predict which calf will inherit these traits, you&rsquo;d look at the genetic information of both parents. You&rsquo;d then use a complex formula that takes into account the genetic potential of each parent and their offspring&rsquo;s genotype (the actual DNA sequence). This gives you an Expected Progeny Difference score – which represents how much better or worse the trait is expected to be in the offspring compared to the parent.</p> <p>For example, let&rsquo;s say Bessie has a high EPD for milk production, but Daisy has a low EPD. The formula would take into account both parents&rsquo; scores and predict that their calf will have an average EPD for milk production.</p> <h2 id="benefits-of-epds">Benefits of EPDs</h2> <p>So why do we need EPDs? In short, they help us make informed decisions about breeding. By knowing which traits are being passed down from one generation to the next, we can:</p> <ol> <li>Make better breeding choices</li> <li>Predict potential problems or improvements in future generations</li> <li>Develop more accurate breeding strategies</li> </ol> <p>But that&rsquo;s not all – EPDs also have a significant impact on the cattle industry as a whole. By using data-driven approaches, breeders and farmers can:</p> <ol> <li>Increase efficiency and reduce costs</li> <li>Improve animal welfare by selecting for desirable traits</li> <li>Support sustainable agriculture practices</li> </ol> <h2 id="challenges-with-epds">Challenges with EPDs</h2> <p>While EPDs offer many benefits, there are also some challenges to consider:</p> <ol> <li>Data quality: If the data used to calculate EPDs is inaccurate or incomplete, it can lead to incorrect predictions.</li> <li>Complex genetics: Genetic inheritance can be complex, making it difficult to predict how certain traits will manifest in offspring.</li> <li>Selection bias: Breeders may unconsciously favor certain breeds or animals due to personal preferences rather than objective genetic data.</li> </ol> <h2 id="staying-up-to-date-with-epd-research">Staying Up-to-Date with EPD Research</h2> <p>EPDs are constantly evolving as new research emerges and technology improves. To stay informed, it&rsquo;s essential to:</p> <ol> <li>Follow industry publications and scientific journals</li> <li>Attend workshops and conferences on genetics and EPDs</li> <li>Network with other breeders and researchers in the field</li> </ol> <h2 id="conclusion">Conclusion</h2> <p>In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for cattle breeders. By understanding how genetic traits are passed down through generations, we can make more informed decisions about breeding and improve animal welfare.</p> <p>Remember – keeping EPDs real means staying current with the latest research, attending workshops, and networking with experts in the field. With these skills, you&rsquo;ll be well on your way to becoming a genetics-savvy breeder!</p> <p>As always, I&rsquo;m grateful for this opportunity to share my passion for cattle breeding and genetics with you – whether it&rsquo;s through EPDs or something entirely different!</p> - - - - diff --git a/tags/epds/index.html b/tags/epds/index.html deleted file mode 100644 index 391c45b..0000000 --- a/tags/epds/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Epds - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Epds - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Keep EPDs Real

- - -
- 01 Jul 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/epds/index.xml b/tags/epds/index.xml deleted file mode 100644 index 0d87e60..0000000 --- a/tags/epds/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Epds on MillironX - http://localhost:1313/tags/epds/ - Recent content in Epds on MillironX - Hugo - en-us - Mon, 01 Jul 2024 00:00:00 +0000 - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - diff --git a/tags/epds/page/1/index.html b/tags/epds/page/1/index.html deleted file mode 100644 index 12dac5a..0000000 --- a/tags/epds/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/epds/ - - - - - - diff --git a/tags/epidemiology/feed.xml b/tags/epidemiology/feed.xml deleted file mode 100644 index 60f3025..0000000 --- a/tags/epidemiology/feed.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/epidemiology/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "epidemiology" on Milliron X - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - diff --git a/tags/epidemiology/index.html b/tags/epidemiology/index.html deleted file mode 100644 index 430f8f4..0000000 --- a/tags/epidemiology/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Epidemiology - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Epidemiology - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/epidemiology/index.xml b/tags/epidemiology/index.xml deleted file mode 100644 index fce9c61..0000000 --- a/tags/epidemiology/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Epidemiology on MillironX - http://localhost:1313/tags/epidemiology/ - Recent content in Epidemiology on MillironX - Hugo - en-us - Wed, 01 May 2024 00:00:00 +0000 - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - diff --git a/tags/epidemiology/page/1/index.html b/tags/epidemiology/page/1/index.html deleted file mode 100644 index 609d3b0..0000000 --- a/tags/epidemiology/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/epidemiology/ - - - - - - diff --git a/tags/expected-breeding-values/feed.xml b/tags/expected-breeding-values/feed.xml deleted file mode 100644 index a4328d1..0000000 --- a/tags/expected-breeding-values/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/expected-breeding-values/2025-03-31T00:14:19+00:00All content tagged "expected-breeding-values" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/expected-breeding-values/index.html b/tags/expected-breeding-values/index.html deleted file mode 100644 index 2980958..0000000 --- a/tags/expected-breeding-values/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Expected-Breeding-Values -- -Milliron X -
-Milliron X

Milliron X

Tag: -Expected-Breeding-Values

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/expected-breeding-values/index.xml b/tags/expected-breeding-values/index.xml deleted file mode 100644 index 151b78c..0000000 --- a/tags/expected-breeding-values/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Expected-Breeding-Values on MillironX - http://localhost:1313/tags/expected-breeding-values/ - Recent content in Expected-Breeding-Values on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/expected-breeding-values/page/1/index.html b/tags/expected-breeding-values/page/1/index.html deleted file mode 100644 index 5a59419..0000000 --- a/tags/expected-breeding-values/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/expected-breeding-values/ - \ No newline at end of file diff --git a/tags/expected-progeny-differences/feed.xml b/tags/expected-progeny-differences/feed.xml deleted file mode 100644 index 2e77ea8..0000000 --- a/tags/expected-progeny-differences/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/expected-progeny-differences/2025-03-31T00:14:19+00:00All content tagged "expected-progeny-differences" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/expected-progeny-differences/index.html b/tags/expected-progeny-differences/index.html deleted file mode 100644 index f5d452e..0000000 --- a/tags/expected-progeny-differences/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Expected-Progeny-Differences -- -Milliron X -
-Milliron X

Milliron X

Tag: -Expected-Progeny-Differences

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/expected-progeny-differences/index.xml b/tags/expected-progeny-differences/index.xml deleted file mode 100644 index fe8e88b..0000000 --- a/tags/expected-progeny-differences/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Expected-Progeny-Differences on MillironX - http://localhost:1313/tags/expected-progeny-differences/ - Recent content in Expected-Progeny-Differences on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/expected-progeny-differences/page/1/index.html b/tags/expected-progeny-differences/page/1/index.html deleted file mode 100644 index 04cb50c..0000000 --- a/tags/expected-progeny-differences/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/expected-progeny-differences/ - \ No newline at end of file diff --git a/tags/fiction/feed.xml b/tags/fiction/feed.xml deleted file mode 100644 index 2966937..0000000 --- a/tags/fiction/feed.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/fiction/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "fiction" on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - diff --git a/tags/fiction/index.html b/tags/fiction/index.html deleted file mode 100644 index 208a597..0000000 --- a/tags/fiction/index.html +++ /dev/null @@ -1,476 +0,0 @@ - - - - - - - - - - Tag: - - Fiction - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Fiction - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/fiction/index.xml b/tags/fiction/index.xml deleted file mode 100644 index 6f6e717..0000000 --- a/tags/fiction/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Fiction on MillironX - http://localhost:1313/tags/fiction/ - Recent content in Fiction on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - diff --git a/tags/fiction/page/1/index.html b/tags/fiction/page/1/index.html deleted file mode 100644 index 3f2bf85..0000000 --- a/tags/fiction/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/fiction/ - - - - - - diff --git a/tags/firearms/feed.xml b/tags/firearms/feed.xml deleted file mode 100644 index 913eddb..0000000 --- a/tags/firearms/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/firearms/2025-03-31T00:14:19+00:00All content tagged "firearms" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ \ No newline at end of file diff --git a/tags/firearms/index.html b/tags/firearms/index.html deleted file mode 100644 index aad62c6..0000000 --- a/tags/firearms/index.html +++ /dev/null @@ -1,40 +0,0 @@ -Tag: -Firearms -- -Milliron X -
-Milliron X

Milliron X

Tag: -Firearms

-Subscribe
Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

Thumbnail of thumbnail.jpeg

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/firearms/index.xml b/tags/firearms/index.xml deleted file mode 100644 index cd3d917..0000000 --- a/tags/firearms/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Firearms on MillironX - http://localhost:1313/tags/firearms/ - Recent content in Firearms on MillironX - Hugo - en-us - Mon, 16 Feb 2015 00:00:00 +0000 - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - diff --git a/tags/firearms/page/1/index.html b/tags/firearms/page/1/index.html deleted file mode 100644 index dd7efbb..0000000 --- a/tags/firearms/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/firearms/ - \ No newline at end of file diff --git a/tags/fun/feed.xml b/tags/fun/feed.xml deleted file mode 100644 index d790648..0000000 --- a/tags/fun/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/fun/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "fun" on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - diff --git a/tags/fun/index.html b/tags/fun/index.html deleted file mode 100644 index 0253f2f..0000000 --- a/tags/fun/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Fun - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Fun - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/fun/index.xml b/tags/fun/index.xml deleted file mode 100644 index 9a03e0a..0000000 --- a/tags/fun/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Fun on MillironX - http://localhost:1313/tags/fun/ - Recent content in Fun on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - diff --git a/tags/fun/page/1/index.html b/tags/fun/page/1/index.html deleted file mode 100644 index 02bc40c..0000000 --- a/tags/fun/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/fun/ - - - - - - diff --git a/tags/genetics/feed.xml b/tags/genetics/feed.xml deleted file mode 100644 index 6da9f88..0000000 --- a/tags/genetics/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/genetics/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "genetics" on Milliron X - - - - http://localhost:1313/posts/keep-epds-real/ - - Keep EPDs Real - 2024-07-01T00:00:00+00:00 - 2024-07-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the world of cattle breeding, there’s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll delve into what EPDs are, why they matter, and how to keep them real. -What Are EPDs? EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow’s children will look like based on their parents’ characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> <h2 id="the-basics-of-genetics">The Basics of Genetics</h2> <p>Before diving into EPDs, let&rsquo;s quickly review the basics of genetics. You see, every living thing has DNA (deoxyribonucleic acid), which contains the instructions for its development and function. The DNA is made up of genes, which code for specific traits like eye color, hair color, or in our case, milk production.</p> <p>Genes are like recipes that tell our bodies what to make – but instead of ingredients like flour and sugar, they&rsquo;re made up of nucleotides. These nucleotides can be either A (adenine), C (cytosine), G (guanine), or T (thymine). The sequence of these nucleotides determines the genetic information.</p> <h2 id="how-epds-work">How EPDs Work</h2> <p>Now that we&rsquo;ve covered some basics, let&rsquo;s talk about how EPDs work. Imagine you&rsquo;re breeding two cows, Bessie and Daisy, to produce offspring. You want Bessie to pass on her desirable traits, like excellent milk production, to their children.</p> <p>To predict which calf will inherit these traits, you&rsquo;d look at the genetic information of both parents. You&rsquo;d then use a complex formula that takes into account the genetic potential of each parent and their offspring&rsquo;s genotype (the actual DNA sequence). This gives you an Expected Progeny Difference score – which represents how much better or worse the trait is expected to be in the offspring compared to the parent.</p> <p>For example, let&rsquo;s say Bessie has a high EPD for milk production, but Daisy has a low EPD. The formula would take into account both parents&rsquo; scores and predict that their calf will have an average EPD for milk production.</p> <h2 id="benefits-of-epds">Benefits of EPDs</h2> <p>So why do we need EPDs? In short, they help us make informed decisions about breeding. By knowing which traits are being passed down from one generation to the next, we can:</p> <ol> <li>Make better breeding choices</li> <li>Predict potential problems or improvements in future generations</li> <li>Develop more accurate breeding strategies</li> </ol> <p>But that&rsquo;s not all – EPDs also have a significant impact on the cattle industry as a whole. By using data-driven approaches, breeders and farmers can:</p> <ol> <li>Increase efficiency and reduce costs</li> <li>Improve animal welfare by selecting for desirable traits</li> <li>Support sustainable agriculture practices</li> </ol> <h2 id="challenges-with-epds">Challenges with EPDs</h2> <p>While EPDs offer many benefits, there are also some challenges to consider:</p> <ol> <li>Data quality: If the data used to calculate EPDs is inaccurate or incomplete, it can lead to incorrect predictions.</li> <li>Complex genetics: Genetic inheritance can be complex, making it difficult to predict how certain traits will manifest in offspring.</li> <li>Selection bias: Breeders may unconsciously favor certain breeds or animals due to personal preferences rather than objective genetic data.</li> </ol> <h2 id="staying-up-to-date-with-epd-research">Staying Up-to-Date with EPD Research</h2> <p>EPDs are constantly evolving as new research emerges and technology improves. To stay informed, it&rsquo;s essential to:</p> <ol> <li>Follow industry publications and scientific journals</li> <li>Attend workshops and conferences on genetics and EPDs</li> <li>Network with other breeders and researchers in the field</li> </ol> <h2 id="conclusion">Conclusion</h2> <p>In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for cattle breeders. By understanding how genetic traits are passed down through generations, we can make more informed decisions about breeding and improve animal welfare.</p> <p>Remember – keeping EPDs real means staying current with the latest research, attending workshops, and networking with experts in the field. With these skills, you&rsquo;ll be well on your way to becoming a genetics-savvy breeder!</p> <p>As always, I&rsquo;m grateful for this opportunity to share my passion for cattle breeding and genetics with you – whether it&rsquo;s through EPDs or something entirely different!</p> - - - - diff --git a/tags/genetics/index.html b/tags/genetics/index.html deleted file mode 100644 index 99914e2..0000000 --- a/tags/genetics/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Genetics - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Genetics - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Keep EPDs Real

- - -
- 01 Jul 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/genetics/index.xml b/tags/genetics/index.xml deleted file mode 100644 index 3f2f77f..0000000 --- a/tags/genetics/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Genetics on MillironX - http://localhost:1313/tags/genetics/ - Recent content in Genetics on MillironX - Hugo - en-us - Mon, 01 Jul 2024 00:00:00 +0000 - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - diff --git a/tags/genetics/page/1/index.html b/tags/genetics/page/1/index.html deleted file mode 100644 index 4536b9d..0000000 --- a/tags/genetics/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/genetics/ - - - - - - diff --git a/tags/genomics/feed.xml b/tags/genomics/feed.xml deleted file mode 100644 index 98946d2..0000000 --- a/tags/genomics/feed.xml +++ /dev/null @@ -1,20 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/genomics/2025-03-31T00:14:19+00:00All content tagged "genomics" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/taxprofiler/nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling2023-10-23T00:00:00+00:002023-10-23T00:00:00+00:00Sofia Stamoulihttps://millironx.millironx.page/@indiewebpub/people/sofia-stamouli/Moritz E. Beberhttps://millironx.millironx.page/@indiewebpub/people/moritz-e.-beber/Tanja Normarkhttps://millironx.millironx.page/@indiewebpub/people/tanja-normark/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Lili Andersson-Lihttps://millironx.millironx.page/@indiewebpub/people/lili-andersson-li/Maxime Borryhttps://millironx.millironx.page/@indiewebpub/people/maxime-borry/Mahwash Jamyhttps://millironx.millironx.page/@indiewebpub/people/mahwash-jamy/Nf-Core Communityhttps://millironx.millironx.page/@indiewebpub/people/nf-core-community/James A. Fellows Yateshttps://millironx.millironx.page/@indiewebpub/people/james-a.-fellows-yates/ -Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics. -<p>Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. Here we present nf-core/taxprofiler, a highly -parallelised read-processing and taxonomic classification pipeline. It is -designed for the automated and simultaneous classification and/or profiling of -both short- and long-read metagenomic sequencing libraries against a 11 -taxonomic classifiers and profilers as well as databases within a single -pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the -pipeline benefits from high levels of scalability and portability, accommodating -from small to extremely large projects on a wide range of computing -infrastructure. It has been developed following best-practise software -development practises and community support to ensure longevity and adaptability -of the pipeline, to help keep it up to date with the field of metagenomics.</p> - \ No newline at end of file diff --git a/tags/genomics/index.html b/tags/genomics/index.html deleted file mode 100644 index d890bc5..0000000 --- a/tags/genomics/index.html +++ /dev/null @@ -1,50 +0,0 @@ -Tag: -Genomics -- -Milliron X -
-Milliron X

Milliron X

Tag: -Genomics

-Subscribe
- - - - - - - -

Metagenomic classification tackles the problem of characterising the taxonomic -source of all DNA sequencing reads in a sample. A common approach to address the -differences and biases between the many different taxonomic classification tools -is to run metagenomic data through multiple classification tools and databases. -This, however, is a very time-consuming task when performed manually - -particularly when combined with the appropriate preprocessing of sequencing -reads before the classification. …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/genomics/index.xml b/tags/genomics/index.xml deleted file mode 100644 index 19df749..0000000 --- a/tags/genomics/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Genomics on MillironX - http://localhost:1313/tags/genomics/ - Recent content in Genomics on MillironX - Hugo - en-us - Mon, 23 Oct 2023 00:00:00 +0000 - - - nf-core/taxprofiler: highly parallelised and flexible pipeline for metagenomic taxonomic classification and profiling - http://localhost:1313/academia/taxprofiler/ - Mon, 23 Oct 2023 00:00:00 +0000 - http://localhost:1313/academia/taxprofiler/ - <p>Metagenomic classification tackles the problem of characterising the taxonomic source of all DNA sequencing reads in a sample. A common approach to address the differences and biases between the many different taxonomic classification tools is to run metagenomic data through multiple classification tools and databases. This, however, is a very time-consuming task when performed manually - particularly when combined with the appropriate preprocessing of sequencing reads before the classification. Here we present nf-core/taxprofiler, a highly parallelised read-processing and taxonomic classification pipeline. It is designed for the automated and simultaneous classification and/or profiling of both short- and long-read metagenomic sequencing libraries against a 11 taxonomic classifiers and profilers as well as databases within a single pipeline run. Implemented in Nextflow and as part of the nf-core initiative, the pipeline benefits from high levels of scalability and portability, accommodating from small to extremely large projects on a wide range of computing infrastructure. It has been developed following best-practise software development practises and community support to ensure longevity and adaptability of the pipeline, to help keep it up to date with the field of metagenomics.</p> - - - diff --git a/tags/genomics/page/1/index.html b/tags/genomics/page/1/index.html deleted file mode 100644 index 13b5083..0000000 --- a/tags/genomics/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/genomics/ - \ No newline at end of file diff --git a/tags/gestation/feed.xml b/tags/gestation/feed.xml deleted file mode 100644 index 4930739..0000000 --- a/tags/gestation/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/gestation/2025-03-31T00:14:19+00:00All content tagged "gestation" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/tags/gestation/index.html b/tags/gestation/index.html deleted file mode 100644 index eb72c93..0000000 --- a/tags/gestation/index.html +++ /dev/null @@ -1,46 +0,0 @@ -Tag: -Gestation -- -Milliron X -
-Milliron X

Milliron X

Tag: -Gestation

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/gestation/index.xml b/tags/gestation/index.xml deleted file mode 100644 index 45b4d07..0000000 --- a/tags/gestation/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Gestation on MillironX - http://localhost:1313/tags/gestation/ - Recent content in Gestation on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/tags/gestation/page/1/index.html b/tags/gestation/page/1/index.html deleted file mode 100644 index bf17a10..0000000 --- a/tags/gestation/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/gestation/ - \ No newline at end of file diff --git a/tags/github/feed.xml b/tags/github/feed.xml deleted file mode 100644 index 4bad200..0000000 --- a/tags/github/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/github/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "github" on Milliron X - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/tags/github/index.html b/tags/github/index.html deleted file mode 100644 index 58167ad..0000000 --- a/tags/github/index.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - Tag: - - Github - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Github - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/github/index.xml b/tags/github/index.xml deleted file mode 100644 index d1745f6..0000000 --- a/tags/github/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Github on MillironX - http://localhost:1313/tags/github/ - Recent content in Github on MillironX - Hugo - en-us - Mon, 01 Jan 2024 00:00:00 +0000 - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/tags/github/page/1/index.html b/tags/github/page/1/index.html deleted file mode 100644 index 740c57e..0000000 --- a/tags/github/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/github/ - - - - - - diff --git a/tags/gopro/feed.xml b/tags/gopro/feed.xml deleted file mode 100644 index f29b779..0000000 --- a/tags/gopro/feed.xml +++ /dev/null @@ -1,31 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/gopro/2025-03-31T00:14:19+00:00All content tagged "gopro" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - \ No newline at end of file diff --git a/tags/gopro/index.html b/tags/gopro/index.html deleted file mode 100644 index 835a8c2..0000000 --- a/tags/gopro/index.html +++ /dev/null @@ -1,67 +0,0 @@ -Tag: -Gopro -- -Milliron X -
-Milliron X

Milliron X

Tag: -Gopro

-Subscribe
Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/gopro/index.xml b/tags/gopro/index.xml deleted file mode 100644 index bd7f843..0000000 --- a/tags/gopro/index.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - Gopro on MillironX - http://localhost:1313/tags/gopro/ - Recent content in Gopro on MillironX - Hugo - en-us - Sun, 13 Nov 2016 00:28:26 +0000 - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - diff --git a/tags/gopro/page/1/index.html b/tags/gopro/page/1/index.html deleted file mode 100644 index 61c9796..0000000 --- a/tags/gopro/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/gopro/ - \ No newline at end of file diff --git a/tags/gopro/page/2/index.html b/tags/gopro/page/2/index.html deleted file mode 100644 index 27fba19..0000000 --- a/tags/gopro/page/2/index.html +++ /dev/null @@ -1,46 +0,0 @@ -Tag: -Gopro -- -Milliron X -
-Milliron X

Milliron X

Tag: -Gopro

-Subscribe
Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/haying/feed.xml b/tags/haying/feed.xml deleted file mode 100644 index 4658ad3..0000000 --- a/tags/haying/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/haying/2025-03-31T00:14:19+00:00All content tagged "haying" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - \ No newline at end of file diff --git a/tags/haying/index.html b/tags/haying/index.html deleted file mode 100644 index 106c254..0000000 --- a/tags/haying/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Haying -- -Milliron X -
-Milliron X

Milliron X

Tag: -Haying

-Subscribe
Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/haying/index.xml b/tags/haying/index.xml deleted file mode 100644 index 89af79d..0000000 --- a/tags/haying/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Haying on MillironX - http://localhost:1313/tags/haying/ - Recent content in Haying on MillironX - Hugo - en-us - Mon, 02 Feb 2015 00:00:00 +0000 - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - diff --git a/tags/haying/page/1/index.html b/tags/haying/page/1/index.html deleted file mode 100644 index 329dbee..0000000 --- a/tags/haying/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/haying/ - \ No newline at end of file diff --git a/tags/herding/feed.xml b/tags/herding/feed.xml deleted file mode 100644 index ce557a8..0000000 --- a/tags/herding/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/herding/2025-03-31T00:14:19+00:00All content tagged "herding" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - \ No newline at end of file diff --git a/tags/herding/index.html b/tags/herding/index.html deleted file mode 100644 index 4e780a5..0000000 --- a/tags/herding/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Herding -- -Milliron X -
-Milliron X

Milliron X

Tag: -Herding

-Subscribe
Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/herding/index.xml b/tags/herding/index.xml deleted file mode 100644 index fb15384..0000000 --- a/tags/herding/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Herding on MillironX - http://localhost:1313/tags/herding/ - Recent content in Herding on MillironX - Hugo - en-us - Tue, 02 Dec 2014 00:00:00 +0000 - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - diff --git a/tags/herding/page/1/index.html b/tags/herding/page/1/index.html deleted file mode 100644 index 4914334..0000000 --- a/tags/herding/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/herding/ - \ No newline at end of file diff --git a/tags/history/feed.xml b/tags/history/feed.xml deleted file mode 100644 index e09fc72..0000000 --- a/tags/history/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/history/2025-03-31T00:14:19+00:00All content tagged "history" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/tags/history/index.html b/tags/history/index.html deleted file mode 100644 index d38ea3f..0000000 --- a/tags/history/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -History -- -Milliron X -
-Milliron X

Milliron X

Tag: -History

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/history/index.xml b/tags/history/index.xml deleted file mode 100644 index 24db357..0000000 --- a/tags/history/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - History on MillironX - http://localhost:1313/tags/history/ - Recent content in History on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/tags/history/page/1/index.html b/tags/history/page/1/index.html deleted file mode 100644 index 2bf599a..0000000 --- a/tags/history/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/history/ - \ No newline at end of file diff --git a/tags/horseriding/feed.xml b/tags/horseriding/feed.xml deleted file mode 100644 index 6305ee5..0000000 --- a/tags/horseriding/feed.xml +++ /dev/null @@ -1,7 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/horseriding/2025-03-31T00:14:19+00:00All content tagged "horseriding" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - \ No newline at end of file diff --git a/tags/horseriding/index.html b/tags/horseriding/index.html deleted file mode 100644 index eabc348..0000000 --- a/tags/horseriding/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Horseriding -- -Milliron X -
-Milliron X

Milliron X

Tag: -Horseriding

-Subscribe
Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/horseriding/index.xml b/tags/horseriding/index.xml deleted file mode 100644 index 77e0c0a..0000000 --- a/tags/horseriding/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Horseriding on MillironX - http://localhost:1313/tags/horseriding/ - Recent content in Horseriding on MillironX - Hugo - en-us - Thu, 04 Dec 2014 00:00:00 +0000 - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - diff --git a/tags/horseriding/page/1/index.html b/tags/horseriding/page/1/index.html deleted file mode 100644 index 51bf7ad..0000000 --- a/tags/horseriding/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/horseriding/ - \ No newline at end of file diff --git a/tags/html/feed.xml b/tags/html/feed.xml deleted file mode 100644 index acbccab..0000000 --- a/tags/html/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/html/2025-03-31T00:14:19+00:00All content tagged "html" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> - \ No newline at end of file diff --git a/tags/html/index.html b/tags/html/index.html deleted file mode 100644 index 1da974d..0000000 --- a/tags/html/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Html -- -Milliron X -
-Milliron X

Milliron X

Tag: -Html

-Subscribe

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/html/index.xml b/tags/html/index.xml deleted file mode 100644 index c23fb6e..0000000 --- a/tags/html/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Html on MillironX - http://localhost:1313/tags/html/ - Recent content in Html on MillironX - Hugo - en-us - Wed, 06 Apr 2022 19:32:52 +0000 - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - diff --git a/tags/html/page/1/index.html b/tags/html/page/1/index.html deleted file mode 100644 index ed53c40..0000000 --- a/tags/html/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/html/ - \ No newline at end of file diff --git a/tags/hydrogel-polymers/feed.xml b/tags/hydrogel-polymers/feed.xml deleted file mode 100644 index c164832..0000000 --- a/tags/hydrogel-polymers/feed.xml +++ /dev/null @@ -1,53 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/hydrogel-polymers/2025-03-31T00:14:19+00:00All content tagged "hydrogel polymers" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/tags/hydrogel-polymers/index.html b/tags/hydrogel-polymers/index.html deleted file mode 100644 index e1ae104..0000000 --- a/tags/hydrogel-polymers/index.html +++ /dev/null @@ -1,68 +0,0 @@ -Tag: -Hydrogel Polymers -- -Milliron X -
-Milliron X

Milliron X

Tag: -Hydrogel Polymers

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/hydrogel-polymers/index.xml b/tags/hydrogel-polymers/index.xml deleted file mode 100644 index 6d89abf..0000000 --- a/tags/hydrogel-polymers/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Hydrogel Polymers on MillironX - http://localhost:1313/tags/hydrogel-polymers/ - Recent content in Hydrogel Polymers on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/tags/hydrogel-polymers/page/1/index.html b/tags/hydrogel-polymers/page/1/index.html deleted file mode 100644 index 946460c..0000000 --- a/tags/hydrogel-polymers/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/hydrogel-polymers/ - \ No newline at end of file diff --git a/tags/hydrogels/feed.xml b/tags/hydrogels/feed.xml deleted file mode 100644 index f6ee735..0000000 --- a/tags/hydrogels/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/hydrogels/2025-03-31T00:14:19+00:00All content tagged "hydrogels" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/tags/hydrogels/index.html b/tags/hydrogels/index.html deleted file mode 100644 index 2d5dc5b..0000000 --- a/tags/hydrogels/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Hydrogels -- -Milliron X -
-Milliron X

Milliron X

Tag: -Hydrogels

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/hydrogels/index.xml b/tags/hydrogels/index.xml deleted file mode 100644 index f6ae2ad..0000000 --- a/tags/hydrogels/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Hydrogels on MillironX - http://localhost:1313/tags/hydrogels/ - Recent content in Hydrogels on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/tags/hydrogels/page/1/index.html b/tags/hydrogels/page/1/index.html deleted file mode 100644 index b097e8c..0000000 --- a/tags/hydrogels/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/hydrogels/ - \ No newline at end of file diff --git a/tags/index.html b/tags/index.html deleted file mode 100644 index 31ed62f..0000000 --- a/tags/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/index.xml b/tags/index.xml deleted file mode 100644 index d46a19a..0000000 --- a/tags/index.xml +++ /dev/null @@ -1 +0,0 @@ -Tags on Milliron Xhttps://millironx.millironx.page/@indiewebpub/tags/Recent content in Tags on Milliron XHugoen-usSat, 15 Mar 2025 21:22:22 -0500Biojuliahttps://millironx.millironx.page/@indiewebpub/tags/biojulia/Sat, 15 Mar 2025 21:22:22 -0500https://millironx.millironx.page/@indiewebpub/tags/biojulia/Dockerhttps://millironx.millironx.page/@indiewebpub/tags/docker/Sat, 15 Mar 2025 21:22:22 -0500https://millironx.millironx.page/@indiewebpub/tags/docker/Juliahttps://millironx.millironx.page/@indiewebpub/tags/julia/Sat, 15 Mar 2025 21:22:22 -0500https://millironx.millironx.page/@indiewebpub/tags/julia/Next-Generation Sequencinghttps://millironx.millironx.page/@indiewebpub/tags/next-generation-sequencing/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/next-generation-sequencing/Pipelinehttps://millironx.millironx.page/@indiewebpub/tags/pipeline/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/pipeline/Quasispecieshttps://millironx.millironx.page/@indiewebpub/tags/quasispecies/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/quasispecies/Virushttps://millironx.millironx.page/@indiewebpub/tags/virus/Tue, 05 Mar 2024 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/virus/Christian Veterinary Missionhttps://millironx.millironx.page/@indiewebpub/tags/christian-veterinary-mission/Tue, 07 Nov 2023 00:48:13 +0000https://millironx.millironx.page/@indiewebpub/tags/christian-veterinary-mission/Promotionhttps://millironx.millironx.page/@indiewebpub/tags/promotion/Tue, 07 Nov 2023 00:48:13 +0000https://millironx.millironx.page/@indiewebpub/tags/promotion/Real Life Real Impacthttps://millironx.millironx.page/@indiewebpub/tags/real-life-real-impact/Tue, 07 Nov 2023 00:48:13 +0000https://millironx.millironx.page/@indiewebpub/tags/real-life-real-impact/Genomicshttps://millironx.millironx.page/@indiewebpub/tags/genomics/Mon, 23 Oct 2023 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/genomics/Diffusionhttps://millironx.millironx.page/@indiewebpub/tags/diffusion/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/diffusion/Hydrogelshttps://millironx.millironx.page/@indiewebpub/tags/hydrogels/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/hydrogels/Ionic Strengthhttps://millironx.millironx.page/@indiewebpub/tags/ionic-strength/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/ionic-strength/Polymershttps://millironx.millironx.page/@indiewebpub/tags/polymers/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/polymers/Transport Propertieshttps://millironx.millironx.page/@indiewebpub/tags/transport-properties/Fri, 02 Sep 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/transport-properties/Porcine Enteric Diseasehttps://millironx.millironx.page/@indiewebpub/tags/porcine-enteric-disease/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/porcine-enteric-disease/Porcine Rotavirushttps://millironx.millironx.page/@indiewebpub/tags/porcine-rotavirus/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/porcine-rotavirus/Rotavirushttps://millironx.millironx.page/@indiewebpub/tags/rotavirus/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/rotavirus/Viromehttps://millironx.millironx.page/@indiewebpub/tags/virome/Wed, 27 Apr 2022 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/virome/Htmlhttps://millironx.millironx.page/@indiewebpub/tags/html/Wed, 06 Apr 2022 19:32:52 +0000https://millironx.millironx.page/@indiewebpub/tags/html/Template-Enginehttps://millironx.millironx.page/@indiewebpub/tags/template-engine/Wed, 06 Apr 2022 19:32:52 +0000https://millironx.millironx.page/@indiewebpub/tags/template-engine/Beef-Cattlehttps://millironx.millironx.page/@indiewebpub/tags/beef-cattle/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/beef-cattle/Bluphttps://millironx.millironx.page/@indiewebpub/tags/blup/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/blup/Expected-Breeding-Valueshttps://millironx.millironx.page/@indiewebpub/tags/expected-breeding-values/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/expected-breeding-values/Expected-Progeny-Differenceshttps://millironx.millironx.page/@indiewebpub/tags/expected-progeny-differences/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/expected-progeny-differences/Keepepdsrealhttps://millironx.millironx.page/@indiewebpub/tags/keepepdsreal/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/keepepdsreal/Predicted-Transmitting-Abilitieshttps://millironx.millironx.page/@indiewebpub/tags/predicted-transmitting-abilities/Mon, 09 Aug 2021 19:10:22 -0500https://millironx.millironx.page/@indiewebpub/tags/predicted-transmitting-abilities/Bioremediationhttps://millironx.millironx.page/@indiewebpub/tags/bioremediation/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/bioremediation/Chemical Engineeringhttps://millironx.millironx.page/@indiewebpub/tags/chemical-engineering/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/chemical-engineering/Hydrogel Polymershttps://millironx.millironx.page/@indiewebpub/tags/hydrogel-polymers/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/hydrogel-polymers/Polyoxometalatehttps://millironx.millironx.page/@indiewebpub/tags/polyoxometalate/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/polyoxometalate/Proton Transporthttps://millironx.millironx.page/@indiewebpub/tags/proton-transport/Fri, 07 Aug 2020 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/proton-transport/Gestationhttps://millironx.millironx.page/@indiewebpub/tags/gestation/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/gestation/Metagenomicshttps://millironx.millironx.page/@indiewebpub/tags/metagenomics/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/metagenomics/Microbiomehttps://millironx.millironx.page/@indiewebpub/tags/microbiome/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/microbiome/Rumenhttps://millironx.millironx.page/@indiewebpub/tags/rumen/Wed, 12 Jun 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/rumen/AIChEhttps://millironx.millironx.page/@indiewebpub/tags/aiche/Tue, 14 May 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/aiche/Microbial Electrolysis Cellshttps://millironx.millironx.page/@indiewebpub/tags/microbial-electrolysis-cells/Tue, 14 May 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/microbial-electrolysis-cells/Radiationhttps://millironx.millironx.page/@indiewebpub/tags/radiation/Tue, 14 May 2019 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/radiation/4-Hhttps://millironx.millironx.page/@indiewebpub/tags/4-h/Sun, 13 Nov 2016 00:28:26 +0000https://millironx.millironx.page/@indiewebpub/tags/4-h/Agriculturehttps://millironx.millironx.page/@indiewebpub/tags/agriculture/Sun, 13 Nov 2016 00:28:26 +0000https://millironx.millironx.page/@indiewebpub/tags/agriculture/Albany County Fairhttps://millironx.millironx.page/@indiewebpub/tags/albany-county-fair/Sun, 13 Nov 2016 00:28:26 +0000https://millironx.millironx.page/@indiewebpub/tags/albany-county-fair/Goprohttps://millironx.millironx.page/@indiewebpub/tags/gopro/Sun, 13 Nov 2016 00:28:26 +0000https://millironx.millironx.page/@indiewebpub/tags/gopro/Outtakeshttps://millironx.millironx.page/@indiewebpub/tags/outtakes/Mon, 07 Nov 2016 21:11:02 +0000https://millironx.millironx.page/@indiewebpub/tags/outtakes/Artificial Inseminationhttps://millironx.millironx.page/@indiewebpub/tags/artificial-insemination/Tue, 15 Dec 2015 11:20:23 +0000https://millironx.millironx.page/@indiewebpub/tags/artificial-insemination/Cattlehttps://millironx.millironx.page/@indiewebpub/tags/cattle/Tue, 15 Dec 2015 11:20:23 +0000https://millironx.millironx.page/@indiewebpub/tags/cattle/Ranchinghttps://millironx.millironx.page/@indiewebpub/tags/ranching/Fri, 10 Jul 2015 18:23:48 +0000https://millironx.millironx.page/@indiewebpub/tags/ranching/Wyominghttps://millironx.millironx.page/@indiewebpub/tags/wyoming/Fri, 10 Jul 2015 18:23:48 +0000https://millironx.millironx.page/@indiewebpub/tags/wyoming/ Diseasehttps://millironx.millironx.page/@indiewebpub/tags/-disease/Fri, 12 Jun 2015 11:58:14 +0000https://millironx.millironx.page/@indiewebpub/tags/-disease/Mocumentaryhttps://millironx.millironx.page/@indiewebpub/tags/mocumentary/Fri, 12 Jun 2015 11:58:14 +0000https://millironx.millironx.page/@indiewebpub/tags/mocumentary/4-H Carnivalhttps://millironx.millironx.page/@indiewebpub/tags/4-h-carnival/Fri, 20 Mar 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/4-h-carnival/Albany County 4-Hhttps://millironx.millironx.page/@indiewebpub/tags/albany-county-4-h/Fri, 20 Mar 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/albany-county-4-h/Marti Grashttps://millironx.millironx.page/@indiewebpub/tags/marti-gras/Fri, 20 Mar 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/marti-gras/Rubber Band Gunshttps://millironx.millironx.page/@indiewebpub/tags/rubber-band-guns/Fri, 20 Mar 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/rubber-band-guns/Shooting Galleryhttps://millironx.millironx.page/@indiewebpub/tags/shooting-gallery/Fri, 20 Mar 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/shooting-gallery/Firearmshttps://millironx.millironx.page/@indiewebpub/tags/firearms/Mon, 16 Feb 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/firearms/Reloadinghttps://millironx.millironx.page/@indiewebpub/tags/reloading/Mon, 16 Feb 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/reloading/Repetitionhttps://millironx.millironx.page/@indiewebpub/tags/repetition/Mon, 16 Feb 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/repetition/Hayinghttps://millironx.millironx.page/@indiewebpub/tags/haying/Mon, 02 Feb 2015 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/haying/Christmashttps://millironx.millironx.page/@indiewebpub/tags/christmas/Fri, 26 Dec 2014 15:45:36 +0000https://millironx.millironx.page/@indiewebpub/tags/christmas/Winterhttps://millironx.millironx.page/@indiewebpub/tags/winter/Fri, 26 Dec 2014 15:45:36 +0000https://millironx.millironx.page/@indiewebpub/tags/winter/Cowshttps://millironx.millironx.page/@indiewebpub/tags/cows/Thu, 11 Dec 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/cows/Horseridinghttps://millironx.millironx.page/@indiewebpub/tags/horseriding/Thu, 04 Dec 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/horseriding/Herdinghttps://millironx.millironx.page/@indiewebpub/tags/herding/Tue, 02 Dec 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/herding/Bloopershttps://millironx.millironx.page/@indiewebpub/tags/bloopers/Mon, 01 Dec 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/bloopers/Documentaryhttps://millironx.millironx.page/@indiewebpub/tags/documentary/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/documentary/Historyhttps://millironx.millironx.page/@indiewebpub/tags/history/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/history/Wild Westhttps://millironx.millironx.page/@indiewebpub/tags/wild-west/Sat, 22 Nov 2014 00:00:00 +0000https://millironx.millironx.page/@indiewebpub/tags/wild-west/ \ No newline at end of file diff --git a/tags/ionic-strength/feed.xml b/tags/ionic-strength/feed.xml deleted file mode 100644 index 79b7913..0000000 --- a/tags/ionic-strength/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/ionic-strength/2025-03-31T00:14:19+00:00All content tagged "ionic strength" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/tags/ionic-strength/index.html b/tags/ionic-strength/index.html deleted file mode 100644 index 8e82b47..0000000 --- a/tags/ionic-strength/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Ionic Strength -- -Milliron X -
-Milliron X

Milliron X

Tag: -Ionic Strength

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/ionic-strength/index.xml b/tags/ionic-strength/index.xml deleted file mode 100644 index e80fdca..0000000 --- a/tags/ionic-strength/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Ionic Strength on MillironX - http://localhost:1313/tags/ionic-strength/ - Recent content in Ionic Strength on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/tags/ionic-strength/page/1/index.html b/tags/ionic-strength/page/1/index.html deleted file mode 100644 index 7d328fc..0000000 --- a/tags/ionic-strength/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/ionic-strength/ - \ No newline at end of file diff --git a/tags/julia/feed.xml b/tags/julia/feed.xml deleted file mode 100644 index d14a64b..0000000 --- a/tags/julia/feed.xml +++ /dev/null @@ -1,10 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/julia/2025-03-31T00:14:19+00:00All content tagged "julia" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/docker-biojulia/docker-BioJulia2025-03-15T21:22:22-05:002025-03-15T21:22:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -BioJulia in a Docker image -<p>BioJulia in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/docker-juliapro/docker-JuliaPro2025-03-14T21:01:21-05:002025-03-14T21:01:21-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -JuliaPro in a Docker image -<p>JuliaPro in a Docker image</p> -https://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> - \ No newline at end of file diff --git a/tags/julia/index.html b/tags/julia/index.html deleted file mode 100644 index 0f85187..0000000 --- a/tags/julia/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -Julia -- -Milliron X -
-Milliron X

Milliron X

Tag: -Julia

-Subscribe

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/julia/index.xml b/tags/julia/index.xml deleted file mode 100644 index 9949591..0000000 --- a/tags/julia/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Julia on MillironX - http://localhost:1313/tags/julia/ - Recent content in Julia on MillironX - Hugo - en-us - Sat, 01 Mar 2025 20:22:10 -0600 - - - docker-BioJulia - http://localhost:1313/code/docker-biojulia/ - Sat, 01 Mar 2025 20:22:10 -0600 - http://localhost:1313/code/docker-biojulia/ - <p>BioJulia in a Docker image</p> - - - docker-JuliaPro - http://localhost:1313/code/docker-juliapro/ - Fri, 28 Feb 2025 20:08:53 -0600 - http://localhost:1313/code/docker-juliapro/ - <p>JuliaPro in a Docker image</p> - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - diff --git a/tags/julia/page/1/index.html b/tags/julia/page/1/index.html deleted file mode 100644 index 2337eac..0000000 --- a/tags/julia/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/julia/ - \ No newline at end of file diff --git a/tags/keepepdsreal/feed.xml b/tags/keepepdsreal/feed.xml deleted file mode 100644 index b83a094..0000000 --- a/tags/keepepdsreal/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/keepepdsreal/2025-03-31T00:14:19+00:00All content tagged "keepepdsreal" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/keepepdsreal/index.html b/tags/keepepdsreal/index.html deleted file mode 100644 index ae90b96..0000000 --- a/tags/keepepdsreal/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Keepepdsreal -- -Milliron X -
-Milliron X

Milliron X

Tag: -Keepepdsreal

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/keepepdsreal/index.xml b/tags/keepepdsreal/index.xml deleted file mode 100644 index 3a3e6a3..0000000 --- a/tags/keepepdsreal/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Keepepdsreal on MillironX - http://localhost:1313/tags/keepepdsreal/ - Recent content in Keepepdsreal on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/keepepdsreal/page/1/index.html b/tags/keepepdsreal/page/1/index.html deleted file mode 100644 index 0d8fdec..0000000 --- a/tags/keepepdsreal/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/keepepdsreal/ - \ No newline at end of file diff --git a/tags/linux/feed.xml b/tags/linux/feed.xml deleted file mode 100644 index 412784b..0000000 --- a/tags/linux/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/linux/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "linux" on Milliron X - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/tags/linux/index.html b/tags/linux/index.html deleted file mode 100644 index bde9c4e..0000000 --- a/tags/linux/index.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - Tag: - - Linux - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Linux - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/linux/index.xml b/tags/linux/index.xml deleted file mode 100644 index a097239..0000000 --- a/tags/linux/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Linux on MillironX - http://localhost:1313/tags/linux/ - Recent content in Linux on MillironX - Hugo - en-us - Mon, 01 Jan 2024 00:00:00 +0000 - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/tags/linux/page/1/index.html b/tags/linux/page/1/index.html deleted file mode 100644 index 1cb9593..0000000 --- a/tags/linux/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/linux/ - - - - - - diff --git a/tags/literature/feed.xml b/tags/literature/feed.xml deleted file mode 100644 index 4485c21..0000000 --- a/tags/literature/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/literature/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "literature" on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - diff --git a/tags/literature/index.html b/tags/literature/index.html deleted file mode 100644 index 130d399..0000000 --- a/tags/literature/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Literature - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Literature - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/literature/index.xml b/tags/literature/index.xml deleted file mode 100644 index 73b05f8..0000000 --- a/tags/literature/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Literature on MillironX - http://localhost:1313/tags/literature/ - Recent content in Literature on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - diff --git a/tags/literature/page/1/index.html b/tags/literature/page/1/index.html deleted file mode 100644 index 205f9be..0000000 --- a/tags/literature/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/literature/ - - - - - - diff --git a/tags/love/feed.xml b/tags/love/feed.xml deleted file mode 100644 index 70366ea..0000000 --- a/tags/love/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/love/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "love" on Milliron X - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - diff --git a/tags/love/index.html b/tags/love/index.html deleted file mode 100644 index bffdb35..0000000 --- a/tags/love/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Love - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Love - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/love/index.xml b/tags/love/index.xml deleted file mode 100644 index 0114ee5..0000000 --- a/tags/love/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Love on MillironX - http://localhost:1313/tags/love/ - Recent content in Love on MillironX - Hugo - en-us - Fri, 01 Mar 2024 00:00:00 +0000 - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - diff --git a/tags/love/page/1/index.html b/tags/love/page/1/index.html deleted file mode 100644 index a9ae078..0000000 --- a/tags/love/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/love/ - - - - - - diff --git a/tags/marti-gras/feed.xml b/tags/marti-gras/feed.xml deleted file mode 100644 index 47778fd..0000000 --- a/tags/marti-gras/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/marti-gras/2025-03-31T00:14:19+00:00All content tagged "marti gras" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> - \ No newline at end of file diff --git a/tags/marti-gras/index.html b/tags/marti-gras/index.html deleted file mode 100644 index f61d649..0000000 --- a/tags/marti-gras/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Marti Gras -- -Milliron X -
-Milliron X

Milliron X

Tag: -Marti Gras

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/marti-gras/index.xml b/tags/marti-gras/index.xml deleted file mode 100644 index 3720751..0000000 --- a/tags/marti-gras/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Marti Gras on MillironX - http://localhost:1313/tags/marti-gras/ - Recent content in Marti Gras on MillironX - Hugo - en-us - Fri, 20 Mar 2015 00:00:00 +0000 - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - diff --git a/tags/marti-gras/page/1/index.html b/tags/marti-gras/page/1/index.html deleted file mode 100644 index 94ae1d8..0000000 --- a/tags/marti-gras/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/marti-gras/ - \ No newline at end of file diff --git a/tags/medicine/feed.xml b/tags/medicine/feed.xml deleted file mode 100644 index 3f37783..0000000 --- a/tags/medicine/feed.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/medicine/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "medicine" on Milliron X - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - diff --git a/tags/medicine/index.html b/tags/medicine/index.html deleted file mode 100644 index e370bf6..0000000 --- a/tags/medicine/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Medicine - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Medicine - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/medicine/index.xml b/tags/medicine/index.xml deleted file mode 100644 index b2978dc..0000000 --- a/tags/medicine/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Medicine on MillironX - http://localhost:1313/tags/medicine/ - Recent content in Medicine on MillironX - Hugo - en-us - Wed, 01 May 2024 00:00:00 +0000 - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - diff --git a/tags/medicine/page/1/index.html b/tags/medicine/page/1/index.html deleted file mode 100644 index 1087b6c..0000000 --- a/tags/medicine/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/medicine/ - - - - - - diff --git a/tags/metagenomics/feed.xml b/tags/metagenomics/feed.xml deleted file mode 100644 index 85c6b52..0000000 --- a/tags/metagenomics/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/metagenomics/2025-03-31T00:14:19+00:00All content tagged "metagenomics" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/tags/metagenomics/index.html b/tags/metagenomics/index.html deleted file mode 100644 index 5728c19..0000000 --- a/tags/metagenomics/index.html +++ /dev/null @@ -1,46 +0,0 @@ -Tag: -Metagenomics -- -Milliron X -
-Milliron X

Milliron X

Tag: -Metagenomics

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/metagenomics/index.xml b/tags/metagenomics/index.xml deleted file mode 100644 index c60aa09..0000000 --- a/tags/metagenomics/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Metagenomics on MillironX - http://localhost:1313/tags/metagenomics/ - Recent content in Metagenomics on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/tags/metagenomics/page/1/index.html b/tags/metagenomics/page/1/index.html deleted file mode 100644 index b1257b2..0000000 --- a/tags/metagenomics/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/metagenomics/ - \ No newline at end of file diff --git a/tags/microbial-electrolysis-cells/feed.xml b/tags/microbial-electrolysis-cells/feed.xml deleted file mode 100644 index 98c83cc..0000000 --- a/tags/microbial-electrolysis-cells/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/microbial-electrolysis-cells/2025-03-31T00:14:19+00:00All content tagged "microbial electrolysis cells" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> - \ No newline at end of file diff --git a/tags/microbial-electrolysis-cells/index.html b/tags/microbial-electrolysis-cells/index.html deleted file mode 100644 index 2f012df..0000000 --- a/tags/microbial-electrolysis-cells/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -Microbial Electrolysis Cells -- -Milliron X -
-Milliron X

Milliron X

Tag: -Microbial Electrolysis Cells

-Subscribe
Thumbnail of thumbnail.jpg

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/microbial-electrolysis-cells/index.xml b/tags/microbial-electrolysis-cells/index.xml deleted file mode 100644 index 81d1863..0000000 --- a/tags/microbial-electrolysis-cells/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Microbial Electrolysis Cells on MillironX - http://localhost:1313/tags/microbial-electrolysis-cells/ - Recent content in Microbial Electrolysis Cells on MillironX - Hugo - en-us - Tue, 14 May 2019 00:00:00 +0000 - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - diff --git a/tags/microbial-electrolysis-cells/page/1/index.html b/tags/microbial-electrolysis-cells/page/1/index.html deleted file mode 100644 index 8a4d643..0000000 --- a/tags/microbial-electrolysis-cells/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/microbial-electrolysis-cells/ - \ No newline at end of file diff --git a/tags/microbiome/feed.xml b/tags/microbiome/feed.xml deleted file mode 100644 index ce3cf3f..0000000 --- a/tags/microbiome/feed.xml +++ /dev/null @@ -1,35 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/microbiome/2025-03-31T00:14:19+00:00All content tagged "microbiome" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> - \ No newline at end of file diff --git a/tags/microbiome/index.html b/tags/microbiome/index.html deleted file mode 100644 index b0bbc94..0000000 --- a/tags/microbiome/index.html +++ /dev/null @@ -1,46 +0,0 @@ -Tag: -Microbiome -- -Milliron X -
-Milliron X

Milliron X

Tag: -Microbiome

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/microbiome/index.xml b/tags/microbiome/index.xml deleted file mode 100644 index b893793..0000000 --- a/tags/microbiome/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Microbiome on MillironX - http://localhost:1313/tags/microbiome/ - Recent content in Microbiome on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - diff --git a/tags/microbiome/page/1/index.html b/tags/microbiome/page/1/index.html deleted file mode 100644 index 6d888f1..0000000 --- a/tags/microbiome/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/microbiome/ - \ No newline at end of file diff --git a/tags/microsoft/feed.xml b/tags/microsoft/feed.xml deleted file mode 100644 index 8b584d5..0000000 --- a/tags/microsoft/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/microsoft/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "microsoft" on Milliron X - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/tags/microsoft/index.html b/tags/microsoft/index.html deleted file mode 100644 index 5861584..0000000 --- a/tags/microsoft/index.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - Tag: - - Microsoft - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Microsoft - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/microsoft/index.xml b/tags/microsoft/index.xml deleted file mode 100644 index 85d7b8a..0000000 --- a/tags/microsoft/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Microsoft on MillironX - http://localhost:1313/tags/microsoft/ - Recent content in Microsoft on MillironX - Hugo - en-us - Mon, 01 Jan 2024 00:00:00 +0000 - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/tags/microsoft/page/1/index.html b/tags/microsoft/page/1/index.html deleted file mode 100644 index c0c252c..0000000 --- a/tags/microsoft/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/microsoft/ - - - - - - diff --git a/tags/mocumentary/feed.xml b/tags/mocumentary/feed.xml deleted file mode 100644 index 813b5a2..0000000 --- a/tags/mocumentary/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/mocumentary/2025-03-31T00:14:19+00:00All content tagged "mocumentary" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - \ No newline at end of file diff --git a/tags/mocumentary/index.html b/tags/mocumentary/index.html deleted file mode 100644 index 94f5ffd..0000000 --- a/tags/mocumentary/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Mocumentary -- -Milliron X -
-Milliron X

Milliron X

Tag: -Mocumentary

-Subscribe
Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/mocumentary/index.xml b/tags/mocumentary/index.xml deleted file mode 100644 index eebde83..0000000 --- a/tags/mocumentary/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Mocumentary on MillironX - http://localhost:1313/tags/mocumentary/ - Recent content in Mocumentary on MillironX - Hugo - en-us - Fri, 12 Jun 2015 11:58:14 +0000 - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - diff --git a/tags/mocumentary/page/1/index.html b/tags/mocumentary/page/1/index.html deleted file mode 100644 index 03a77c1..0000000 --- a/tags/mocumentary/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/mocumentary/ - \ No newline at end of file diff --git a/tags/next-generation-sequencing/feed.xml b/tags/next-generation-sequencing/feed.xml deleted file mode 100644 index c21452d..0000000 --- a/tags/next-generation-sequencing/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/next-generation-sequencing/2025-03-31T00:14:19+00:00All content tagged "next-generation sequencing" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/tags/next-generation-sequencing/index.html b/tags/next-generation-sequencing/index.html deleted file mode 100644 index c9d4237..0000000 --- a/tags/next-generation-sequencing/index.html +++ /dev/null @@ -1,50 +0,0 @@ -Tag: -Next-Generation Sequencing -- -Milliron X -
-Milliron X

Milliron X

Tag: -Next-Generation Sequencing

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/next-generation-sequencing/index.xml b/tags/next-generation-sequencing/index.xml deleted file mode 100644 index 2c4888b..0000000 --- a/tags/next-generation-sequencing/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Next-Generation Sequencing on MillironX - http://localhost:1313/tags/next-generation-sequencing/ - Recent content in Next-Generation Sequencing on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/tags/next-generation-sequencing/page/1/index.html b/tags/next-generation-sequencing/page/1/index.html deleted file mode 100644 index afc2f7a..0000000 --- a/tags/next-generation-sequencing/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/next-generation-sequencing/ - \ No newline at end of file diff --git a/tags/nf-core/feed.xml b/tags/nf-core/feed.xml deleted file mode 100644 index 0c718b3..0000000 --- a/tags/nf-core/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/nf-core/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "nf-core" on Milliron X - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - diff --git a/tags/nf-core/index.html b/tags/nf-core/index.html deleted file mode 100644 index 1ad231a..0000000 --- a/tags/nf-core/index.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - Tag: - - Nf-Core - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Nf-Core - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/nf-core/index.xml b/tags/nf-core/index.xml deleted file mode 100644 index 455a990..0000000 --- a/tags/nf-core/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Nf-Core on MillironX - http://localhost:1313/tags/nf-core/ - Recent content in Nf-Core on MillironX - Hugo - en-us - Sun, 01 Sep 2024 00:00:00 +0000 - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - diff --git a/tags/nf-core/page/1/index.html b/tags/nf-core/page/1/index.html deleted file mode 100644 index 3871ccc..0000000 --- a/tags/nf-core/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/nf-core/ - - - - - - diff --git a/tags/outtakes/feed.xml b/tags/outtakes/feed.xml deleted file mode 100644 index e1be9d1..0000000 --- a/tags/outtakes/feed.xml +++ /dev/null @@ -1,6 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/outtakes/2025-03-31T00:14:19+00:00All content tagged "outtakes" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> - \ No newline at end of file diff --git a/tags/outtakes/index.html b/tags/outtakes/index.html deleted file mode 100644 index 924dfee..0000000 --- a/tags/outtakes/index.html +++ /dev/null @@ -1,35 +0,0 @@ -Tag: -Outtakes -- -Milliron X -
-Milliron X

Milliron X

Tag: -Outtakes

-Subscribe
Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/outtakes/index.xml b/tags/outtakes/index.xml deleted file mode 100644 index d389d28..0000000 --- a/tags/outtakes/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Outtakes on MillironX - http://localhost:1313/tags/outtakes/ - Recent content in Outtakes on MillironX - Hugo - en-us - Mon, 07 Nov 2016 21:11:02 +0000 - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - diff --git a/tags/outtakes/page/1/index.html b/tags/outtakes/page/1/index.html deleted file mode 100644 index 51a40f6..0000000 --- a/tags/outtakes/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/outtakes/ - \ No newline at end of file diff --git a/tags/page/1/index.html b/tags/page/1/index.html deleted file mode 100644 index 56fe5e9..0000000 --- a/tags/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/ - \ No newline at end of file diff --git a/tags/page/10/index.html b/tags/page/10/index.html deleted file mode 100644 index 62ee1a6..0000000 --- a/tags/page/10/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/11/index.html b/tags/page/11/index.html deleted file mode 100644 index 2d73f27..0000000 --- a/tags/page/11/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/12/index.html b/tags/page/12/index.html deleted file mode 100644 index 8fba67e..0000000 --- a/tags/page/12/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/13/index.html b/tags/page/13/index.html deleted file mode 100644 index 9d3c459..0000000 --- a/tags/page/13/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/14/index.html b/tags/page/14/index.html deleted file mode 100644 index dbdfeb4..0000000 --- a/tags/page/14/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/15/index.html b/tags/page/15/index.html deleted file mode 100644 index c67327e..0000000 --- a/tags/page/15/index.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Outtakes

- - -
- 07 Nov 2016 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Artificial Insemination

- - -
- 15 Dec 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Ranching

- - -
- 10 Jul 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Wyoming

- - -
- 10 Jul 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Disease

- - -
- 12 Jun 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/16/index.html b/tags/page/16/index.html deleted file mode 100644 index c4704d0..0000000 --- a/tags/page/16/index.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Mocumentary

- - -
- 12 Jun 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

4-H Carnival

- - -
- 20 Mar 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Albany County 4-H

- - -
- 20 Mar 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Marti Gras

- - -
- 20 Mar 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Rubber Band Guns

- - -
- 20 Mar 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/17/index.html b/tags/page/17/index.html deleted file mode 100644 index 2ab280e..0000000 --- a/tags/page/17/index.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Shooting Gallery

- - -
- 20 Mar 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Firearms

- - -
- 16 Feb 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Reloading

- - -
- 16 Feb 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Repetition

- - -
- 16 Feb 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Haying

- - -
- 02 Feb 2015 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/18/index.html b/tags/page/18/index.html deleted file mode 100644 index 42e8eba..0000000 --- a/tags/page/18/index.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Christmas

- - -
- 26 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Winter

- - -
- 26 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Cows

- - -
- 11 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Horseriding

- - -
- 04 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Herding

- - -
- 02 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/19/index.html b/tags/page/19/index.html deleted file mode 100644 index b5e84b0..0000000 --- a/tags/page/19/index.html +++ /dev/null @@ -1,501 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Bloopers

- - -
- 01 Dec 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Documentary

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

History

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Wild West

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/2/index.html b/tags/page/2/index.html deleted file mode 100644 index 06991ad..0000000 --- a/tags/page/2/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/20/index.html b/tags/page/20/index.html deleted file mode 100644 index c332356..0000000 --- a/tags/page/20/index.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - Tag: - - Tags - - - - - Milliron X - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - -
-
-
-

- Tag: - Tags - -

-
-
-
- -
- - - - - -
- - - - - - - - - - -
-
- -
- -

Documentary

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

History

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Wild West

- - -
- 22 Nov 2014 -
- -
- - - - -
- -
- - - -

- - Read more » -

- - -
-
-
- - - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/page/3/index.html b/tags/page/3/index.html deleted file mode 100644 index 6e36b36..0000000 --- a/tags/page/3/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/4/index.html b/tags/page/4/index.html deleted file mode 100644 index 5049d1a..0000000 --- a/tags/page/4/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/5/index.html b/tags/page/5/index.html deleted file mode 100644 index 9a598a6..0000000 --- a/tags/page/5/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/6/index.html b/tags/page/6/index.html deleted file mode 100644 index 1f89fdc..0000000 --- a/tags/page/6/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/7/index.html b/tags/page/7/index.html deleted file mode 100644 index f167a26..0000000 --- a/tags/page/7/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/8/index.html b/tags/page/8/index.html deleted file mode 100644 index cb28b09..0000000 --- a/tags/page/8/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/page/9/index.html b/tags/page/9/index.html deleted file mode 100644 index 706a342..0000000 --- a/tags/page/9/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Tag: -Tags -- -Milliron X -
-Milliron X

Milliron X

Tag: -Tags

-Subscribe

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/people/feed.xml b/tags/people/feed.xml deleted file mode 100644 index c6d0583..0000000 --- a/tags/people/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/people/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "people" on Milliron X - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - diff --git a/tags/people/index.html b/tags/people/index.html deleted file mode 100644 index 68532db..0000000 --- a/tags/people/index.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - Tag: - - People - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - People - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/people/index.xml b/tags/people/index.xml deleted file mode 100644 index f8906ea..0000000 --- a/tags/people/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - People on MillironX - http://localhost:1313/tags/people/ - Recent content in People on MillironX - Hugo - en-us - Sun, 01 Sep 2024 00:00:00 +0000 - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - diff --git a/tags/people/page/1/index.html b/tags/people/page/1/index.html deleted file mode 100644 index 2e42785..0000000 --- a/tags/people/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/people/ - - - - - - diff --git a/tags/phineas-and-ferb/feed.xml b/tags/phineas-and-ferb/feed.xml deleted file mode 100644 index a404be4..0000000 --- a/tags/phineas-and-ferb/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/phineas-and-ferb/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "phineas and ferb" on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - diff --git a/tags/phineas-and-ferb/index.html b/tags/phineas-and-ferb/index.html deleted file mode 100644 index d2e2bea..0000000 --- a/tags/phineas-and-ferb/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Phineas and Ferb - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Phineas and Ferb - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/phineas-and-ferb/index.xml b/tags/phineas-and-ferb/index.xml deleted file mode 100644 index 9801401..0000000 --- a/tags/phineas-and-ferb/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Phineas and Ferb on MillironX - http://localhost:1313/tags/phineas-and-ferb/ - Recent content in Phineas and Ferb on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - diff --git a/tags/phineas-and-ferb/page/1/index.html b/tags/phineas-and-ferb/page/1/index.html deleted file mode 100644 index fbb3290..0000000 --- a/tags/phineas-and-ferb/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/phineas-and-ferb/ - - - - - - diff --git a/tags/pipeline/feed.xml b/tags/pipeline/feed.xml deleted file mode 100644 index b6461c1..0000000 --- a/tags/pipeline/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/pipeline/2025-03-31T00:14:19+00:00All content tagged "pipeline" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/tags/pipeline/index.html b/tags/pipeline/index.html deleted file mode 100644 index 3807a68..0000000 --- a/tags/pipeline/index.html +++ /dev/null @@ -1,50 +0,0 @@ -Tag: -Pipeline -- -Milliron X -
-Milliron X

Milliron X

Tag: -Pipeline

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/pipeline/index.xml b/tags/pipeline/index.xml deleted file mode 100644 index be33806..0000000 --- a/tags/pipeline/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Pipeline on MillironX - http://localhost:1313/tags/pipeline/ - Recent content in Pipeline on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/tags/pipeline/page/1/index.html b/tags/pipeline/page/1/index.html deleted file mode 100644 index 6ebcdc6..0000000 --- a/tags/pipeline/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/pipeline/ - \ No newline at end of file diff --git a/tags/polymers/feed.xml b/tags/polymers/feed.xml deleted file mode 100644 index bbe1118..0000000 --- a/tags/polymers/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/polymers/2025-03-31T00:14:19+00:00All content tagged "polymers" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/tags/polymers/index.html b/tags/polymers/index.html deleted file mode 100644 index 67c5ea5..0000000 --- a/tags/polymers/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Polymers -- -Milliron X -
-Milliron X

Milliron X

Tag: -Polymers

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/polymers/index.xml b/tags/polymers/index.xml deleted file mode 100644 index 498d3ed..0000000 --- a/tags/polymers/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Polymers on MillironX - http://localhost:1313/tags/polymers/ - Recent content in Polymers on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/tags/polymers/page/1/index.html b/tags/polymers/page/1/index.html deleted file mode 100644 index 55945e3..0000000 --- a/tags/polymers/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/polymers/ - \ No newline at end of file diff --git a/tags/polyoxometalate/feed.xml b/tags/polyoxometalate/feed.xml deleted file mode 100644 index 1181e91..0000000 --- a/tags/polyoxometalate/feed.xml +++ /dev/null @@ -1,53 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/polyoxometalate/2025-03-31T00:14:19+00:00All content tagged "polyoxometalate" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/tags/polyoxometalate/index.html b/tags/polyoxometalate/index.html deleted file mode 100644 index e4f6bf4..0000000 --- a/tags/polyoxometalate/index.html +++ /dev/null @@ -1,68 +0,0 @@ -Tag: -Polyoxometalate -- -Milliron X -
-Milliron X

Milliron X

Tag: -Polyoxometalate

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/polyoxometalate/index.xml b/tags/polyoxometalate/index.xml deleted file mode 100644 index 2fd3ace..0000000 --- a/tags/polyoxometalate/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Polyoxometalate on MillironX - http://localhost:1313/tags/polyoxometalate/ - Recent content in Polyoxometalate on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/tags/polyoxometalate/page/1/index.html b/tags/polyoxometalate/page/1/index.html deleted file mode 100644 index c816715..0000000 --- a/tags/polyoxometalate/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/polyoxometalate/ - \ No newline at end of file diff --git a/tags/porcine-enteric-disease/feed.xml b/tags/porcine-enteric-disease/feed.xml deleted file mode 100644 index a73d4a8..0000000 --- a/tags/porcine-enteric-disease/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/porcine-enteric-disease/2025-03-31T00:14:19+00:00All content tagged "porcine enteric disease" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/tags/porcine-enteric-disease/index.html b/tags/porcine-enteric-disease/index.html deleted file mode 100644 index b62488e..0000000 --- a/tags/porcine-enteric-disease/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Porcine Enteric Disease -- -Milliron X -
-Milliron X

Milliron X

Tag: -Porcine Enteric Disease

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/porcine-enteric-disease/index.xml b/tags/porcine-enteric-disease/index.xml deleted file mode 100644 index e6606c5..0000000 --- a/tags/porcine-enteric-disease/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Porcine Enteric Disease on MillironX - http://localhost:1313/tags/porcine-enteric-disease/ - Recent content in Porcine Enteric Disease on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/tags/porcine-enteric-disease/page/1/index.html b/tags/porcine-enteric-disease/page/1/index.html deleted file mode 100644 index bf1d830..0000000 --- a/tags/porcine-enteric-disease/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/porcine-enteric-disease/ - \ No newline at end of file diff --git a/tags/porcine-rotavirus/feed.xml b/tags/porcine-rotavirus/feed.xml deleted file mode 100644 index f2c5bd8..0000000 --- a/tags/porcine-rotavirus/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/porcine-rotavirus/2025-03-31T00:14:19+00:00All content tagged "porcine rotavirus" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/tags/porcine-rotavirus/index.html b/tags/porcine-rotavirus/index.html deleted file mode 100644 index 4827780..0000000 --- a/tags/porcine-rotavirus/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Porcine Rotavirus -- -Milliron X -
-Milliron X

Milliron X

Tag: -Porcine Rotavirus

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/porcine-rotavirus/index.xml b/tags/porcine-rotavirus/index.xml deleted file mode 100644 index 2bc7f42..0000000 --- a/tags/porcine-rotavirus/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Porcine Rotavirus on MillironX - http://localhost:1313/tags/porcine-rotavirus/ - Recent content in Porcine Rotavirus on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/tags/porcine-rotavirus/page/1/index.html b/tags/porcine-rotavirus/page/1/index.html deleted file mode 100644 index 62c4a57..0000000 --- a/tags/porcine-rotavirus/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/porcine-rotavirus/ - \ No newline at end of file diff --git a/tags/predicted-transmitting-abilities/feed.xml b/tags/predicted-transmitting-abilities/feed.xml deleted file mode 100644 index 8aa67e2..0000000 --- a/tags/predicted-transmitting-abilities/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/predicted-transmitting-abilities/2025-03-31T00:14:19+00:00All content tagged "predicted-transmitting-abilities" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/beefblup/beefblup2021-08-09T19:10:22-05:002021-08-09T19:10:22-05:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal -<p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - \ No newline at end of file diff --git a/tags/predicted-transmitting-abilities/index.html b/tags/predicted-transmitting-abilities/index.html deleted file mode 100644 index 57f9942..0000000 --- a/tags/predicted-transmitting-abilities/index.html +++ /dev/null @@ -1,38 +0,0 @@ -Tag: -Predicted-Transmitting-Abilities -- -Milliron X -
-Milliron X

Milliron X

Tag: -Predicted-Transmitting-Abilities

-Subscribe

beefblup

09 Aug 2021

Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/predicted-transmitting-abilities/index.xml b/tags/predicted-transmitting-abilities/index.xml deleted file mode 100644 index 268b199..0000000 --- a/tags/predicted-transmitting-abilities/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Predicted-Transmitting-Abilities on MillironX - http://localhost:1313/tags/predicted-transmitting-abilities/ - Recent content in Predicted-Transmitting-Abilities on MillironX - Hugo - en-us - Mon, 09 Aug 2021 19:10:22 -0500 - - - beefblup - http://localhost:1313/code/beefblup/ - Mon, 09 Aug 2021 19:10:22 -0500 - http://localhost:1313/code/beefblup/ - <p>Scripts and spreadsheets for performing single-variate Best Linear Unbiased Predictor (BLUP) to find beef cattle breeding values #KeepEPDsReal</p> - - - diff --git a/tags/predicted-transmitting-abilities/page/1/index.html b/tags/predicted-transmitting-abilities/page/1/index.html deleted file mode 100644 index 19fdf8d..0000000 --- a/tags/predicted-transmitting-abilities/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/predicted-transmitting-abilities/ - \ No newline at end of file diff --git a/tags/programming/feed.xml b/tags/programming/feed.xml deleted file mode 100644 index 6beaec6..0000000 --- a/tags/programming/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/programming/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "programming" on Milliron X - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - diff --git a/tags/programming/index.html b/tags/programming/index.html deleted file mode 100644 index e14c531..0000000 --- a/tags/programming/index.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - Tag: - - Programming - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Programming - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/programming/index.xml b/tags/programming/index.xml deleted file mode 100644 index 70dc731..0000000 --- a/tags/programming/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Programming on MillironX - http://localhost:1313/tags/programming/ - Recent content in Programming on MillironX - Hugo - en-us - Sun, 01 Sep 2024 00:00:00 +0000 - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - diff --git a/tags/programming/page/1/index.html b/tags/programming/page/1/index.html deleted file mode 100644 index b086618..0000000 --- a/tags/programming/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/programming/ - - - - - - diff --git a/tags/promotion/feed.xml b/tags/promotion/feed.xml deleted file mode 100644 index a778d6e..0000000 --- a/tags/promotion/feed.xml +++ /dev/null @@ -1,10 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/promotion/2025-03-31T00:14:19+00:00All content tagged "promotion" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - \ No newline at end of file diff --git a/tags/promotion/index.html b/tags/promotion/index.html deleted file mode 100644 index cf47750..0000000 --- a/tags/promotion/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -Promotion -- -Milliron X -
-Milliron X

Milliron X

Tag: -Promotion

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/promotion/index.xml b/tags/promotion/index.xml deleted file mode 100644 index effa0a4..0000000 --- a/tags/promotion/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Promotion on MillironX - http://localhost:1313/tags/promotion/ - Recent content in Promotion on MillironX - Hugo - en-us - Tue, 07 Nov 2023 00:48:13 +0000 - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - diff --git a/tags/promotion/page/1/index.html b/tags/promotion/page/1/index.html deleted file mode 100644 index e149db7..0000000 --- a/tags/promotion/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/promotion/ - \ No newline at end of file diff --git a/tags/proton-transport/feed.xml b/tags/proton-transport/feed.xml deleted file mode 100644 index c46cc6b..0000000 --- a/tags/proton-transport/feed.xml +++ /dev/null @@ -1,53 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/proton-transport/2025-03-31T00:14:19+00:00All content tagged "proton transport" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/thesis/Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers2020-08-07T00:00:00+00:002020-08-07T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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-5 cm2 s-1 , the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/sodium decavanadate membrane was 3.10 × 10-6 cm2 s-1 , and the diffusivity through a 10%/2% w/w/v poly(vinyl alcohol)/alumina sulfate membrane was 3.32 × 10-7 cm2 s-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. -<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> -https://millironx.millironx.page/@indiewebpub/academia/pva-aiche/Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate2018-10-29T00:00:00+00:002018-10-29T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Samuel R. Wolfehttps://millironx.millironx.page/@indiewebpub/people/samuel-r.-wolfe/Jonathan Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-counts/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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 2 /s × 106 ): 14.0 ± 1.91 for H+ 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>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>&#43;</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> - \ No newline at end of file diff --git a/tags/proton-transport/index.html b/tags/proton-transport/index.html deleted file mode 100644 index 5cf24de..0000000 --- a/tags/proton-transport/index.html +++ /dev/null @@ -1,68 +0,0 @@ -Tag: -Proton Transport -- -Milliron X -
-Milliron X

Milliron X

Tag: -Proton Transport

-Subscribe

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 …

Read more »

Thumbnail of thumbnail.jpg
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/proton-transport/index.xml b/tags/proton-transport/index.xml deleted file mode 100644 index 465bc3f..0000000 --- a/tags/proton-transport/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Proton Transport on MillironX - http://localhost:1313/tags/proton-transport/ - Recent content in Proton Transport on MillironX - Hugo - en-us - Fri, 07 Aug 2020 00:00:00 +0000 - - - Polyoxometalate Incorporation and Effects on Proton Transport in Hydrogel Polymers - http://localhost:1313/academia/thesis/ - Fri, 07 Aug 2020 00:00:00 +0000 - http://localhost:1313/academia/thesis/ - <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> - - - Measuring Diffusion of Trichlorethylene Breakdown Products in Polyvinylalginate - http://localhost:1313/academia/pva-aiche/ - Mon, 29 Oct 2018 00:00:00 +0000 - http://localhost:1313/academia/pva-aiche/ - <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>&#43;</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> - - - diff --git a/tags/proton-transport/page/1/index.html b/tags/proton-transport/page/1/index.html deleted file mode 100644 index 8f69b3e..0000000 --- a/tags/proton-transport/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/proton-transport/ - \ No newline at end of file diff --git a/tags/ptas/feed.xml b/tags/ptas/feed.xml deleted file mode 100644 index ba54818..0000000 --- a/tags/ptas/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/ptas/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "ptas" on Milliron X - - - - http://localhost:1313/posts/keep-epds-real/ - - Keep EPDs Real - 2024-07-01T00:00:00+00:00 - 2024-07-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the world of cattle breeding, there’s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll delve into what EPDs are, why they matter, and how to keep them real. -What Are EPDs? EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow’s children will look like based on their parents’ characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> <h2 id="the-basics-of-genetics">The Basics of Genetics</h2> <p>Before diving into EPDs, let&rsquo;s quickly review the basics of genetics. You see, every living thing has DNA (deoxyribonucleic acid), which contains the instructions for its development and function. The DNA is made up of genes, which code for specific traits like eye color, hair color, or in our case, milk production.</p> <p>Genes are like recipes that tell our bodies what to make – but instead of ingredients like flour and sugar, they&rsquo;re made up of nucleotides. These nucleotides can be either A (adenine), C (cytosine), G (guanine), or T (thymine). The sequence of these nucleotides determines the genetic information.</p> <h2 id="how-epds-work">How EPDs Work</h2> <p>Now that we&rsquo;ve covered some basics, let&rsquo;s talk about how EPDs work. Imagine you&rsquo;re breeding two cows, Bessie and Daisy, to produce offspring. You want Bessie to pass on her desirable traits, like excellent milk production, to their children.</p> <p>To predict which calf will inherit these traits, you&rsquo;d look at the genetic information of both parents. You&rsquo;d then use a complex formula that takes into account the genetic potential of each parent and their offspring&rsquo;s genotype (the actual DNA sequence). This gives you an Expected Progeny Difference score – which represents how much better or worse the trait is expected to be in the offspring compared to the parent.</p> <p>For example, let&rsquo;s say Bessie has a high EPD for milk production, but Daisy has a low EPD. The formula would take into account both parents&rsquo; scores and predict that their calf will have an average EPD for milk production.</p> <h2 id="benefits-of-epds">Benefits of EPDs</h2> <p>So why do we need EPDs? In short, they help us make informed decisions about breeding. By knowing which traits are being passed down from one generation to the next, we can:</p> <ol> <li>Make better breeding choices</li> <li>Predict potential problems or improvements in future generations</li> <li>Develop more accurate breeding strategies</li> </ol> <p>But that&rsquo;s not all – EPDs also have a significant impact on the cattle industry as a whole. By using data-driven approaches, breeders and farmers can:</p> <ol> <li>Increase efficiency and reduce costs</li> <li>Improve animal welfare by selecting for desirable traits</li> <li>Support sustainable agriculture practices</li> </ol> <h2 id="challenges-with-epds">Challenges with EPDs</h2> <p>While EPDs offer many benefits, there are also some challenges to consider:</p> <ol> <li>Data quality: If the data used to calculate EPDs is inaccurate or incomplete, it can lead to incorrect predictions.</li> <li>Complex genetics: Genetic inheritance can be complex, making it difficult to predict how certain traits will manifest in offspring.</li> <li>Selection bias: Breeders may unconsciously favor certain breeds or animals due to personal preferences rather than objective genetic data.</li> </ol> <h2 id="staying-up-to-date-with-epd-research">Staying Up-to-Date with EPD Research</h2> <p>EPDs are constantly evolving as new research emerges and technology improves. To stay informed, it&rsquo;s essential to:</p> <ol> <li>Follow industry publications and scientific journals</li> <li>Attend workshops and conferences on genetics and EPDs</li> <li>Network with other breeders and researchers in the field</li> </ol> <h2 id="conclusion">Conclusion</h2> <p>In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for cattle breeders. By understanding how genetic traits are passed down through generations, we can make more informed decisions about breeding and improve animal welfare.</p> <p>Remember – keeping EPDs real means staying current with the latest research, attending workshops, and networking with experts in the field. With these skills, you&rsquo;ll be well on your way to becoming a genetics-savvy breeder!</p> <p>As always, I&rsquo;m grateful for this opportunity to share my passion for cattle breeding and genetics with you – whether it&rsquo;s through EPDs or something entirely different!</p> - - - - diff --git a/tags/ptas/index.html b/tags/ptas/index.html deleted file mode 100644 index d2dbb50..0000000 --- a/tags/ptas/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Ptas - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Ptas - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Keep EPDs Real

- - -
- 01 Jul 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/ptas/index.xml b/tags/ptas/index.xml deleted file mode 100644 index 262cca5..0000000 --- a/tags/ptas/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Ptas on MillironX - http://localhost:1313/tags/ptas/ - Recent content in Ptas on MillironX - Hugo - en-us - Mon, 01 Jul 2024 00:00:00 +0000 - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - diff --git a/tags/ptas/page/1/index.html b/tags/ptas/page/1/index.html deleted file mode 100644 index 3bc442a..0000000 --- a/tags/ptas/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/ptas/ - - - - - - diff --git a/tags/quasispecies/feed.xml b/tags/quasispecies/feed.xml deleted file mode 100644 index d3bfa70..0000000 --- a/tags/quasispecies/feed.xml +++ /dev/null @@ -1,33 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/quasispecies/2025-03-31T00:14:19+00:00All content tagged "quasispecies" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - \ No newline at end of file diff --git a/tags/quasispecies/index.html b/tags/quasispecies/index.html deleted file mode 100644 index dadd557..0000000 --- a/tags/quasispecies/index.html +++ /dev/null @@ -1,50 +0,0 @@ -Tag: -Quasispecies -- -Milliron X -
-Milliron X

Milliron X

Tag: -Quasispecies

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/quasispecies/index.xml b/tags/quasispecies/index.xml deleted file mode 100644 index 7d590d0..0000000 --- a/tags/quasispecies/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Quasispecies on MillironX - http://localhost:1313/tags/quasispecies/ - Recent content in Quasispecies on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - diff --git a/tags/quasispecies/page/1/index.html b/tags/quasispecies/page/1/index.html deleted file mode 100644 index 83697f8..0000000 --- a/tags/quasispecies/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/quasispecies/ - \ No newline at end of file diff --git a/tags/radiation/feed.xml b/tags/radiation/feed.xml deleted file mode 100644 index e28d363..0000000 --- a/tags/radiation/feed.xml +++ /dev/null @@ -1,11 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/radiation/2025-03-31T00:14:19+00:00All content tagged "radiation" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> - \ No newline at end of file diff --git a/tags/radiation/index.html b/tags/radiation/index.html deleted file mode 100644 index 2ec2dd7..0000000 --- a/tags/radiation/index.html +++ /dev/null @@ -1,42 +0,0 @@ -Tag: -Radiation -- -Milliron X -
-Milliron X

Milliron X

Tag: -Radiation

-Subscribe
Thumbnail of thumbnail.jpg

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/radiation/index.xml b/tags/radiation/index.xml deleted file mode 100644 index 9370663..0000000 --- a/tags/radiation/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Radiation on MillironX - http://localhost:1313/tags/radiation/ - Recent content in Radiation on MillironX - Hugo - en-us - Tue, 14 May 2019 00:00:00 +0000 - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - diff --git a/tags/radiation/page/1/index.html b/tags/radiation/page/1/index.html deleted file mode 100644 index 2919f17..0000000 --- a/tags/radiation/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/radiation/ - \ No newline at end of file diff --git a/tags/ranching/feed.xml b/tags/ranching/feed.xml deleted file mode 100644 index 5a90fe6..0000000 --- a/tags/ranching/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/ranching/2025-03-31T00:14:19+00:00All content tagged "ranching" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - \ No newline at end of file diff --git a/tags/ranching/index.html b/tags/ranching/index.html deleted file mode 100644 index 4332f0f..0000000 --- a/tags/ranching/index.html +++ /dev/null @@ -1,47 +0,0 @@ -Tag: -Ranching -- -Milliron X -
-Milliron X

Milliron X

Tag: -Ranching

-Subscribe
Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/ranching/index.xml b/tags/ranching/index.xml deleted file mode 100644 index 73b3ac6..0000000 --- a/tags/ranching/index.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - Ranching on MillironX - http://localhost:1313/tags/ranching/ - Recent content in Ranching on MillironX - Hugo - en-us - Fri, 10 Jul 2015 18:23:48 +0000 - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - diff --git a/tags/ranching/page/1/index.html b/tags/ranching/page/1/index.html deleted file mode 100644 index 7007f06..0000000 --- a/tags/ranching/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/ranching/ - \ No newline at end of file diff --git a/tags/real-life-real-impact/feed.xml b/tags/real-life-real-impact/feed.xml deleted file mode 100644 index e92ae4c..0000000 --- a/tags/real-life-real-impact/feed.xml +++ /dev/null @@ -1,7 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/real-life-real-impact/2025-03-31T00:14:19+00:00All content tagged "real life real impact" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - \ No newline at end of file diff --git a/tags/real-life-real-impact/index.html b/tags/real-life-real-impact/index.html deleted file mode 100644 index 25f5977..0000000 --- a/tags/real-life-real-impact/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Real Life Real Impact -- -Milliron X -
-Milliron X

Milliron X

Tag: -Real Life Real Impact

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/real-life-real-impact/index.xml b/tags/real-life-real-impact/index.xml deleted file mode 100644 index 6ce722f..0000000 --- a/tags/real-life-real-impact/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Real Life Real Impact on MillironX - http://localhost:1313/tags/real-life-real-impact/ - Recent content in Real Life Real Impact on MillironX - Hugo - en-us - Tue, 07 Nov 2023 00:48:13 +0000 - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - diff --git a/tags/real-life-real-impact/page/1/index.html b/tags/real-life-real-impact/page/1/index.html deleted file mode 100644 index 3b69ecd..0000000 --- a/tags/real-life-real-impact/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/real-life-real-impact/ - \ No newline at end of file diff --git a/tags/religion/feed.xml b/tags/religion/feed.xml deleted file mode 100644 index 6092e1c..0000000 --- a/tags/religion/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/religion/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "religion" on Milliron X - - - - http://localhost:1313/posts/baptist-mafia/ - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - 2024-03-01T00:00:00+00:00 - 2024-03-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they’re being run by the Mafia. -Now, before I proceed, let me just clarify that this isn’t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It’s merely a case of observational reporting, where I’m poking around the fringes of Baptist culture to get a better understanding of what makes them tick. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> <p>As someone who&rsquo;s spent considerable time within the fold (hello, 20+ years of being born again), I&rsquo;ve come to realize that there are certain habits, practices, and attitudes that seem endemic to Baptist churches. Now, keep in mind that this isn&rsquo;t a generalization, but rather an observation born out of personal experience.</p> <p>One of these habits is an extraordinary level of fervor and zealotry. Baptists tend to be deeply invested in their faith, often to the point where it borders on fanaticism. I&rsquo;ve seen folks who will passionately argue for or against just about anything that&rsquo;s perceived as contrary to their interpretation of scripture. Now, while this can be a laudable trait in moderation, excessive fervor can quickly turn toxic.</p> <p>Another peculiar habit of Baptist churches is an unsettling preoccupation with hierarchy and authority. It&rsquo;s not uncommon to see senior pastors wielding near absolute power within the church, often based on factors such as age, experience, or – heaven forbid – personal popularity. This can lead to a culture where dissenting voices are stifled, and nonconformity is discouraged.</p> <p>The worship services themselves often feel more like formal lectures or performances than genuinely communal gatherings. Don&rsquo;t get me wrong; I love a good hymn or sermon as much as the next person, but sometimes it feels like you&rsquo;re trapped in a 90-minute lecture on theology. And if you&rsquo;re sitting too far forward, forget about trying to contribute to the conversation – your participation will be met with stern disapproval.</p> <p>In addition, there&rsquo;s an omnipresent air of suspicion and mistrust that seems to pervade every aspect of Baptist life. If someone doesn&rsquo;t toe the party line, they&rsquo;re often met with swift reprimand or outright ostracism. This creates a toxic environment where people feel pressured into conformity rather than being encouraged to explore their own spirituality.</p> <p>Of course, there are always exceptions to the rule, just like in any other human endeavor. I&rsquo;ve encountered Baptist churches that embody the very opposite of these described habits – places where worship is genuine, inclusive, and welcoming, where individual freedom and creativity are cherished, and where the emphasis is on community rather than control.</p> <p>So what drives this peculiar breed of authoritarianism within some Baptist churches? Is it a genuine misunderstanding of scripture, or perhaps a result of historical context? Or is there something deeper at play – perhaps an inherent tension between the democratic values of American society and the hierarchical structures of traditional Christianity?</p> <p>These questions are central to my exploration of this topic. I&rsquo;ll delve into the complexities of Baptist history, the role of patriarchal ideology, and the ways in which cultural and social factors have shaped the institution over time.</p> <p>In conclusion, while I&rsquo;m not ready to declare war on all things Baptist just yet (although, I must admit, it&rsquo;s tempting), I do hope that this exploration will shed some light on a fascinating aspect of American religiosity. Perhaps, through a better understanding of these peculiar habits and practices, we can foster a more inclusive and compassionate community – one where faith and conviction are tempered by empathy and respect for differing viewpoints.</p> <p>Ultimately, as someone who&rsquo;s found their own spiritual home within the Baptist fold, I believe it&rsquo;s essential to approach this conversation with sensitivity, curiosity, and an open mind. By embracing our shared humanity rather than perpetuating artificial divisions, we can work towards creating a more vibrant tapestry of faith in America – one that celebrates diversity while remaining committed to core principles of love and service.</p> <p>But for now, I&rsquo;ll leave you with these final thoughts on Baptist habits – habits that may seem baffling or even disturbing at times, but are ultimately part of what makes the Baptist experience so richly textured.</p> - - - - diff --git a/tags/religion/index.html b/tags/religion/index.html deleted file mode 100644 index e5babfe..0000000 --- a/tags/religion/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Religion - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Religion - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - -
- -
- - - - - -

- - -

In the grand tapestry of American religiosity, there exists a peculiar breed of -Christian denomination that stands out for its unique blend of fervent devotion -and…let’s be honest, a hint of authoritarianism. I’m, of course, referring to -Baptist churches. Yes, those churches that make you wonder if they’re being run -by the Mafia.

-

Now, before I proceed, let me just clarify that this isn’t an attempt to -disparage the good people who worship in these esteemed …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/religion/index.xml b/tags/religion/index.xml deleted file mode 100644 index 7a6ccc9..0000000 --- a/tags/religion/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Religion on MillironX - http://localhost:1313/tags/religion/ - Recent content in Religion on MillironX - Hugo - en-us - Fri, 01 Mar 2024 00:00:00 +0000 - - - On Baptist habits (or why Baptist churches feel like they're run by the Mafia) - http://localhost:1313/posts/baptist-mafia/ - Fri, 01 Mar 2024 00:00:00 +0000 - http://localhost:1313/posts/baptist-mafia/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the grand tapestry of American religiosity, there exists a peculiar breed of Christian denomination that stands out for its unique blend of fervent devotion and&hellip;let&rsquo;s be honest, a hint of authoritarianism. I&rsquo;m, of course, referring to Baptist churches. Yes, those churches that make you wonder if they&rsquo;re being run by the Mafia.</p> <p>Now, before I proceed, let me just clarify that this isn&rsquo;t an attempt to disparage the good people who worship in these esteemed institutions. No, no, nothing like that. It&rsquo;s merely a case of observational reporting, where I&rsquo;m poking around the fringes of Baptist culture to get a better understanding of what makes them tick.</p> - - - diff --git a/tags/religion/page/1/index.html b/tags/religion/page/1/index.html deleted file mode 100644 index b405ee4..0000000 --- a/tags/religion/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/religion/ - - - - - - diff --git a/tags/reloading/feed.xml b/tags/reloading/feed.xml deleted file mode 100644 index d2e97ed..0000000 --- a/tags/reloading/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/reloading/2025-03-31T00:14:19+00:00All content tagged "reloading" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - \ No newline at end of file diff --git a/tags/reloading/index.html b/tags/reloading/index.html deleted file mode 100644 index 9a3ffb5..0000000 --- a/tags/reloading/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Reloading -- -Milliron X -
-Milliron X

Milliron X

Tag: -Reloading

-Subscribe
Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/reloading/index.xml b/tags/reloading/index.xml deleted file mode 100644 index 968024a..0000000 --- a/tags/reloading/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Reloading on MillironX - http://localhost:1313/tags/reloading/ - Recent content in Reloading on MillironX - Hugo - en-us - Mon, 16 Feb 2015 00:00:00 +0000 - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - diff --git a/tags/reloading/page/1/index.html b/tags/reloading/page/1/index.html deleted file mode 100644 index 0d0bd09..0000000 --- a/tags/reloading/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/reloading/ - \ No newline at end of file diff --git a/tags/repetition/feed.xml b/tags/repetition/feed.xml deleted file mode 100644 index be93734..0000000 --- a/tags/repetition/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/repetition/2025-03-31T00:14:19+00:00All content tagged "repetition" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - \ No newline at end of file diff --git a/tags/repetition/index.html b/tags/repetition/index.html deleted file mode 100644 index 7e89d0d..0000000 --- a/tags/repetition/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Repetition -- -Milliron X -
-Milliron X

Milliron X

Tag: -Repetition

-Subscribe
Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/repetition/index.xml b/tags/repetition/index.xml deleted file mode 100644 index ab9596a..0000000 --- a/tags/repetition/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Repetition on MillironX - http://localhost:1313/tags/repetition/ - Recent content in Repetition on MillironX - Hugo - en-us - Mon, 16 Feb 2015 00:00:00 +0000 - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - diff --git a/tags/repetition/page/1/index.html b/tags/repetition/page/1/index.html deleted file mode 100644 index 8b752cf..0000000 --- a/tags/repetition/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/repetition/ - \ No newline at end of file diff --git a/tags/review/feed.xml b/tags/review/feed.xml deleted file mode 100644 index 65905e9..0000000 --- a/tags/review/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/review/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "review" on Milliron X - - - - http://localhost:1313/posts/phineas-and-ferb/ - - Phineas and Ferb is (an) Epic - 2024-11-01T00:00:00+00:00 - 2024-11-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - “Ancient literary epics often followed a specific structure that centered around an event or journey.” The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero’s journey novels. -While the term “hero’s journey” was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb’s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer’s Iliad or Odyssey. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> <p>&ldquo;A common theme among ancient epics was the overcoming of challenges.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on the adventures themselves rather than individual characters' emotional journeys. In an episode like &ldquo;The Fireworks Episode,&rdquo; Phineas and Ferb work together to create a spectacular fireworks display, but their actions are not necessarily motivated by personal growth or transformation. Instead, they take on the challenge as a way to have fun and make their day better.</p> <p>&ldquo;This approach is similar to ancient epics like The Iliad, which tells the story of the Trojan War.&rdquo; In Homer&rsquo;s Iliad, the characters are often driven by a desire for honor or personal glory, rather than a deeper emotional journey. The focus is on the event itself – in this case, the war between Troy and Greece – rather than the individual characters&rsquo; inner lives.</p> <p>&ldquo;The Phineas and Ferb approach also avoids the &lsquo;big reveal&rsquo; trope.&rdquo; Another key element of ancient epics was often a dramatic twist or revelation at the end. In Homer&rsquo;s Odyssey, for example, the protagonist Odysseus must navigate his way home after being stranded on a distant island. The final scene reveals that he has finally returned to Ithaca and is reunited with his wife.</p> <p>&ldquo;Phineas and Ferb avoids this trope by ending most episodes on an upbeat note.&rdquo; In contrast, Phineas and Ferb tends to wrap up its storylines in a way that feels satisfying and fun for the audience. The final scene of an episode often shows Phineas and Ferb achieving their goal or finding a creative solution to their problem, without revealing any deeper truths or secrets.</p> <p>&ldquo;This approach also reflects the show&rsquo;s focus on creativity and imagination.&rdquo; One key aspect of ancient epics was their emphasis on the power of the human mind and imagination. In Homer&rsquo;s Odyssey, for example, Odysseus uses his intelligence and cunning to navigate his way home.</p> <p>&ldquo;Phineas and Ferb encourages viewers to think creatively in a similar way.&rdquo; Phineas and Ferb is known for its emphasis on creativity and imagination, with characters often coming up with innovative solutions to problems. The show&rsquo;s focus on the creative process itself – rather than individual characters&rsquo; emotional journeys – reflects this emphasis.</p> <p>&ldquo;By following an episode structure that mimics ancient literary epics.&rdquo; Phineas and Ferb&rsquo;s use of self-contained events or journeys, combined with a focus on creativity and imagination, reflects a more traditional approach to storytelling. By avoiding the &lsquo;big reveal&rsquo; trope and emphasizing the creative process, the show encourages viewers to think creatively and find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing the creative process and self-contained events, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;This approach also makes the show feel more timeless.&rdquo; Another key element of Phineas and Ferb is its focus on storytelling itself – rather than individual characters&rsquo; emotional journeys. By taking an epic approach to storytelling, the show creates a sense of timelessness that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling, Phineas and Ferb achieves this goal.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb creates a sense of excitement and possibility that is appealing to viewers of all ages. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they were influenced by their own love of literature.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned being influenced by classic literature when creating the show. They have stated that they wanted to create a show that celebrated creativity and imagination in a way that was reminiscent of ancient epics.</p> <p>&ldquo;By following an epic approach to storytelling.&rdquo; By taking an epic approach to storytelling, Phineas and Ferb offers a unique take on the traditional &lsquo;hero&rsquo;s journey&rsquo; narrative. While individual characters may grow or change over the course of an episode, the focus is always on the event itself – rather than individual emotional journeys.</p> <p>&ldquo;This approach makes the show feel fresh and exciting.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show&rsquo;s use of music also reflects an epic approach.&rdquo; Another key element of Phineas and Ferb is its use of music – specifically, Perry the Platypus&rsquo; secret agent theme song. The show&rsquo;s creators have said that they wanted to incorporate a musical element into the episode structure, creating a sense of excitement and anticipation that is reminiscent of ancient epics.</p> <p>&ldquo;This approach creates a sense of rhythm and flow.&rdquo; By incorporating music in this way, Phineas and Ferb creates a sense of rhythm and flow that is similar to ancient epics. The show&rsquo;s use of melody and tempo helps to create a sense of tension and release, drawing the viewer into the episode&rsquo;s narrative.</p> <p>&ldquo;The show&rsquo;s focus on action and adventure also makes it feel epic.&rdquo; One key element that sets Phineas and Ferb apart from modern hero&rsquo;s journey novels is its focus on action and adventure. By emphasizing creativity and imagination in this way, the show creates a sense of excitement and possibility that is rare in modern television.</p> <p>&ldquo;The show also encourages viewers to think creatively.&rdquo; Phineas and Ferb encourages viewers to think creatively by presenting them with complex problems to solve or adventures to embark upon. By emphasizing creativity and imagination, the show inspires viewers to find their own solutions to problems.</p> <p>&ldquo;This is an approach that has been lost in many modern adaptations of ancient stories.&rdquo; One criticism of modern hero&rsquo;s journey novels is that they often prioritize individual character development over the adventures themselves. In contrast, Phineas and Ferb takes a more epic approach to storytelling, focusing on the events themselves rather than individual characters&rsquo; emotional journeys.</p> <p>&ldquo;The show&rsquo;s creators have said that they wanted to create a show that would appeal to viewers of all ages.&rdquo; Dan Povenmire and Jeff &lsquo;Swifty&rsquo; Swinton, the creators of Phineas and Ferb, have both mentioned wanting to create a show that celebrates creativity and imagination in a way that is accessible to audiences of all ages.</p> <p>&ldquo;By taking an epic approach to storytelling.&rdquo; By following an episode structure that mimics ancient literary epics, Phineas and Ferb achieves this goal. The show&rsquo;s focus on creativity and imagination makes it feel fresh and exciting, while its use of music and storytelling techniques helps to create a sense of rhythm and flow.</p> <p>&ldquo;In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.&rdquo; In conclusion, the episode structure of Phineas and Ferb is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> - - - - diff --git a/tags/review/index.html b/tags/review/index.html deleted file mode 100644 index 360f597..0000000 --- a/tags/review/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Review - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Review - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Phineas and Ferb is (an) Epic

- - -
- 01 Nov 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

“Ancient literary epics often followed a specific structure that centered around -an event or journey.” The episode structure of Phineas and Ferb, which has been -delighting audiences for decades, is more closely aligned with ancient literary -epics than modern hero’s journey novels.

-

While the term “hero’s journey” was popularized by Joseph Campbell in his work, -The Hero with a Thousand Faces, the model he proposed is based on archetypes and -mythological …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/review/index.xml b/tags/review/index.xml deleted file mode 100644 index dd00046..0000000 --- a/tags/review/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Review on MillironX - http://localhost:1313/tags/review/ - Recent content in Review on MillironX - Hugo - en-us - Fri, 01 Nov 2024 00:00:00 +0000 - - - Phineas and Ferb is (an) Epic - http://localhost:1313/posts/phineas-and-ferb/ - Fri, 01 Nov 2024 00:00:00 +0000 - http://localhost:1313/posts/phineas-and-ferb/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>&ldquo;Ancient literary epics often followed a specific structure that centered around an event or journey.&rdquo; The episode structure of Phineas and Ferb, which has been delighting audiences for decades, is more closely aligned with ancient literary epics than modern hero&rsquo;s journey novels.</p> <p>While the term &ldquo;hero&rsquo;s journey&rdquo; was popularized by Joseph Campbell in his work, The Hero with a Thousand Faces, the model he proposed is based on archetypes and mythological narratives found in cultures around the world. In contrast, Phineas and Ferb&rsquo;s episode structure is centered around self-contained events or journeys that are more reminiscent of ancient epics like Homer&rsquo;s Iliad or Odyssey.</p> - - - diff --git a/tags/review/page/1/index.html b/tags/review/page/1/index.html deleted file mode 100644 index c983429..0000000 --- a/tags/review/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/review/ - - - - - - diff --git a/tags/rotavirus/feed.xml b/tags/rotavirus/feed.xml deleted file mode 100644 index b472490..0000000 --- a/tags/rotavirus/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/rotavirus/2025-03-31T00:14:19+00:00All content tagged "rotavirus" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/tags/rotavirus/index.html b/tags/rotavirus/index.html deleted file mode 100644 index 75e0eda..0000000 --- a/tags/rotavirus/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Rotavirus -- -Milliron X -
-Milliron X

Milliron X

Tag: -Rotavirus

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/rotavirus/index.xml b/tags/rotavirus/index.xml deleted file mode 100644 index 27fd372..0000000 --- a/tags/rotavirus/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Rotavirus on MillironX - http://localhost:1313/tags/rotavirus/ - Recent content in Rotavirus on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/tags/rotavirus/page/1/index.html b/tags/rotavirus/page/1/index.html deleted file mode 100644 index 33d0103..0000000 --- a/tags/rotavirus/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/rotavirus/ - \ No newline at end of file diff --git a/tags/rubber-band-guns/feed.xml b/tags/rubber-band-guns/feed.xml deleted file mode 100644 index ea4e59c..0000000 --- a/tags/rubber-band-guns/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/rubber-band-guns/2025-03-31T00:14:19+00:00All content tagged "rubber band guns" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> - \ No newline at end of file diff --git a/tags/rubber-band-guns/index.html b/tags/rubber-band-guns/index.html deleted file mode 100644 index 1dce08b..0000000 --- a/tags/rubber-band-guns/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Rubber Band Guns -- -Milliron X -
-Milliron X

Milliron X

Tag: -Rubber Band Guns

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/rubber-band-guns/index.xml b/tags/rubber-band-guns/index.xml deleted file mode 100644 index abf71c8..0000000 --- a/tags/rubber-band-guns/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Rubber Band Guns on MillironX - http://localhost:1313/tags/rubber-band-guns/ - Recent content in Rubber Band Guns on MillironX - Hugo - en-us - Fri, 20 Mar 2015 00:00:00 +0000 - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - diff --git a/tags/rubber-band-guns/page/1/index.html b/tags/rubber-band-guns/page/1/index.html deleted file mode 100644 index ebdc8c4..0000000 --- a/tags/rubber-band-guns/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/rubber-band-guns/ - \ No newline at end of file diff --git a/tags/rumen/feed.xml b/tags/rumen/feed.xml deleted file mode 100644 index 731ced1..0000000 --- a/tags/rumen/feed.xml +++ /dev/null @@ -1,45 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/rumen/2025-03-31T00:14:19+00:00All content tagged "rumen" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/metagenomics/Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery2019-06-12T00:00:00+00:002019-06-12T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Kathy J. Austinhttps://millironx.millironx.page/@indiewebpub/people/kathy-j.-austin/Kristi M. Cammackhttps://millironx.millironx.page/@indiewebpub/people/kristi-m.-cammack/Hannah C. Cunningham-Hollingerhttps://millironx.millironx.page/@indiewebpub/people/hannah-c.-cunningham-hollinger/ -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. -<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> -&lt; 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> &lt; 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> -https://millironx.millironx.page/@indiewebpub/academia/cheme-car/The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal2019-05-14T00:00:00+00:002019-05-14T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the -current power source and stopping mechanism.</p> - \ No newline at end of file diff --git a/tags/rumen/index.html b/tags/rumen/index.html deleted file mode 100644 index e340edb..0000000 --- a/tags/rumen/index.html +++ /dev/null @@ -1,62 +0,0 @@ -Tag: -Rumen -- -Milliron X -
-Milliron X

Milliron X

Tag: -Rumen

-Subscribe
Thumbnail of thumbnail.jpg
- - -

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 …

Read more »

Thumbnail of thumbnail.jpg

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/rumen/index.xml b/tags/rumen/index.xml deleted file mode 100644 index bbe3170..0000000 --- a/tags/rumen/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Rumen on MillironX - http://localhost:1313/tags/rumen/ - Recent content in Rumen on MillironX - Hugo - en-us - Wed, 12 Jun 2019 00:00:00 +0000 - - - Metagenomic analysis of rumen populations in week-old calves as altered by maternal late gestational nutrition and mode of delivery - http://localhost:1313/academia/metagenomics/ - Wed, 12 Jun 2019 00:00:00 +0000 - http://localhost:1313/academia/metagenomics/ - <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> &lt; 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> &lt; 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> - - - The ChemE Car that Cud: AIChE ChemE Car Engineering Design Proposal - http://localhost:1313/academia/cheme-car/ - Tue, 14 May 2019 00:00:00 +0000 - http://localhost:1313/academia/cheme-car/ - <p>The ChemE Car That Cud showcases Wyoming&rsquo;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&rsquo;s mines, to time the car&rsquo;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&rsquo;nex toys to adapt to the current power source and stopping mechanism.</p> - - - diff --git a/tags/rumen/page/1/index.html b/tags/rumen/page/1/index.html deleted file mode 100644 index 29386ec..0000000 --- a/tags/rumen/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/rumen/ - \ No newline at end of file diff --git a/tags/shooting-gallery/feed.xml b/tags/shooting-gallery/feed.xml deleted file mode 100644 index 12ea741..0000000 --- a/tags/shooting-gallery/feed.xml +++ /dev/null @@ -1,12 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/shooting-gallery/2025-03-31T00:14:19+00:00All content tagged "shooting gallery" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> - \ No newline at end of file diff --git a/tags/shooting-gallery/index.html b/tags/shooting-gallery/index.html deleted file mode 100644 index 3c2b100..0000000 --- a/tags/shooting-gallery/index.html +++ /dev/null @@ -1,36 +0,0 @@ -Tag: -Shooting Gallery -- -Milliron X -
-Milliron X

Milliron X

Tag: -Shooting Gallery

-Subscribe
Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/shooting-gallery/index.xml b/tags/shooting-gallery/index.xml deleted file mode 100644 index eb9bfe7..0000000 --- a/tags/shooting-gallery/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Shooting Gallery on MillironX - http://localhost:1313/tags/shooting-gallery/ - Recent content in Shooting Gallery on MillironX - Hugo - en-us - Fri, 20 Mar 2015 00:00:00 +0000 - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - diff --git a/tags/shooting-gallery/page/1/index.html b/tags/shooting-gallery/page/1/index.html deleted file mode 100644 index 0f686c2..0000000 --- a/tags/shooting-gallery/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/shooting-gallery/ - \ No newline at end of file diff --git a/tags/technology/feed.xml b/tags/technology/feed.xml deleted file mode 100644 index 8730f35..0000000 --- a/tags/technology/feed.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/technology/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "technology" on Milliron X - - - - http://localhost:1313/posts/nf-core/ - - My Troubles with nf-core - 2024-09-01T00:00:00+00:00 - 2024-09-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - My Troubles with nf-core A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics. -Introduction As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> <h2 id="background">Background</h2> <p>NF-core (short for Next-Generation Sequencing Core) is an open-source framework developed by the Broad Institute of MIT and Harvard that provides a comprehensive set of tools for analyzing high-throughput sequencing data. The platform has been widely adopted in the scientific community due to its ease of use, scalability, and flexibility.</p> <h2 id="my-experience-with-nf-core">My Experience with nf-core</h2> <p>As a bioinformatician, I have worked extensively with various pipelines built on top of nf-core, including the popular <a href="https://github.com/broadinstitute/SNEAK">SNEAK</a> pipeline for variant discovery. While nf-core has provided me with a reliable platform for analyzing large datasets, I have consistently encountered issues with its organization, documentation, and community support.</p> <h2 id="issues-with-organization">Issues with Organization</h2> <p>One of my biggest frustrations with nf-core is the lack of clear organization within its repository. The project&rsquo;s main directory contains an overwhelming number of subdirectories, each representing a different tool or pipeline. This makes it difficult to navigate the codebase and understand how the various tools interact with each other.</p> <h2 id="documentation-and-community-support">Documentation and Community Support</h2> <p>NF-core has excellent documentation, but in my experience, this documentation is often incomplete or outdated. I have encountered several instances where I was unable to find relevant information about a particular tool or pipeline, leading me to waste hours of time searching for answers online.</p> <p>Moreover, the nf-core community has historically been relatively inactive, with few developers actively contributing to the project over the years. This lack of support and resources makes it challenging to address issues or implement new features.</p> <h2 id="impact-on-bioinformaticians">Impact on Bioinformaticians</h2> <p>Despite my personal frustrations with nf-core, I firmly believe that this platform remains an essential tool for bioinformaticians around the world. The benefits of using nf-core include its scalability, flexibility, and ease of use. However, I strongly advocate for a renewed focus on addressing the issues mentioned above to ensure that this platform continues to meet the evolving needs of the scientific community.</p> <h2 id="conclusion">Conclusion</h2> <p>As someone who has dedicated their career to bioinformatics, it pains me to see a project like nf-core hindered by its own structure and lack of support. While I will continue to contribute to and use nf-core in my work, I hope that this article will serve as a catalyst for the developers and community leaders involved in maintaining this platform to prioritize much-needed changes.</p> <h2 id="recommendations">Recommendations</h2> <p>To address the issues I have raised above, I recommend the following steps:</p> <ul> <li>Reorganize the repository structure to make it more logical and easier to navigate.</li> <li>Update and expand the documentation to include comprehensive information on all tools and pipelines within nf-core.</li> <li>Foster a more active community by engaging with bioinformaticians through regular forums, workshops, or online events.</li> </ul> <p>By addressing these issues, I am confident that nf-core can continue to thrive as a powerful tool for analyzing high-throughput sequencing data.</p> - - - - - http://localhost:1313/posts/keep-epds-real/ - - Keep EPDs Real - 2024-07-01T00:00:00+00:00 - 2024-07-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - In the world of cattle breeding, there’s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll delve into what EPDs are, why they matter, and how to keep them real. -What Are EPDs? EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow’s children will look like based on their parents’ characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> <h2 id="the-basics-of-genetics">The Basics of Genetics</h2> <p>Before diving into EPDs, let&rsquo;s quickly review the basics of genetics. You see, every living thing has DNA (deoxyribonucleic acid), which contains the instructions for its development and function. The DNA is made up of genes, which code for specific traits like eye color, hair color, or in our case, milk production.</p> <p>Genes are like recipes that tell our bodies what to make – but instead of ingredients like flour and sugar, they&rsquo;re made up of nucleotides. These nucleotides can be either A (adenine), C (cytosine), G (guanine), or T (thymine). The sequence of these nucleotides determines the genetic information.</p> <h2 id="how-epds-work">How EPDs Work</h2> <p>Now that we&rsquo;ve covered some basics, let&rsquo;s talk about how EPDs work. Imagine you&rsquo;re breeding two cows, Bessie and Daisy, to produce offspring. You want Bessie to pass on her desirable traits, like excellent milk production, to their children.</p> <p>To predict which calf will inherit these traits, you&rsquo;d look at the genetic information of both parents. You&rsquo;d then use a complex formula that takes into account the genetic potential of each parent and their offspring&rsquo;s genotype (the actual DNA sequence). This gives you an Expected Progeny Difference score – which represents how much better or worse the trait is expected to be in the offspring compared to the parent.</p> <p>For example, let&rsquo;s say Bessie has a high EPD for milk production, but Daisy has a low EPD. The formula would take into account both parents&rsquo; scores and predict that their calf will have an average EPD for milk production.</p> <h2 id="benefits-of-epds">Benefits of EPDs</h2> <p>So why do we need EPDs? In short, they help us make informed decisions about breeding. By knowing which traits are being passed down from one generation to the next, we can:</p> <ol> <li>Make better breeding choices</li> <li>Predict potential problems or improvements in future generations</li> <li>Develop more accurate breeding strategies</li> </ol> <p>But that&rsquo;s not all – EPDs also have a significant impact on the cattle industry as a whole. By using data-driven approaches, breeders and farmers can:</p> <ol> <li>Increase efficiency and reduce costs</li> <li>Improve animal welfare by selecting for desirable traits</li> <li>Support sustainable agriculture practices</li> </ol> <h2 id="challenges-with-epds">Challenges with EPDs</h2> <p>While EPDs offer many benefits, there are also some challenges to consider:</p> <ol> <li>Data quality: If the data used to calculate EPDs is inaccurate or incomplete, it can lead to incorrect predictions.</li> <li>Complex genetics: Genetic inheritance can be complex, making it difficult to predict how certain traits will manifest in offspring.</li> <li>Selection bias: Breeders may unconsciously favor certain breeds or animals due to personal preferences rather than objective genetic data.</li> </ol> <h2 id="staying-up-to-date-with-epd-research">Staying Up-to-Date with EPD Research</h2> <p>EPDs are constantly evolving as new research emerges and technology improves. To stay informed, it&rsquo;s essential to:</p> <ol> <li>Follow industry publications and scientific journals</li> <li>Attend workshops and conferences on genetics and EPDs</li> <li>Network with other breeders and researchers in the field</li> </ol> <h2 id="conclusion">Conclusion</h2> <p>In conclusion, Expected Progeny Differences (EPDs) are a valuable tool for cattle breeders. By understanding how genetic traits are passed down through generations, we can make more informed decisions about breeding and improve animal welfare.</p> <p>Remember – keeping EPDs real means staying current with the latest research, attending workshops, and networking with experts in the field. With these skills, you&rsquo;ll be well on your way to becoming a genetics-savvy breeder!</p> <p>As always, I&rsquo;m grateful for this opportunity to share my passion for cattle breeding and genetics with you – whether it&rsquo;s through EPDs or something entirely different!</p> - - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/tags/technology/index.html b/tags/technology/index.html deleted file mode 100644 index 4ae88ce..0000000 --- a/tags/technology/index.html +++ /dev/null @@ -1,693 +0,0 @@ - - - - - - - - - - Tag: - - Technology - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Technology - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

My Troubles with nf-core

- - -
- 01 Sep 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

My Troubles with nf-core

-

A blog post about my frustrations and experiences working with the popular -nf-core framework in bioinformatics.

-

Introduction

-

As a biologist who has worked extensively with different software tools for -analyzing biological data, I have always been impressed by the power and -flexibility of the nf-core platform. However, after several years of using and -contributing to this excellent toolset, I have come to realize that there are -some fundamental issues with the way …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Keep EPDs Real

- - -
- 01 Jul 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

In the world of cattle breeding, there’s a concept that can be both fascinating -and intimidating: Expected Progeny Differences (EPDs). I’ve come to appreciate -the importance of genetics and EPDs in cattle breeding. In this blog post, we’ll -delve into what EPDs are, why they matter, and how to keep them real.

-

What Are EPDs?

-

EPDs are a way to measure the genetic differences between animals that can help -breeders predict which offspring will be more or less desirable for certain …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/technology/index.xml b/tags/technology/index.xml deleted file mode 100644 index 4b2fb74..0000000 --- a/tags/technology/index.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - Technology on MillironX - http://localhost:1313/tags/technology/ - Recent content in Technology on MillironX - Hugo - en-us - Sun, 01 Sep 2024 00:00:00 +0000 - - - My Troubles with nf-core - http://localhost:1313/posts/nf-core/ - Sun, 01 Sep 2024 00:00:00 +0000 - http://localhost:1313/posts/nf-core/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h1 id="my-troubles-with-nf-core">My Troubles with nf-core</h1> <p>A blog post about my frustrations and experiences working with the popular nf-core framework in bioinformatics.</p> <h2 id="introduction">Introduction</h2> <p>As a biologist who has worked extensively with different software tools for analyzing biological data, I have always been impressed by the power and flexibility of the nf-core platform. However, after several years of using and contributing to this excellent toolset, I have come to realize that there are some fundamental issues with the way nf-core is currently structured and maintained.</p> - - - Keep EPDs Real - http://localhost:1313/posts/keep-epds-real/ - Mon, 01 Jul 2024 00:00:00 +0000 - http://localhost:1313/posts/keep-epds-real/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>In the world of cattle breeding, there&rsquo;s a concept that can be both fascinating and intimidating: Expected Progeny Differences (EPDs). I&rsquo;ve come to appreciate the importance of genetics and EPDs in cattle breeding. In this blog post, we&rsquo;ll delve into what EPDs are, why they matter, and how to keep them real.</p> <h2 id="what-are-epds">What Are EPDs?</h2> <p>EPDs are a way to measure the genetic differences between animals that can help breeders predict which offspring will be more or less desirable for certain traits. Think of it like trying to guess what your favorite cow&rsquo;s children will look like based on their parents&rsquo; characteristics. In genetics, we call this inheritance – and EPDs are a simple yet powerful tool to help us understand how genetic traits are passed down.</p> - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/tags/technology/page/1/index.html b/tags/technology/page/1/index.html deleted file mode 100644 index d47c916..0000000 --- a/tags/technology/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/technology/ - - - - - - diff --git a/tags/template-engine/feed.xml b/tags/template-engine/feed.xml deleted file mode 100644 index 0dfd9c8..0000000 --- a/tags/template-engine/feed.xml +++ /dev/null @@ -1,4 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/template-engine/2025-03-31T00:14:19+00:00All content tagged "template-engine" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/code/kelpie.jl/Kelpie.jl2022-04-06T19:32:52+00:002022-04-06T19:32:52+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -:dog2: I accidentally built an HTML templating engine in Julia -<p>:dog2: I accidentally built an HTML templating engine in Julia</p> - \ No newline at end of file diff --git a/tags/template-engine/index.html b/tags/template-engine/index.html deleted file mode 100644 index 9a54a78..0000000 --- a/tags/template-engine/index.html +++ /dev/null @@ -1,32 +0,0 @@ -Tag: -Template-Engine -- -Milliron X -
-Milliron X

Milliron X

Tag: -Template-Engine

-Subscribe

Kelpie.jl

06 Apr 2022

:dog2: I accidentally built an HTML templating engine in Julia

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/template-engine/index.xml b/tags/template-engine/index.xml deleted file mode 100644 index 974da5a..0000000 --- a/tags/template-engine/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Template-Engine on MillironX - http://localhost:1313/tags/template-engine/ - Recent content in Template-Engine on MillironX - Hugo - en-us - Wed, 06 Apr 2022 19:32:52 +0000 - - - Kelpie.jl - http://localhost:1313/code/kelpie.jl/ - Wed, 06 Apr 2022 19:32:52 +0000 - http://localhost:1313/code/kelpie.jl/ - <p>:dog2: I accidentally built an HTML templating engine in Julia</p> - - - diff --git a/tags/template-engine/page/1/index.html b/tags/template-engine/page/1/index.html deleted file mode 100644 index 8397d9b..0000000 --- a/tags/template-engine/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/template-engine/ - \ No newline at end of file diff --git a/tags/transport-properties/feed.xml b/tags/transport-properties/feed.xml deleted file mode 100644 index d8a27c9..0000000 --- a/tags/transport-properties/feed.xml +++ /dev/null @@ -1,23 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/transport-properties/2025-03-31T00:14:19+00:00All content tagged "transport properties" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/hydronium-pva/Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation2022-09-02T00:00:00+00:002022-09-02T00:00:00+00:00Carson J. Silsbyhttps://millironx.millironx.page/@indiewebpub/people/carson-j.-silsby/Jonathan R. Countshttps://millironx.millironx.page/@indiewebpub/people/jonathan-r.-counts/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Mark F. Rollhttps://millironx.millironx.page/@indiewebpub/people/mark-f.-roll/Kristopher v. Waynanthttps://millironx.millironx.page/@indiewebpub/people/kristopher-v.-waynant/James G. Moberlyhttps://millironx.millironx.page/@indiewebpub/people/james-g.-moberly/ -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. -<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> &lt; -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> - \ No newline at end of file diff --git a/tags/transport-properties/index.html b/tags/transport-properties/index.html deleted file mode 100644 index 6f236cd..0000000 --- a/tags/transport-properties/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Transport Properties -- -Milliron X -
-Milliron X

Milliron X

Tag: -Transport Properties

-Subscribe
- - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/transport-properties/index.xml b/tags/transport-properties/index.xml deleted file mode 100644 index eb97958..0000000 --- a/tags/transport-properties/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Transport Properties on MillironX - http://localhost:1313/tags/transport-properties/ - Recent content in Transport Properties on MillironX - Hugo - en-us - Fri, 02 Sep 2022 00:00:00 +0000 - - - Investigation of Hydronium Diffusion in Poly(vinyl alcohol) Hydrogels: A Critical First Step to Describe Acid Transport for Encapsulated Bioremediation - http://localhost:1313/academia/hydronium-pva/ - Fri, 02 Sep 2022 00:00:00 +0000 - http://localhost:1313/academia/hydronium-pva/ - <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> &lt; 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> - - - diff --git a/tags/transport-properties/page/1/index.html b/tags/transport-properties/page/1/index.html deleted file mode 100644 index 3a805c4..0000000 --- a/tags/transport-properties/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/transport-properties/ - \ No newline at end of file diff --git a/tags/veterinary-medicine/feed.xml b/tags/veterinary-medicine/feed.xml deleted file mode 100644 index e09f3ff..0000000 --- a/tags/veterinary-medicine/feed.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/veterinary-medicine/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "veterinary medicine" on Milliron X - - - - http://localhost:1313/posts/history-of-medicine/ - - A Brief History of Medicine (2438) - 2024-05-01T00:00:00+00:00 - 2024-05-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> <p>As a young physician, it was exhilarating to be part of a field that seemed to have no limits. We were constantly pushing the boundaries of what was thought possible, and it showed in our results. Patients who would have been doomed years ago were now thriving, thanks to advances in medicine.</p> <p>But as with any rapidly advancing field, there were also risks involved. The use of nanorobots and AI algorithms raised concerns about accountability and transparency. As a physician, I had to be careful to ensure that my actions were guided by the highest ethical standards.</p> <p>The years that followed were marked by incredible breakthroughs in medicine. Diseases that had plagued humanity for centuries began to disappear as treatments became more effective. Cancer, in particular, was a major target for researchers, and significant progress was made in understanding its causes and developing targeted therapies.</p> <p>One of the most exciting developments in this area was the discovery of a new type of cancer-killing nanobot that could selectively target and destroy tumor cells while leaving healthy tissue intact. The technology was still in its infancy, but the potential it held was enormous.</p> <p>As I look back on those early years of my career, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Over time, medicine evolved to become an integral part of daily life. People began to live longer, healthier lives, thanks to advances in preventative care and personalized medicine. The rise of genomics and precision medicine allowed for tailored treatments that could be customized to individual needs.</p> <p>As a physician, I had the privilege of witnessing firsthand the impact that these advancements had on people&rsquo;s lives. Patients who would have been confined to beds for years were now able to return to their normal activities, thanks to the latest treatments.</p> <p>But with all the progress we made, there were also new challenges that emerged. The increasing reliance on technology led to concerns about the ethics of medicine. As medical robots and AI algorithms took over more tasks, there were questions about accountability and the role of human physicians in this new landscape.</p> <p>These debates are ongoing to this day. As a physician, it&rsquo;s essential for me to stay up-to-date with the latest developments and advancements in my field. By doing so, I can ensure that patients receive the best possible care, while also navigating the complex issues surrounding medicine in the 24th century.</p> <p>Fast forward to 2438, and medicine has changed dramatically. Diseases have become a rarity, thanks to breakthroughs in biotechnology and genetic engineering. Humans live longer, healthier lives, with an average lifespan of over 120 years.</p> <p>Despite these advancements, there are still challenges to overcome. The increasing reliance on AI and biotechnology has raised concerns about the ethics of medicine. Many people worry that as medical robots and algorithms take over more tasks, human physicians will become obsolete.</p> <p>However, I firmly believe that this is a misconception. As a physician in 2438, I can attest that being a doctor still requires a deep understanding of human biology, psychology, and sociology. While technology has certainly advanced medicine, there are also skills and qualities that cannot be replicated by machines alone.</p> <p>One of the most critical aspects of being a doctor is empathy. As a human being, you need to understand your patients&rsquo; emotional states, their fears and anxieties, in order to provide them with effective care. This is something that AI systems struggle to replicate, no matter how advanced they become.</p> <p>In my practice, I see patients who have been diagnosed with conditions that were previously considered incurable. Cancer, for example, has all but disappeared thanks to targeted therapies and immunotherapies. However, there are still other challenges to overcome.</p> <p>As a physician, it&rsquo;s essential to stay informed about the latest developments in medicine. This includes understanding how new technologies can be used to improve patient outcomes, as well as addressing any concerns or fears that patients may have regarding these advancements.</p> <p>One of the most significant breakthroughs in recent years has been the development of advanced bioprinting techniques. These allow for the creation of complex tissue structures and organs, which can then be transplanted into patients who require them.</p> <p>The potential applications for this technology are vast. It could revolutionize organ transplantation, allowing for more efficient use of donor organs and reducing the need for long-term immunosuppression treatments.</p> <p>However, there are also concerns about the ethics of bioprinting. As with any new technology, there are questions about accountability, safety, and the role of human physicians in this process.</p> <p>Despite these challenges, I remain optimistic about the future of medicine. As a physician in 2438, I&rsquo;ve seen firsthand the incredible progress that has been made, and I&rsquo;m excited to see what the next generation of medical breakthroughs will bring.</p> <p>One area of particular interest is the development of new treatments for mental health disorders. In my practice, I often encounter patients who struggle with anxiety, depression, or post-traumatic stress disorder (PTSD). These conditions are complex and multifaceted, and it&rsquo;s essential to develop treatments that address all aspects of their impact.</p> <p>Recently, there has been a significant breakthrough in the development of new therapies for mental health disorders. A team of researchers has made significant progress in understanding the underlying mechanisms of these conditions, and this has led to the development of new treatments that are more effective than anything that came before.</p> <p>The treatment is based on the idea that mental health disorders are not just symptoms, but rather a manifestation of an imbalance in the body&rsquo;s natural chemistry. By developing targeted therapies that address this imbalance, researchers have been able to create medications that can effectively treat a wide range of conditions.</p> <p>One of the most promising developments in this area is the use of neurotransmitter modulators. These are small molecules that can be used to regulate the balance of neurotransmitters in the brain, which play a critical role in regulating mood and emotional states.</p> <p>The implications for mental health treatment are enormous. For the first time in history, we have a class of medications that could potentially treat multiple conditions at once. This is a game-changer for patients who suffer from complex mental health disorders, and it&rsquo;s a testament to the power of medical research.</p> <p>As I look back on my career as a physician, I am reminded of the importance of perseverance and creativity. Medicine is a field that requires constant innovation and adaptation, and it takes a lot of hard work to stay ahead of the curve.</p> <p>Despite all the progress we&rsquo;ve made, there are still challenges to overcome. The increasing reliance on technology raises concerns about accountability and transparency, as well as questions about the role of human physicians in this new landscape.</p> <p>These debates will likely continue for years to come. As a physician, it&rsquo;s essential for me to stay informed about the latest developments in medicine, while also addressing any concerns or fears that patients may have regarding these advancements.</p> <p>Ultimately, my goal is to provide the best possible care to my patients, while also pushing the boundaries of what&rsquo;s thought possible in this field. As a doctor in 2438, I am excited to see what the future holds for medicine, and I am confident that we will continue to make tremendous progress in the years ahead.</p> <p>}}</p> - - - - diff --git a/tags/veterinary-medicine/index.html b/tags/veterinary-medicine/index.html deleted file mode 100644 index c36afa1..0000000 --- a/tags/veterinary-medicine/index.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - Tag: - - Veterinary Medicine - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Veterinary Medicine - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

A Brief History of Medicine (2438)

- - -
- 01 May 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

I still remember the first time I set foot in the hospital where I would spend -most of my working life. It was 2123, and medicine was already a highly advanced -field, thanks to the rapid progress made possible by nanotechnology and -artificial intelligence. The patient I was assigned to that day was an elderly -man who had been suffering from a rare genetic disorder for years. With the help -of a swarm of microscopic robots that could repair damaged cells at a molecular -level, we were able to …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/veterinary-medicine/index.xml b/tags/veterinary-medicine/index.xml deleted file mode 100644 index 7aa50df..0000000 --- a/tags/veterinary-medicine/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Veterinary Medicine on MillironX - http://localhost:1313/tags/veterinary-medicine/ - Recent content in Veterinary Medicine on MillironX - Hugo - en-us - Wed, 01 May 2024 00:00:00 +0000 - - - A Brief History of Medicine (2438) - http://localhost:1313/posts/history-of-medicine/ - Wed, 01 May 2024 00:00:00 +0000 - http://localhost:1313/posts/history-of-medicine/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>I still remember the first time I set foot in the hospital where I would spend most of my working life. It was 2123, and medicine was already a highly advanced field, thanks to the rapid progress made possible by nanotechnology and artificial intelligence. The patient I was assigned to that day was an elderly man who had been suffering from a rare genetic disorder for years. With the help of a swarm of microscopic robots that could repair damaged cells at a molecular level, we were able to extend his lifespan by several decades.</p> - - - diff --git a/tags/veterinary-medicine/page/1/index.html b/tags/veterinary-medicine/page/1/index.html deleted file mode 100644 index 9724b63..0000000 --- a/tags/veterinary-medicine/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/veterinary-medicine/ - - - - - - diff --git a/tags/virome/feed.xml b/tags/virome/feed.xml deleted file mode 100644 index dc25b7a..0000000 --- a/tags/virome/feed.xml +++ /dev/null @@ -1,27 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/virome/2025-03-31T00:14:19+00:00All content tagged "virome" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/rotavirus-virome/Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease2022-04-27T00:00:00+00:002022-04-27T00:00:00+00:00Tyler Doerksenhttps://millironx.millironx.page/@indiewebpub/people/tyler-doerksen/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Lance Nollhttps://millironx.millironx.page/@indiewebpub/people/lance-noll/Jianfa Baihttps://millironx.millironx.page/@indiewebpub/people/jianfa-bai/Jamie Henningsonhttps://millironx.millironx.page/@indiewebpub/people/jamie-henningson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -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>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 &gt;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> - \ No newline at end of file diff --git a/tags/virome/index.html b/tags/virome/index.html deleted file mode 100644 index 8196bd9..0000000 --- a/tags/virome/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Virome -- -Milliron X -
-Milliron X

Milliron X

Tag: -Virome

-Subscribe
- - - - - -

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 …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/virome/index.xml b/tags/virome/index.xml deleted file mode 100644 index b739699..0000000 --- a/tags/virome/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Virome on MillironX - http://localhost:1313/tags/virome/ - Recent content in Virome on MillironX - Hugo - en-us - Wed, 27 Apr 2022 00:00:00 +0000 - - - Assessment of Porcine Rotavirus-associated virome variations in pigs with enteric disease - http://localhost:1313/academia/rotavirus-virome/ - Wed, 27 Apr 2022 00:00:00 +0000 - http://localhost:1313/academia/rotavirus-virome/ - <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 &gt;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> - - - diff --git a/tags/virome/page/1/index.html b/tags/virome/page/1/index.html deleted file mode 100644 index 9e6df9c..0000000 --- a/tags/virome/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/virome/ - \ No newline at end of file diff --git a/tags/virus/feed.xml b/tags/virus/feed.xml deleted file mode 100644 index 71ac93b..0000000 --- a/tags/virus/feed.xml +++ /dev/null @@ -1,36 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/virus/2025-03-31T00:14:19+00:00All content tagged "virus" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/academia/yavsap/YAVSAP: versatile viral quasispecies analysis for veterinary samples2024-03-05T00:00:00+00:002024-03-05T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Steven Stancichttps://millironx.millironx.page/@indiewebpub/people/steven-stancic/Andrea Luhttps://millironx.millironx.page/@indiewebpub/people/andrea-lu/Dana Mitzelhttps://millironx.millironx.page/@indiewebpub/people/dana-mitzel/William Wilsonhttps://millironx.millironx.page/@indiewebpub/people/william-wilson/Rachel Palinskihttps://millironx.millironx.page/@indiewebpub/people/rachel-palinski/ -Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral “quasispecies,” and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative’s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at https://github.com/ksumngs/yavsap. -<p>Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 -(SARS CoV2), and established protocols and computer analysis tools have been -developed for these species. Some of the most important viruses, such as -emerging and exotic disease agents, however, do not have replicatable protocols -or software tools capable of producing valid output from their sequence data. -Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP -is a fully automated bioinformatic pipeline built from the ground up to identify -and analyze viral quasispecies of any arbitrary virus in human and veterinary -samples. YAVSAP provides reference-based genome mapping of both long- and -short-read sequencing reads to any reference genome that the user chooses, -identifies subconsensus variants and haplotypes, and assesses the phylogenies of -all viral sequences found within a sample. YAVSAP is written in Nextflow and -conforms to the nf-core initiative&rsquo;s standards, which allows it to run on -low-end computers, high performance computing (HPC) clusters, or anything in -between with zero configuration. YAVSAP has been tested on viruses of interest -to veterinary medicine and public health, including Japanese Encephalitis Virus -(JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift -Valley Fever Virus (RVFV), and can correctly identify consensus genomes and -quasispecies within samples containing each of these viruses. This tool provides -a means for biologists with little bioinformatic experience to analyze deep -sequence data while correcting for many of the pitfalls associated with previous -and current analysis platforms. YAVSAP is open source software and is publicly -available at <a - href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> -https://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - \ No newline at end of file diff --git a/tags/virus/index.html b/tags/virus/index.html deleted file mode 100644 index 26bab5b..0000000 --- a/tags/virus/index.html +++ /dev/null @@ -1,56 +0,0 @@ -Tag: -Virus -- -Milliron X -
-Milliron X

Milliron X

Tag: -Virus

-Subscribe
- - - - -

Viral populations within an infected host are composed of viral particles with a -spectrum of genetic mutations rather than a unified genome. This phenomenon is -referred to as viral “quasispecies,” and has been useful for the understanding -of viral transmission and early detection of new viral variants. Next generation -sequencing (NGS) has enabled the study of these quasispecies for many viral -species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and -Mouth …

Read more »

Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/virus/index.xml b/tags/virus/index.xml deleted file mode 100644 index ce50b9e..0000000 --- a/tags/virus/index.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Virus on MillironX - http://localhost:1313/tags/virus/ - Recent content in Virus on MillironX - Hugo - en-us - Tue, 05 Mar 2024 00:00:00 +0000 - - - YAVSAP: versatile viral quasispecies analysis for veterinary samples - http://localhost:1313/academia/yavsap/ - Tue, 05 Mar 2024 00:00:00 +0000 - http://localhost:1313/academia/yavsap/ - <p>Viral populations within an infected host are composed of viral particles with a spectrum of genetic mutations rather than a unified genome. This phenomenon is referred to as viral &ldquo;quasispecies,&rdquo; and has been useful for the understanding of viral transmission and early detection of new viral variants. Next generation sequencing (NGS) has enabled the study of these quasispecies for many viral species, notably Influenza A and B, Human Immunodeficiency Virus (HIV), Foot and Mouth Disease Virus (FMDV), and Severe Acute Respiratory Syndrome Coronavirus 2 (SARS CoV2), and established protocols and computer analysis tools have been developed for these species. Some of the most important viruses, such as emerging and exotic disease agents, however, do not have replicatable protocols or software tools capable of producing valid output from their sequence data. Here, we present Yet Another Viral Subspecies Analysis Pipeline (YAVSAP). YAVSAP is a fully automated bioinformatic pipeline built from the ground up to identify and analyze viral quasispecies of any arbitrary virus in human and veterinary samples. YAVSAP provides reference-based genome mapping of both long- and short-read sequencing reads to any reference genome that the user chooses, identifies subconsensus variants and haplotypes, and assesses the phylogenies of all viral sequences found within a sample. YAVSAP is written in Nextflow and conforms to the nf-core initiative&rsquo;s standards, which allows it to run on low-end computers, high performance computing (HPC) clusters, or anything in between with zero configuration. YAVSAP has been tested on viruses of interest to veterinary medicine and public health, including Japanese Encephalitis Virus (JEV), Influenza D Virus (IDV), Bovine Coronavirus (BCoV), SARS CoV2, and Rift Valley Fever Virus (RVFV), and can correctly identify consensus genomes and quasispecies within samples containing each of these viruses. This tool provides a means for biologists with little bioinformatic experience to analyze deep sequence data while correcting for many of the pitfalls associated with previous and current analysis platforms. YAVSAP is open source software and is publicly available at <a href="https://github.com/ksumngs/yavsap">https://github.com/ksumngs/yavsap</a>.</p> - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - diff --git a/tags/virus/page/1/index.html b/tags/virus/page/1/index.html deleted file mode 100644 index 3644b2e..0000000 --- a/tags/virus/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/virus/ - \ No newline at end of file diff --git a/tags/wild-west/feed.xml b/tags/wild-west/feed.xml deleted file mode 100644 index 3cd6238..0000000 --- a/tags/wild-west/feed.xml +++ /dev/null @@ -1,89 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/wild-west/2025-03-31T00:14:19+00:00All content tagged "wild west" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/tags/wild-west/index.html b/tags/wild-west/index.html deleted file mode 100644 index bb2d375..0000000 --- a/tags/wild-west/index.html +++ /dev/null @@ -1,52 +0,0 @@ -Tag: -Wild West -- -Milliron X -
-Milliron X

Milliron X

Tag: -Wild West

-Subscribe
Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/wild-west/index.xml b/tags/wild-west/index.xml deleted file mode 100644 index ac8401d..0000000 --- a/tags/wild-west/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Wild West on MillironX - http://localhost:1313/tags/wild-west/ - Recent content in Wild West on MillironX - Hugo - en-us - Sat, 22 Nov 2014 00:00:00 +0000 - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/tags/wild-west/page/1/index.html b/tags/wild-west/page/1/index.html deleted file mode 100644 index f36be19..0000000 --- a/tags/wild-west/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/wild-west/ - \ No newline at end of file diff --git a/tags/windows/feed.xml b/tags/windows/feed.xml deleted file mode 100644 index 3babc57..0000000 --- a/tags/windows/feed.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - Hugo v0.141.0 - http://localhost:1313/tags/windows/ - - - 2025-03-27T15:19:13-05:00 - - All content tagged "windows" on Milliron X - - - - http://localhost:1313/posts/why-i-gave-up-github/ - - Why I gave up GitHub: A personal retrospective - 2024-01-01T00:00:00+00:00 - 2024-01-01T00:00:00+00:00 - - Thomas A. Christensen II - http://localhost:1313/people/thomas-a.-christensen-ii/ - - - - - - - - - Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith. -Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub’s business model. The platform’s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy. - - - - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> <p>One day, while working on a project, I stumbled upon an article about the growing pains of GitHub&rsquo;s dominance in the tech industry. It highlighted the tension between the need for collaboration and the perils of unchecked corporate power. Something clicked inside me, and I realized that I couldn&rsquo;t remain silent anymore. I began to question whether my use of GitHub was truly aligning with my values.</p> <p>As a Christian, I had always believed in the importance of living a life of integrity and authenticity. But the more I learned about GitHub&rsquo;s practices, the more I felt like I was compromising on those principles. The platform&rsquo;s reliance on open-source code seemed to prioritize the interests of corporations over those of individuals. It was a hard pill to swallow.</p> <p>So, I made the decision to take a stand. I began to explore alternative platforms and tools for my work, seeking out options that better aligned with my values. It wasn&rsquo;t easy – it meant relearning new skills, investing time and effort into building new relationships within the developer community.</p> <p>But as I dug deeper, I realized that quitting GitHub wasn&rsquo;t just about technology – it was about re-examining my own motivations and priorities. Why had I joined GitHub in the first place? What did I hope to achieve through my work?</p> <p>For me, it was never truly about the technology itself, but about the community and the sense of purpose that came with working on projects that mattered. As a filmmaker at heart, I had always been drawn to stories that explored complex issues and promoted empathy and understanding.</p> <p>Quitting GitHub wasn&rsquo;t an easy decision, but it was one that ultimately freed me from feeling like I was compromising my values. It forced me to confront the tension between my desires for connection and collaboration, and the need for personal autonomy.</p> <p>Today, I work on a range of projects using alternative platforms and tools. It&rsquo;s not always easy – sometimes I miss the convenience and community of GitHub – but it&rsquo;s worth it to know that I&rsquo;m living more authentically.</p> <p>One of the biggest challenges has been building new relationships within the developer community. In the past, I relied heavily on GitHub for collaboration and networking opportunities. But by leaving, I&rsquo;ve had to start from scratch.</p> <p>It&rsquo;s taken time and effort to rebuild those connections, but it&rsquo;s worth it. Today, I&rsquo;m part of a vibrant network of developers who share my values and priorities. We work together on projects that truly matter – issues like data privacy, intellectual property, and accessibility.</p> <p>Quitting GitHub wasn&rsquo;t just about technology – it was about reclaiming my own integrity and living out my values in a more meaningful way. It&rsquo;s been a journey of self-discovery, growth, and transformation. And I&rsquo;m grateful for every step along the way.</p> <p>So, if you&rsquo;re like me and struggling with the tension between your personal values and your work choices, I want to encourage you to take a step back and re-examine your own motivations. What are you working towards? Why is it truly important to you?</p> <p>Take the time to reflect on those questions, and consider whether your current tools and platforms align with your values.</p> <p>In my experience, it&rsquo;s never too late to make a change. And sometimes, the biggest changes come from taking small steps outside of our comfort zones.</p> <p>So, I&rsquo;ll leave you with this: if you&rsquo;re ready to take control of your own journey and reclaim your integrity, start by taking a single step. It might be as simple as switching to an alternative platform or tool. Or it could mean having a difficult conversation with a colleague or manager.</p> <p>Whatever that step is, know that it&rsquo;s worth it. You&rsquo;ll be surprised at how empowering it feels to take ownership of your own choices and priorities.</p> <p>And if you&rsquo;re feeling lost or uncertain, remember that you&rsquo;re not alone. There are many people out there who share your values and aspirations.</p> <p>Let&rsquo;s build a community together – one where we prioritize empathy, understanding, and authenticity.</p> <p>That&rsquo;s my story – a tale of disillusionment, rededication, and the power of taking control of our own choices. I hope it inspires you to take a step in the right direction.</p> <p>As a filmmaker at heart, I believe that stories have the power to shape us and inspire change. And I&rsquo;m grateful to be part of this community – working together towards a brighter future where technology serves humanity, not just corporate interests.</p> <p>We&rsquo;ll get there – one small step at a time.</p> - - - - diff --git a/tags/windows/index.html b/tags/windows/index.html deleted file mode 100644 index 35cb136..0000000 --- a/tags/windows/index.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - Tag: - - Windows - - - - - Milliron X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Milliron X - -

Milliron X

-
-
- - - - -
- - - - - - - - - - - - - - - - -
-
-
-

- Tag: - Windows - -

-
-
-
- -
- - - -
- - - -
- - - - - - - Subscribe - - - - - - -
- - - - - - - - - - -
-
- -
- -

Why I gave up GitHub: A personal retrospective

- - -
- 01 Jan 2024 -
- -
- - - - - - - - - - - - -
- -
- - - - - -

- - -

Your personal journey to quitting GitHub resources is a story of disillusionment -and rededication. As a Christian American chemical -engineer-turned-bioinformatician, I had always been fascinated by the -intersection of technology and faith.

-

Growing up in a conservative family with Libertarian leanings, I was taught to -value individual freedom and limited government intervention. But as I delved -deeper into my work in bioinformatics, I began to see the darker side of -GitHub’s business …

- Read more » -

- - -
-
-
- - - - - -
-
-
-
- - - - -

- © 2025 Thomas A. Christensen II -
- Licensed - CC-BY 4.0 -
- Built with Hugo v0.141.0 -

-
- - - - - - - - - diff --git a/tags/windows/index.xml b/tags/windows/index.xml deleted file mode 100644 index cd90d30..0000000 --- a/tags/windows/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Windows on MillironX - http://localhost:1313/tags/windows/ - Recent content in Windows on MillironX - Hugo - en-us - Mon, 01 Jan 2024 00:00:00 +0000 - - - Why I gave up GitHub: A personal retrospective - http://localhost:1313/posts/why-i-gave-up-github/ - Mon, 01 Jan 2024 00:00:00 +0000 - http://localhost:1313/posts/why-i-gave-up-github/ - <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Your personal journey to quitting GitHub resources is a story of disillusionment and rededication. As a Christian American chemical engineer-turned-bioinformatician, I had always been fascinated by the intersection of technology and faith.</p> <p>Growing up in a conservative family with Libertarian leanings, I was taught to value individual freedom and limited government intervention. But as I delved deeper into my work in bioinformatics, I began to see the darker side of GitHub&rsquo;s business model. The platform&rsquo;s emphasis on open-source and community-driven development seemed at odds with my own values of intellectual property and personal autonomy.</p> - - - diff --git a/tags/windows/page/1/index.html b/tags/windows/page/1/index.html deleted file mode 100644 index 9775d8a..0000000 --- a/tags/windows/page/1/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - http://localhost:1313/tags/windows/ - - - - - - diff --git a/tags/winter/feed.xml b/tags/winter/feed.xml deleted file mode 100644 index 3b16928..0000000 --- a/tags/winter/feed.xml +++ /dev/null @@ -1 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/winter/2025-03-31T00:14:19+00:00All content tagged "winter" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ \ No newline at end of file diff --git a/tags/winter/index.html b/tags/winter/index.html deleted file mode 100644 index 3189dd5..0000000 --- a/tags/winter/index.html +++ /dev/null @@ -1,34 +0,0 @@ -Tag: -Winter -- -Milliron X -
-Milliron X

Milliron X

Tag: -Winter

-Subscribe
Thumbnail of thumbnail.jpeg

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/winter/index.xml b/tags/winter/index.xml deleted file mode 100644 index e77b3d3..0000000 --- a/tags/winter/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Winter on MillironX - http://localhost:1313/tags/winter/ - Recent content in Winter on MillironX - Hugo - en-us - Fri, 26 Dec 2014 15:45:36 +0000 - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - diff --git a/tags/winter/page/1/index.html b/tags/winter/page/1/index.html deleted file mode 100644 index 1ae5a45..0000000 --- a/tags/winter/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/winter/ - \ No newline at end of file diff --git a/tags/wyoming/feed.xml b/tags/wyoming/feed.xml deleted file mode 100644 index 2da090e..0000000 --- a/tags/wyoming/feed.xml +++ /dev/null @@ -1,6 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/tags/wyoming/2025-03-31T00:14:19+00:00All content tagged "wyoming" on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - \ No newline at end of file diff --git a/tags/wyoming/index.html b/tags/wyoming/index.html deleted file mode 100644 index c5c6e47..0000000 --- a/tags/wyoming/index.html +++ /dev/null @@ -1,35 +0,0 @@ -Tag: -Wyoming -- -Milliron X -
-Milliron X

Milliron X

Tag: -Wyoming

-Subscribe
Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/tags/wyoming/index.xml b/tags/wyoming/index.xml deleted file mode 100644 index 13aee94..0000000 --- a/tags/wyoming/index.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - Wyoming on MillironX - http://localhost:1313/tags/wyoming/ - Recent content in Wyoming on MillironX - Hugo - en-us - Fri, 10 Jul 2015 18:23:48 +0000 - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - diff --git a/tags/wyoming/page/1/index.html b/tags/wyoming/page/1/index.html deleted file mode 100644 index 9fbecd4..0000000 --- a/tags/wyoming/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/tags/wyoming/ - \ No newline at end of file diff --git a/thumbnail_hu941563462474298415.jpg b/thumbnail_hu941563462474298415.jpg deleted file mode 100644 index 1e0f1fb..0000000 Binary files a/thumbnail_hu941563462474298415.jpg and /dev/null differ diff --git a/videos/ag-olympics-reel/index.html b/videos/ag-olympics-reel/index.html deleted file mode 100644 index 3cc264c..0000000 --- a/videos/ag-olympics-reel/index.html +++ /dev/null @@ -1,26 +0,0 @@ -Farm Bureau Ag Olympics Reel -- -Milliron X -
-Milliron X

Milliron X

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.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/ag-olympics-reel/thumbnail_hu1085531637192475127.jpg b/videos/ag-olympics-reel/thumbnail_hu1085531637192475127.jpg deleted file mode 100644 index 41e6a7d..0000000 Binary files a/videos/ag-olympics-reel/thumbnail_hu1085531637192475127.jpg and /dev/null differ diff --git a/videos/ai-2015/index.html b/videos/ai-2015/index.html deleted file mode 100644 index af0b009..0000000 --- a/videos/ai-2015/index.html +++ /dev/null @@ -1,29 +0,0 @@ -AI 2015 -- -Milliron X -
-Milliron X

Milliron X

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/ai-2015/thumbnail.jpeg b/videos/ai-2015/thumbnail.jpeg deleted file mode 100644 index 276b742..0000000 Binary files a/videos/ai-2015/thumbnail.jpeg and /dev/null differ diff --git a/videos/ai-2015/thumbnail_hu8780297966472840382.jpeg b/videos/ai-2015/thumbnail_hu8780297966472840382.jpeg deleted file mode 100644 index 1be4f26..0000000 Binary files a/videos/ai-2015/thumbnail_hu8780297966472840382.jpeg and /dev/null differ diff --git a/videos/albany-county-fair---2015/index.html b/videos/albany-county-fair---2015/index.html deleted file mode 100644 index 34c89b5..0000000 --- a/videos/albany-county-fair---2015/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Albany County Fair - 2015 -- -Milliron X -
-Milliron X

Milliron X

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/albany-county-fair---2015/thumbnail.jpeg b/videos/albany-county-fair---2015/thumbnail.jpeg deleted file mode 100644 index 016f672..0000000 Binary files a/videos/albany-county-fair---2015/thumbnail.jpeg and /dev/null differ diff --git a/videos/albany-county-fair---2015/thumbnail_hu13609417100182815821.jpeg b/videos/albany-county-fair---2015/thumbnail_hu13609417100182815821.jpeg deleted file mode 100644 index c3b0507..0000000 Binary files a/videos/albany-county-fair---2015/thumbnail_hu13609417100182815821.jpeg and /dev/null differ diff --git a/videos/cow-herding-with-magica---1/index.html b/videos/cow-herding-with-magica---1/index.html deleted file mode 100644 index 1e15d5d..0000000 --- a/videos/cow-herding-with-magica---1/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Cow Herding with Magica - 1 -- -Milliron X -
-Milliron X

Milliron X

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/cow-herding-with-magica---1/thumbnail.jpeg b/videos/cow-herding-with-magica---1/thumbnail.jpeg deleted file mode 100644 index 1d16546..0000000 Binary files a/videos/cow-herding-with-magica---1/thumbnail.jpeg and /dev/null differ diff --git a/videos/cow-herding-with-magica---1/thumbnail_hu14102894188440054684.jpeg b/videos/cow-herding-with-magica---1/thumbnail_hu14102894188440054684.jpeg deleted file mode 100644 index d7135b0..0000000 Binary files a/videos/cow-herding-with-magica---1/thumbnail_hu14102894188440054684.jpeg and /dev/null differ diff --git a/videos/cow-herding-with-magica---2/index.html b/videos/cow-herding-with-magica---2/index.html deleted file mode 100644 index 5f0bee2..0000000 --- a/videos/cow-herding-with-magica---2/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Cow Herding with Magica - 2 -- -Milliron X -
-Milliron X

Milliron X

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/cow-herding-with-magica---2/thumbnail.jpeg b/videos/cow-herding-with-magica---2/thumbnail.jpeg deleted file mode 100644 index 5219611..0000000 Binary files a/videos/cow-herding-with-magica---2/thumbnail.jpeg and /dev/null differ diff --git a/videos/cow-herding-with-magica---2/thumbnail_hu8214351681913813256.jpeg b/videos/cow-herding-with-magica---2/thumbnail_hu8214351681913813256.jpeg deleted file mode 100644 index ec5a115..0000000 Binary files a/videos/cow-herding-with-magica---2/thumbnail_hu8214351681913813256.jpeg and /dev/null differ diff --git a/videos/cow-roundup-and-loading---september-28-2014/index.html b/videos/cow-roundup-and-loading---september-28-2014/index.html deleted file mode 100644 index 3d7f6c8..0000000 --- a/videos/cow-roundup-and-loading---september-28-2014/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Cow Roundup and Loading - September 28, 2014 -- -Milliron X -
-Milliron X

Milliron X

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/cow-roundup-and-loading---september-28-2014/thumbnail.jpeg b/videos/cow-roundup-and-loading---september-28-2014/thumbnail.jpeg deleted file mode 100644 index 1aa856f..0000000 Binary files a/videos/cow-roundup-and-loading---september-28-2014/thumbnail.jpeg and /dev/null differ diff --git a/videos/cow-roundup-and-loading---september-28-2014/thumbnail_hu11038365808876571843.jpeg b/videos/cow-roundup-and-loading---september-28-2014/thumbnail_hu11038365808876571843.jpeg deleted file mode 100644 index 455483d..0000000 Binary files a/videos/cow-roundup-and-loading---september-28-2014/thumbnail_hu11038365808876571843.jpeg and /dev/null differ diff --git a/videos/feed.xml b/videos/feed.xml deleted file mode 100644 index ceb2346..0000000 --- a/videos/feed.xml +++ /dev/null @@ -1,162 +0,0 @@ -Hugo v0.141.0https://millironx.millironx.page/@indiewebpub/videos/2025-03-31T00:14:19+00:00Videos on Milliron Xhttps://millironx.millironx.page/@indiewebpub/videos/rlri-hype-video/RLRI Hype Video2023-11-07T00:48:13+00:002023-11-07T00:48:13+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January. -More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central -<p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> -<p>More info and signup at <a - href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> -https://millironx.millironx.page/@indiewebpub/videos/ag-olympics-reel/Farm Bureau Ag Olympics Reel2017-02-16T00:00:00+00:002017-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -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. -<p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> -https://millironx.millironx.page/@indiewebpub/videos/if-you-come-out-to-the-fair/If You Come Out To The Fair2016-11-13T00:28:26+00:002016-11-13T00:28:26+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair. -<p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> -https://millironx.millironx.page/@indiewebpub/videos/justins-reel/Justin's Reel2016-11-07T21:11:02+00:002016-11-07T21:11:02+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com) -<p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/albany-county-fair---2015/Albany County Fair - 20152016-02-01T11:46:10+00:002016-02-01T11:46:10+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015. -<p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> -https://millironx.millironx.page/@indiewebpub/videos/ai-2015/AI 20152015-12-15T11:20:23+00:002015-12-15T11:20:23+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/ -Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows. -Music: “Thingamajig” by Jason Shaw (http://audionautix.com) -Starring: Thomas A. Christensen II, Amanda Christensen -<p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> -<p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a - href="http://audionautix.com">http://audionautix.com</a>)</p> -<p>Starring: <a - href="https://millironx.com/">Thomas A. Christensen II</a>, <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> -https://millironx.millironx.page/@indiewebpub/videos/in-the-hayfields/In The Hayfields2015-11-05T19:32:44+00:002015-11-05T19:32:44+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro. -<p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/ranching-like-a-hero/Ranching Like A Hero2015-07-10T18:23:48+00:002015-07-10T18:23:48+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/) -<p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a - href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> -https://millironx.millironx.page/@indiewebpub/videos/non-verum-the-mystery-killer/Non Verum: The Mystery Killer2015-06-12T11:58:14+00:002015-06-12T11:58:14+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end. -<p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-high-plains-4-h-carnival-booth-2015/The High Plains 4-H Carnival Booth 20152015-03-20T00:00:00+00:002015-03-20T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival. -<p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> -<hr> -<p>CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -&ldquo;Hustle&rdquo; by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)</p> -https://millironx.millironx.page/@indiewebpub/videos/repetition---reloading/Repetition - Reloading2015-02-16T00:00:00+00:002015-02-16T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge -<p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> -https://millironx.millironx.page/@indiewebpub/videos/haying-time/Haying Time2015-02-02T00:00:00+00:002015-02-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store. -<p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-christmas-cannon/The Christmas Cannon2014-12-26T15:45:36+00:002014-12-26T15:45:36+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/https://millironx.millironx.page/@indiewebpub/videos/cow-roundup-and-loading---september-28-2014/Cow Roundup and Loading - September 28, 20142014-12-11T00:00:00+00:002014-12-11T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro. -<p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---1/Cow Herding with Magica - 12014-12-04T00:00:00+00:002014-12-04T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -On a cloudy day, Magica was ready to go get the cows and move them to their new pasture. -<p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> -https://millironx.millironx.page/@indiewebpub/videos/cow-herding-with-magica---2/Cow Herding with Magica - 22014-12-02T00:00:00+00:002014-12-02T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out. -<p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-wests-bloopers/The Wild West's Bloopers2014-12-01T00:00:00+00:002014-12-01T00:00:00+00:00Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/ -Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest. -<p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> -https://millironx.millironx.page/@indiewebpub/videos/the-wild-west-wasnt-so-wild-after-all/The Wild West Wasn't So Wild After All!2014-11-22T00:00:00+00:002014-11-22T00:00:00+00:00Amanda Christensenhttps://millironx.millironx.page/@indiewebpub/people/amanda-christensen/Malea Christensenhttps://millironx.millironx.page/@indiewebpub/people/malea-christensen/Thaddaeus Christensenhttps://millironx.millironx.page/@indiewebpub/people/thaddaeus-christensen/Cecilia Hewletthttps://millironx.millironx.page/@indiewebpub/people/cecilia-hewlett/Jeremiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jeremiah-hewlett/Thomas A. Christensen IIhttps://millironx.millironx.page/@indiewebpub/people/thomas-a.-christensen-ii/Christiana Hewletthttps://millironx.millironx.page/@indiewebpub/people/christiana-hewlett/Colette Christensenhttps://millironx.millironx.page/@indiewebpub/people/colette-christensen/Jedidiah Hewletthttps://millironx.millironx.page/@indiewebpub/people/jedidiah-hewlett/Cindi Hewletthttps://millironx.millironx.page/@indiewebpub/people/cindi-hewlett/ -Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.” -<p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> -<p>Inspired by Thomas E. Woods, Jr.: &ldquo;Was the &lsquo;Wild West&rsquo; Really So Wild?&rdquo; in <em>33 Questions About American History You&rsquo;re not Supposed to Ask</em> (book)</p> -<p>Other sources include:</p> -<ul> -<li>Abbot, E. C. &amp; Smith, Helena Huntington. <em>We Pointed Them North: Recollections of a Cowpuncher</em> (book)</li> -<li>Anderson, Terry L. &amp; Hill, Peter J. <em>The Not So Wild, Wild West</em> (book). -Morriss, Andrew P. &ldquo;Hayek &amp; Cowboys: Customary Law in the American West&rdquo; in <em>NYU Journal of Law &amp; Liberty</em> (journal). Retrieved from heinonline.org/</li> -<li>Tierney, John. &ldquo;The Mild, Mild West&rdquo; in <em>The New York Times</em> (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/</li> -</ul> -<p>Entered in the Wyoming State 4-H FilmFest.</p> -<p><strong>CREDITS</strong></p> -<p>Directed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p>Producers:</p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -</ul> -<p>Screenplay by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>CAST</strong></p> -<ul> -<li>Host: <a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li>Billy the Kid: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>Pat Garret: <a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -<li>Reporter: <a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li>Buffalo Bill: <a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li>J. H. Beadle: <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li>Miner: <a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -</ul> -<p><strong>MUSIC</strong></p> -<p>&ldquo;Billy the Kid&rdquo; by Traditional, performed by:</p> -<ul> -<li><a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></li> -<li><a - href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></li> -<li><a - href="https://millironx.com/people/malea-christensen">Malea Christensen</a></li> -<li><a - href="https://millironx.com/people/thaddaeus-christensen">Thaddaeus Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -<li><a - href="https://millironx.com/people/cecilia-hewlett">Cecilia Hewlett</a></li> -<li><a - href="https://millironx.com/people/jeremiah-hewlett">Jeremiah Hewlett</a></li> -</ul> -<p>Recorded and Mixed by <a - href="https://millironx.com/people/thomas-a.-christensen-ii">Thomas A. Christensen II</a></p> -<p><strong>COSTUMES</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>ON SITE AUDIO RECORDING</strong></p> -<ul> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/christiana-hewlett">Christiana Hewlett</a></li> -</ul> -<p><strong>TRANSPORTATION</strong></p> -<ul> -<li><a - href="https://millironx.com/people/colette-christensen">Colette Christensen</a></li> -<li><a - href="https://millironx.com/people/jedidiah-hewlett">Jedidiah Hewlett</a></li> -<li><a - href="https://millironx.com/people/cindi-hewlett">Cindi Hewlett</a></li> -</ul> -<p>Special thank to the <a - href="https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison">Wyoming Territorial Park</a> for use of their Old West Town.</p> - \ No newline at end of file diff --git a/videos/haying-time/index.html b/videos/haying-time/index.html deleted file mode 100644 index 477a423..0000000 --- a/videos/haying-time/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Haying Time -- -Milliron X -
-Milliron X

Milliron X

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/haying-time/thumbnail.jpeg b/videos/haying-time/thumbnail.jpeg deleted file mode 100644 index 51c5b89..0000000 Binary files a/videos/haying-time/thumbnail.jpeg and /dev/null differ diff --git a/videos/haying-time/thumbnail_hu17927046616265686014.jpeg b/videos/haying-time/thumbnail_hu17927046616265686014.jpeg deleted file mode 100644 index 13ceae1..0000000 Binary files a/videos/haying-time/thumbnail_hu17927046616265686014.jpeg and /dev/null differ diff --git a/videos/if-you-come-out-to-the-fair/index.html b/videos/if-you-come-out-to-the-fair/index.html deleted file mode 100644 index e524825..0000000 --- a/videos/if-you-come-out-to-the-fair/index.html +++ /dev/null @@ -1,23 +0,0 @@ -If You Come Out To The Fair -- -Milliron X -
-Milliron X

Milliron X

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/if-you-come-out-to-the-fair/thumbnail.jpeg b/videos/if-you-come-out-to-the-fair/thumbnail.jpeg deleted file mode 100644 index 6a50618..0000000 Binary files a/videos/if-you-come-out-to-the-fair/thumbnail.jpeg and /dev/null differ diff --git a/videos/if-you-come-out-to-the-fair/thumbnail_hu17677970800605924475.jpeg b/videos/if-you-come-out-to-the-fair/thumbnail_hu17677970800605924475.jpeg deleted file mode 100644 index f6f7477..0000000 Binary files a/videos/if-you-come-out-to-the-fair/thumbnail_hu17677970800605924475.jpeg and /dev/null differ diff --git a/videos/in-the-hayfields/index.html b/videos/in-the-hayfields/index.html deleted file mode 100644 index e7a2a17..0000000 --- a/videos/in-the-hayfields/index.html +++ /dev/null @@ -1,23 +0,0 @@ -In The Hayfields -- -Milliron X -
-Milliron X

Milliron X

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/in-the-hayfields/thumbnail.jpeg b/videos/in-the-hayfields/thumbnail.jpeg deleted file mode 100644 index 87d0c7d..0000000 Binary files a/videos/in-the-hayfields/thumbnail.jpeg and /dev/null differ diff --git a/videos/in-the-hayfields/thumbnail_hu11131693500137184710.jpeg b/videos/in-the-hayfields/thumbnail_hu11131693500137184710.jpeg deleted file mode 100644 index 8b1f6d1..0000000 Binary files a/videos/in-the-hayfields/thumbnail_hu11131693500137184710.jpeg and /dev/null differ diff --git a/videos/index.html b/videos/index.html deleted file mode 100644 index ececb3c..0000000 --- a/videos/index.html +++ /dev/null @@ -1,64 +0,0 @@ -Videos -- -Milliron X -
-Milliron X

Milliron X

Videography Portfolio

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.

-Subscribe
Thumbnail of thumbnail.jpeg

RLRI Hype Video

07 Nov 2023

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

Read more »

Thumbnail of thumbnail.jpg

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.

Read more »

Thumbnail of thumbnail.jpeg

A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see “if you come out to the fair.” Filmed entirely during the 2016 Albany County Fair.

Read more »

Thumbnail of thumbnail.jpeg

Justin's Reel

07 Nov 2016

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

Read more »

Thumbnail of thumbnail.jpeg

A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/index.xml b/videos/index.xml deleted file mode 100644 index 288e6dc..0000000 --- a/videos/index.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - Videos on MillironX - http://localhost:1313/videos/ - Recent content in Videos on MillironX - Hugo - en-us - Tue, 07 Nov 2023 00:48:13 +0000 - - - RLRI Hype Video - http://localhost:1313/videos/rlri-hype-video/ - Tue, 07 Nov 2023 00:48:13 +0000 - http://localhost:1313/videos/rlri-hype-video/ - <p>Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here&rsquo;s a sneak preview of what to expect in January.</p> <p>More info and signup at <a href="https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central">https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central</a></p> - - - Farm Bureau Ag Olympics Reel - http://localhost:1313/videos/ag-olympics-reel/ - Thu, 16 Feb 2017 00:00:00 +0000 - http://localhost:1313/videos/ag-olympics-reel/ - <p>The Albany County Farm Bureau Young Farmer&rsquo;s and Rancher&rsquo;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.</p> - - - If You Come Out To The Fair - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - Sun, 13 Nov 2016 00:28:26 +0000 - http://localhost:1313/videos/if-you-come-out-to-the-fair/ - <p>A sort of documentary about the various activities at the Albany County Fair: shooting sports, indoor projects, horse shows, beef shows, family night, round robin, and the junior livestock sale. All available for you to see &ldquo;if you come out to the fair.&rdquo; Filmed entirely during the 2016 Albany County Fair.</p> - - - Justin's Reel - http://localhost:1313/videos/justins-reel/ - Mon, 07 Nov 2016 21:11:02 +0000 - http://localhost:1313/videos/justins-reel/ - <p>A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. Music: &ldquo;Jenny&rsquo;s Theme&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> - - - Albany County Fair - 2015 - http://localhost:1313/videos/albany-county-fair---2015/ - Mon, 01 Feb 2016 11:46:10 +0000 - http://localhost:1313/videos/albany-county-fair---2015/ - <p>A short montage of the kids, their projects, and all of the fun to be had at the Albany County Fair in 2015.</p> - - - AI 2015 - http://localhost:1313/videos/ai-2015/ - Tue, 15 Dec 2015 11:20:23 +0000 - http://localhost:1313/videos/ai-2015/ - <p>Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.</p> <p>Music: &ldquo;Thingamajig&rdquo; by Jason Shaw (<a href="http://audionautix.com">http://audionautix.com</a>)</p> <p>Starring: <a href="https://millironx.com/">Thomas A. Christensen II</a>, <a href="https://millironx.com/people/amanda-christensen">Amanda Christensen</a></p> - - - In The Hayfields - http://localhost:1313/videos/in-the-hayfields/ - Thu, 05 Nov 2015 19:32:44 +0000 - http://localhost:1313/videos/in-the-hayfields/ - <p>A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.</p> - - - Ranching Like A Hero - http://localhost:1313/videos/ranching-like-a-hero/ - Fri, 10 Jul 2015 18:23:48 +0000 - http://localhost:1313/videos/ranching-like-a-hero/ - <p>No acting. No retakes. Not even a &ldquo;Pose for the camera!&rdquo; Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. Music: &ldquo;Swansong (Instrumental Version)&rdquo; by Josh Woodward (<a href="http://www.joshwoodward.com/">http://www.joshwoodward.com/</a>)</p> - - - Non Verum: The Mystery Killer - http://localhost:1313/videos/non-verum-the-mystery-killer/ - Fri, 12 Jun 2015 11:58:14 +0000 - http://localhost:1313/videos/non-verum-the-mystery-killer/ - <p>During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.</p> - - - The High Plains 4-H Carnival Booth 2015 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - Fri, 20 Mar 2015 00:00:00 +0000 - http://localhost:1313/videos/the-high-plains-4-h-carnival-booth-2015/ - <p>Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was &ldquo;Marti Gras&rdquo; (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I&rsquo;m bragging, but it won 1st place at the carnival.</p> - - - Repetition - Reloading - http://localhost:1313/videos/repetition---reloading/ - Mon, 16 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/repetition---reloading/ - <p>Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: &ldquo;Prelude No. 14&rdquo; by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge</p> - - - Haying Time - http://localhost:1313/videos/haying-time/ - Mon, 02 Feb 2015 00:00:00 +0000 - http://localhost:1313/videos/haying-time/ - <p>The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: &ldquo;Timen Passing By&rdquo; by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.</p> - - - The Christmas Cannon - http://localhost:1313/videos/the-christmas-cannon/ - Fri, 26 Dec 2014 15:45:36 +0000 - http://localhost:1313/videos/the-christmas-cannon/ - - - - Cow Roundup and Loading - September 28, 2014 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - Thu, 11 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-roundup-and-loading---september-28-2014/ - <p>The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.</p> - - - Cow Herding with Magica - 1 - http://localhost:1313/videos/cow-herding-with-magica---1/ - Thu, 04 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---1/ - <p>On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.</p> - - - Cow Herding with Magica - 2 - http://localhost:1313/videos/cow-herding-with-magica---2/ - Tue, 02 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/cow-herding-with-magica---2/ - <p>It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.</p> - - - The Wild West's Bloopers - http://localhost:1313/videos/the-wild-wests-bloopers/ - Mon, 01 Dec 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-wests-bloopers/ - <p>Just because the West wasn&rsquo;t wild doesn&rsquo;t mean that there weren&rsquo;t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.</p> - - - The Wild West Wasn't So Wild After All! - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - Sat, 22 Nov 2014 00:00:00 +0000 - http://localhost:1313/videos/the-wild-west-wasnt-so-wild-after-all/ - <p>Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today&rsquo;s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the &ldquo;Wild West.&rdquo;</p> - - - diff --git a/videos/justins-reel/index.html b/videos/justins-reel/index.html deleted file mode 100644 index 0ad5419..0000000 --- a/videos/justins-reel/index.html +++ /dev/null @@ -1,24 +0,0 @@ -Justin's Reel -- -Milliron X -
-Milliron X

Milliron X

A less romantic look at the 2016 Albany County Fair. Named for Justin Chatfield, the boy speaking during the opening scene. -Music: “Jenny’s Theme” by Jason Shaw (http://audionautix.com)

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/justins-reel/thumbnail.jpeg b/videos/justins-reel/thumbnail.jpeg deleted file mode 100644 index a0e3959..0000000 Binary files a/videos/justins-reel/thumbnail.jpeg and /dev/null differ diff --git a/videos/justins-reel/thumbnail_hu10941952574935661843.jpeg b/videos/justins-reel/thumbnail_hu10941952574935661843.jpeg deleted file mode 100644 index fd998fe..0000000 Binary files a/videos/justins-reel/thumbnail_hu10941952574935661843.jpeg and /dev/null differ diff --git a/videos/non-verum-the-mystery-killer/index.html b/videos/non-verum-the-mystery-killer/index.html deleted file mode 100644 index 12f511d..0000000 --- a/videos/non-verum-the-mystery-killer/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Non Verum: The Mystery Killer -- -Milliron X -
-Milliron X

Milliron X

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/non-verum-the-mystery-killer/thumbnail.jpeg b/videos/non-verum-the-mystery-killer/thumbnail.jpeg deleted file mode 100644 index 9983787..0000000 Binary files a/videos/non-verum-the-mystery-killer/thumbnail.jpeg and /dev/null differ diff --git a/videos/non-verum-the-mystery-killer/thumbnail_hu13032533048118413303.jpeg b/videos/non-verum-the-mystery-killer/thumbnail_hu13032533048118413303.jpeg deleted file mode 100644 index 2b6c27f..0000000 Binary files a/videos/non-verum-the-mystery-killer/thumbnail_hu13032533048118413303.jpeg and /dev/null differ diff --git a/videos/page/1/index.html b/videos/page/1/index.html deleted file mode 100644 index 990087a..0000000 --- a/videos/page/1/index.html +++ /dev/null @@ -1,2 +0,0 @@ -https://millironx.millironx.page/@indiewebpub/videos/ - \ No newline at end of file diff --git a/videos/page/2/index.html b/videos/page/2/index.html deleted file mode 100644 index fc5c687..0000000 --- a/videos/page/2/index.html +++ /dev/null @@ -1,63 +0,0 @@ -Videos -- -Milliron X -
-Milliron X

Milliron X

Videography Portfolio

-Subscribe
Thumbnail of thumbnail.jpeg

AI 2015

15 Dec 2015
-

Two AI techs. A herd of cows. It was breeding season and time to artificially inseminate those cows.

Music: “Thingamajig” by Jason Shaw (http://audionautix.com)

Starring: Thomas A. Christensen II, Amanda Christensen

Read more »

Thumbnail of thumbnail.jpeg

In The Hayfields

05 Nov 2015

A complete trip through the swathing, raking, and baling we did during haying season this year and last year as captured by my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

Read more »

Thumbnail of thumbnail.jpeg

During the winter of 2003-2004, a mysterious disease rampaged through the United States and Russia unknown to a majority of people, killing thousands of people, and maiming scores of livestock. This is the story of the least-known epidemic in history, as told by the people who conquered the illness in the end.

Read more »

Thumbnail of thumbnail.jpeg

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/page/3/index.html b/videos/page/3/index.html deleted file mode 100644 index 625e330..0000000 --- a/videos/page/3/index.html +++ /dev/null @@ -1,54 +0,0 @@ -Videos -- -Milliron X -
-Milliron X

Milliron X

Videography Portfolio

-Subscribe
Thumbnail of thumbnail.jpeg

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

Read more »

Thumbnail of thumbnail.jpeg

Haying Time

02 Feb 2015

The story of our hay crop - 2014, as captured by both my Nikon and GoPro in both real time and time-lapse. Produced, directed, filmed and edited by yours truly (Thomas A. Christensen II). Music: “Timen Passing By” by Jason Shaw (audionautix.com/index.html) - obtained from the Vimeo music store.

Read more »

Thumbnail of thumbnail.jpeg
Thumbnail of thumbnail.jpeg

The Tom Williams family showed up to help us roundup the cows, and I captured time-lapse of the whole thing with my GoPro.

Read more »

Thumbnail of thumbnail.jpeg

On a cloudy day, Magica was ready to go get the cows and move them to their new pasture.

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/page/4/index.html b/videos/page/4/index.html deleted file mode 100644 index 2e9583d..0000000 --- a/videos/page/4/index.html +++ /dev/null @@ -1,60 +0,0 @@ -Videos -- -Milliron X -
-Milliron X

Milliron X

Videography Portfolio

-Subscribe
Thumbnail of thumbnail.jpeg

It was time to bring the cows in for pregchecking, and I captured it all with my GoPro. Here is a selected scene where Magica helps out.

Read more »

Thumbnail of thumbnail.jpeg

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

Read more »

Thumbnail of thumbnail.jpeg
- - - - - - - - -

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild …

Read more »

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/ranching-like-a-hero/index.html b/videos/ranching-like-a-hero/index.html deleted file mode 100644 index 8898c6f..0000000 --- a/videos/ranching-like-a-hero/index.html +++ /dev/null @@ -1,24 +0,0 @@ -Ranching Like A Hero -- -Milliron X -
-Milliron X

Milliron X

No acting. No retakes. Not even a “Pose for the camera!” Just 100% real ranch work. Filmed 100% on Wyoming ranches with a GoPro HERO3+ Silver. -Music: “Swansong (Instrumental Version)” by Josh Woodward (http://www.joshwoodward.com/)

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/ranching-like-a-hero/thumbnail.jpeg b/videos/ranching-like-a-hero/thumbnail.jpeg deleted file mode 100644 index 199d122..0000000 Binary files a/videos/ranching-like-a-hero/thumbnail.jpeg and /dev/null differ diff --git a/videos/ranching-like-a-hero/thumbnail_hu12441906129829282264.jpeg b/videos/ranching-like-a-hero/thumbnail_hu12441906129829282264.jpeg deleted file mode 100644 index 9752529..0000000 Binary files a/videos/ranching-like-a-hero/thumbnail_hu12441906129829282264.jpeg and /dev/null differ diff --git a/videos/repetition---reloading/index.html b/videos/repetition---reloading/index.html deleted file mode 100644 index eb6038f..0000000 --- a/videos/repetition---reloading/index.html +++ /dev/null @@ -1,23 +0,0 @@ -Repetition - Reloading -- -Milliron X -
-Milliron X

Milliron X

Reloading ammunition - a repetitious task if ever there was one. Special thanks to my dad for his help on reloading, lighting and camera setup, and reviewing the edited product. Music: “Prelude No. 14” by Chris Zabriskie (chriszabriskie.com) Obtained from the Vimeo Music Store: vimeo.com/musicstore/track/53821/prelude-no-14-by-chris-zabriskie/ Created for the Weekend Challenge: Vimeo Weekend Challenge

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/repetition---reloading/thumbnail.jpeg b/videos/repetition---reloading/thumbnail.jpeg deleted file mode 100644 index cb13b72..0000000 Binary files a/videos/repetition---reloading/thumbnail.jpeg and /dev/null differ diff --git a/videos/repetition---reloading/thumbnail_hu6745943679102771557.jpeg b/videos/repetition---reloading/thumbnail_hu6745943679102771557.jpeg deleted file mode 100644 index bd022c9..0000000 Binary files a/videos/repetition---reloading/thumbnail_hu6745943679102771557.jpeg and /dev/null differ diff --git a/videos/rlri-hype-video/index.html b/videos/rlri-hype-video/index.html deleted file mode 100644 index 5de4db2..0000000 --- a/videos/rlri-hype-video/index.html +++ /dev/null @@ -1,26 +0,0 @@ -RLRI Hype Video -- -Milliron X -
-Milliron X

Milliron X

Are you ready for Real Life Real Impact 2024? Because we here at Kansas State University are! Here’s a sneak preview of what to expect in January.

More info and signup at https://cvm.org/real-life-real-impact-detail/real-life-real-impact-central

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/rlri-hype-video/thumbnail.jpeg b/videos/rlri-hype-video/thumbnail.jpeg deleted file mode 100644 index 97a9ba2..0000000 Binary files a/videos/rlri-hype-video/thumbnail.jpeg and /dev/null differ diff --git a/videos/rlri-hype-video/thumbnail_hu2950542762109302769.jpeg b/videos/rlri-hype-video/thumbnail_hu2950542762109302769.jpeg deleted file mode 100644 index b4c9330..0000000 Binary files a/videos/rlri-hype-video/thumbnail_hu2950542762109302769.jpeg and /dev/null differ diff --git a/videos/the-christmas-cannon/index.html b/videos/the-christmas-cannon/index.html deleted file mode 100644 index 01af02d..0000000 --- a/videos/the-christmas-cannon/index.html +++ /dev/null @@ -1,23 +0,0 @@ -The Christmas Cannon -- -Milliron X -
-Milliron X

Milliron X

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/the-christmas-cannon/thumbnail.jpeg b/videos/the-christmas-cannon/thumbnail.jpeg deleted file mode 100644 index e57c0e8..0000000 Binary files a/videos/the-christmas-cannon/thumbnail.jpeg and /dev/null differ diff --git a/videos/the-christmas-cannon/thumbnail_hu12195867532647863941.jpeg b/videos/the-christmas-cannon/thumbnail_hu12195867532647863941.jpeg deleted file mode 100644 index 1d20029..0000000 Binary files a/videos/the-christmas-cannon/thumbnail_hu12195867532647863941.jpeg and /dev/null differ diff --git a/videos/the-high-plains-4-h-carnival-booth-2015/index.html b/videos/the-high-plains-4-h-carnival-booth-2015/index.html deleted file mode 100644 index 6b63d52..0000000 --- a/videos/the-high-plains-4-h-carnival-booth-2015/index.html +++ /dev/null @@ -1,29 +0,0 @@ -The High Plains 4-H Carnival Booth 2015 -- -Milliron X -
-Milliron X

Milliron X

Each year, the Albany County 4-H Council holds a county-wide carnival, and each club in Albany County must make a booth to run during the carnival. This year, the carnival theme was “Marti Gras” (even though the date did not coincide with Marti Gras). Not to be deterred, the High Plains 4-H Club, under the leadership of our carnival committee chairman, David Decker, made our traditional rubber-band shooting gallery booth, which of course featured the notorious HIGH PLAINS CARNIVAL CONTRAPTION. Not to sound like I’m bragging, but it won 1st place at the carnival.


CREDITS -High Plains 4-H Club Carnival Committee Chairman -David Decker -Music -“Hustle” by Kevin MacLeod (incompetech.com) -Everything else (well, almost) -Yours truly (Thomas A. Christensen II)

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail.jpeg b/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail.jpeg deleted file mode 100644 index c9e6b60..0000000 Binary files a/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail.jpeg and /dev/null differ diff --git a/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail_hu11986809635270915971.jpeg b/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail_hu11986809635270915971.jpeg deleted file mode 100644 index 3693c5b..0000000 Binary files a/videos/the-high-plains-4-h-carnival-booth-2015/thumbnail_hu11986809635270915971.jpeg and /dev/null differ diff --git a/videos/the-wild-west-wasnt-so-wild-after-all/index.html b/videos/the-wild-west-wasnt-so-wild-after-all/index.html deleted file mode 100644 index fcf1518..0000000 --- a/videos/the-wild-west-wasnt-so-wild-after-all/index.html +++ /dev/null @@ -1,24 +0,0 @@ -The Wild West Wasn't So Wild After All! -- -Milliron X -
-Milliron X

Milliron X

Mention the West to the average person, and images of gunfights, barfights, and train robberies appear in their mind. Recently. historians have begun to refute these visions, though. Learn about what made the Wild West really quite tame compared to today’s civilization from the words of historians like Thomas E. Woods, Jr, Terry Anderson, and Peter Hill. Then listen to old westerners like Buffalo Bill Cody, J. H. Beadle, and a gold miner tell what they knew about the “Wild West.”

Inspired by Thomas E. Woods, Jr.: “Was the ‘Wild West’ Really So Wild?” in 33 Questions About American History You’re not Supposed to Ask (book)

Other sources include:

  • Abbot, E. C. & Smith, Helena Huntington. We Pointed Them North: Recollections of a Cowpuncher (book)
  • Anderson, Terry L. & Hill, Peter J. The Not So Wild, Wild West (book). -Morriss, Andrew P. “Hayek & Cowboys: Customary Law in the American West” in NYU Journal of Law & Liberty (journal). Retrieved from heinonline.org/
  • Tierney, John. “The Mild, Mild West” in The New York Times (newspaper). Retrieved from search.proquest.com.proxy.lccc.wy.edu/

Entered in the Wyoming State 4-H FilmFest.

CREDITS

Directed by Thomas A. Christensen II

Producers:

Screenplay by Thomas A. Christensen II

CAST

MUSIC

“Billy the Kid” by Traditional, performed by:

Recorded and Mixed by Thomas A. Christensen II

COSTUMES

ON SITE AUDIO RECORDING

TRANSPORTATION

Special thank to the Wyoming Territorial Park for use of their Old West Town.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail.jpeg b/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail.jpeg deleted file mode 100644 index 9ba1be8..0000000 Binary files a/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail.jpeg and /dev/null differ diff --git a/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail_hu9643020175942288297.jpeg b/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail_hu9643020175942288297.jpeg deleted file mode 100644 index 6158548..0000000 Binary files a/videos/the-wild-west-wasnt-so-wild-after-all/thumbnail_hu9643020175942288297.jpeg and /dev/null differ diff --git a/videos/the-wild-wests-bloopers/index.html b/videos/the-wild-wests-bloopers/index.html deleted file mode 100644 index 067f6ca..0000000 --- a/videos/the-wild-wests-bloopers/index.html +++ /dev/null @@ -1,23 +0,0 @@ -The Wild West's Bloopers -- -Milliron X -
-Milliron X

Milliron X

Just because the West wasn’t wild doesn’t mean that there weren’t some wildly funny mistakes made there. Entered in the Wyoming State 4-H FilmFest.

© 2025 Thomas A. Christensen II
Licensed -CC-BY 4.0
Built with Hugo v0.141.0

\ No newline at end of file diff --git a/videos/the-wild-wests-bloopers/thumbnail.jpeg b/videos/the-wild-wests-bloopers/thumbnail.jpeg deleted file mode 100644 index eb439e2..0000000 Binary files a/videos/the-wild-wests-bloopers/thumbnail.jpeg and /dev/null differ diff --git a/videos/the-wild-wests-bloopers/thumbnail_hu17027977106756202371.jpeg b/videos/the-wild-wests-bloopers/thumbnail_hu17027977106756202371.jpeg deleted file mode 100644 index 476d679..0000000 Binary files a/videos/the-wild-wests-bloopers/thumbnail_hu17027977106756202371.jpeg and /dev/null differ