Convert to TS/SASS

JavaScript -> TypeScript; CSS -> SASS
This commit is contained in:
Daniel J. Summers 2019-09-08 15:53:30 -05:00
parent 81edef2be8
commit 91a7808e6a
25 changed files with 1997 additions and 1289 deletions

View File

@ -1,9 +1,9 @@
{
"name": "bitbadger-solutions",
"version": "1.1.2",
"version": "2.0.0",
"private": true,
"description": "Bit Badger Solutions Main Web Site",
"author": "Daniel J. Summers <daniel@bitbadger.solutions>",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
@ -12,16 +12,23 @@
"dependencies": {
"pug": "^2.0.3",
"vue": "^2.5.22",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.12.0",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.0.0",
"typescript": "^3.2.1",
"vue-cli-plugin-typescript": "^0.0.1",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
@ -31,11 +38,12 @@
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
"eslint:recommended",
"@vue/typescript"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
"parser": "@typescript-eslint/parser"
}
},
"postcss": {

View File

@ -24,158 +24,107 @@
Secured by #[strong: a(href='//letsencrypt.org') Let's Encrypt]
</template>
<script>
export default {
name: 'app'
}
</script>
<style>
@import url('https://fonts.googleapis.com/css?family=Oswald|Raleway');
html {
background-color: lightgray;
}
body {
margin: 0px;
font-family: "Raleway", "Segoe UI", Ubuntu, Tahoma, "DejaVu Sans", "Liberation Sans", Arial, sans-serif;
background-color: #FFFAFA;
}
a {
color: navy;
text-decoration: none;
}
a:hover {
border-bottom: dotted 1px navy;
}
a img {
border:0;
}
acronym {
border-bottom:dotted 1px black;
}
header, h1, h2, h3, footer a {
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif;
}
h1 {
text-align: center;
margin: 1.4rem 0;
font-size: 2rem;
}
h2 {
margin: 1.2rem 0;
}
h3 {
margin: 1rem 0;
}
h2, h3 {
border-bottom: solid 2px navy;
}
@media all and (min-width:40rem) {
h2, h3 {
width: 80%;
}
}
p {
margin: 1rem 0;
}
#content {
margin: 0 1rem;
}
.content {
font-size: 1.1rem;
}
.auto {
margin: 0 auto;
}
@media all and (min-width: 68rem) {
.content {
width: 66rem;
}
}
.hdr {
font-size: 14pt;
font-weight: bold;
}
.site-header {
height: 100px;
display: flex;
flex-direction: row;
justify-content: space-between;
background-image: -webkit-gradient(linear, left top, left bottom, from(lightgray), to(#FFFAFA));
background-image: -webkit-linear-gradient(top, lightgray, #FFFAFA);
background-image: -moz-linear-gradient(top, lightgray, #FFFAFA);
background-image: linear-gradient(to bottom, lightgray, #FFFAFA);
}
.site-header a:link, .site-header a:visited {
color: black;
}
.site-header a:hover {
border-bottom:none;
}
.header-title {
font-size: 3rem;
font-weight: bold;
line-height: 100px;
text-align: center;
}
.header-spacer {
flex-grow: 3;
}
.header-social {
padding: 25px .8rem 0 0;
}
.header-social img {
width: 50px;
height: 50px;
}
@media all and (max-width:40rem) {
.site-header {
height: auto;
flex-direction: column;
align-items: center;
}
.header-title {
line-height: 3rem;
}
.header-spacer {
display: none;
}
}
.content-item {
padding-left: 5px;
padding-right: 5px;
font-size: 1rem;
}
article.page .metadata {
display: none;
}
.strike {
text-decoration: line-through;
}
footer {
padding: 20px 15px 10px 15px;
display: flex;
flex-direction: row;
justify-content: center;
font-size: 1rem;
color: black;
clear: both;
background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFAFA), to(lightgray));
background-image: -webkit-linear-gradient(top, #FFFAFA, lightgray);
background-image: -moz-linear-gradient(top, #FFFAFA, lightgray);
background-image: linear-gradient(to bottom, #FFFAFA, lightgray);
}
footer a:link, footer a:visited {
color: black;
}
.alignleft {
float:left;
padding-right: 5px;
}
ul {
padding-left: 40px;
}
li {
list-style-type: disc;
}
<style lang="sass">
@import url('https://fonts.googleapis.com/css?family=Oswald|Raleway')
html
background-color: lightgray
body
margin: 0px
font-family: "Raleway", "Segoe UI", Ubuntu, Tahoma, "DejaVu Sans", "Liberation Sans", Arial, sans-serif
background-color: #FFFAFA
a
color: navy
text-decoration: none
a:hover
border-bottom: dotted 1px navy
a img
border: 0
acronym
border-bottom:dotted 1px black
header, h1, h2, h3, footer a
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif
h1
text-align: center
margin: 1.4rem 0
font-size: 2rem
h2
margin: 1.2rem 0
h3
margin: 1rem 0
h2, h3
border-bottom: solid 2px navy
@media all and (min-width:40rem)
h2, h3
width: 80%
p
margin: 1rem 0
#content
margin: 0 1rem
.content
font-size: 1.1rem
.auto
margin: 0 auto
@media all and (min-width: 68rem)
.content
width: 66rem
.hdr
font-size: 14pt
font-weight: bold
.site-header
height: 100px
display: flex
flex-direction: row
justify-content: space-between
background-image: linear-gradient(to bottom, lightgray, #FFFAFA)
.site-header a:link, .site-header a:visited
color: black
.site-header a:hover
border-bottom: none
.header-title
font-size: 3rem
font-weight: bold
line-height: 100px
text-align: center
.header-spacer
flex-grow: 3
.header-social
padding: 25px .8rem 0 0
.header-social img
width: 50px
height: 50px
@media all and (max-width:40rem)
.site-header
height: auto
flex-direction: column
align-items: center
.header-title
line-height: 3rem
.header-spacer
display: none
.content-item
padding-left: 5px
padding-right: 5px
font-size: 1rem
article.page .metadata
display: none
.strike
text-decoration: line-through
footer
padding: 20px 15px 10px 15px
display: flex
flex-direction: row
justify-content: center
font-size: 1rem
color: black
clear: both
background-image: linear-gradient(to bottom, #FFFAFA, lightgray)
footer a:link, footer a:visited
color: black
.alignleft
float: left
padding-right: 5px
ul
padding-left: 40px
li
list-style-type: disc
</style>

View File

@ -1,851 +0,0 @@
<script>
const CATEGORIES = [
{ id: 1, name: 'Web Sites and Applications' },
{ id: 2, name: 'WordPress' },
{ id: 3, name: 'Static Sites' },
{ id: 99, name: 'Personal' }
]
const APPS = [
{
id: 'a-word-from-the-word',
name: 'A Word from the Word',
url: 'https://devotions.summershome.org',
active: true,
categoryId: 99,
noAboutLink: true,
frontPageText: 'Devotions by Daniel',
frontPageOrder: 2
},
{
id: 'bay-vista',
name: 'Bay Vista Baptist Church',
url: 'https://bayvista.org',
active: true,
categoryId: 3,
frontPageText: 'Biloxi, Mississippi',
frontPageOrder: 1,
indexText: 'Southern Baptist church in Biloxi, Mississippi',
paragraphs: [
`Bay Vista Baptist Church has served the spiritual needs of Mississippi&rsquo;s Gulf Coast for decades. They
emphasize serving their community as well; they were a hub for
<abbr title="Federal Emergency Management Agency">FEMA</abbr> during Hurricane Katrina relief and recovery
efforts, and they are a relay point for each year&rsquo;s
<a href="https://www.samaritanspurse.org/what-we-do/operation-christmas-child/">Operation Christmas
Child</a> campaign. As of late 2013, the authors of their current website were no longer around, and no one could
get to the site to update it. We proposed setting up a site based on WordPress, where multiple people could have
the ability to maintain the site, reducing the risk of that happening again. We also mentioned that such a site
could also serve a sermon podcast feed, increasing the reach of their ministry.`
],
activity: [
{
heading: 'What We Did (2014)',
narrative: `We manually downloaded all the publically-accessible parts of their old site, and used that content
to create a WordPress-based site, updating a few outdated items along the way. We also established a
podcast feed for their sermons. A few months after initially setting up the site, we updated the
theme to be more mobile-friendly.`
},
{
heading: 'What We Did (2016)',
narrative: `In the nearly three years since we had set up the site, we were the only ones updating it. We had
recently migrated some older blogs to use a static site generator and were impressed with the
performance gains. We converted their site, to include writing a custom template to support the
podcast feed; it is now generated along with the rest of the site.`
},
{
heading: 'What We Still Do',
narrative: `Bit Badger Solutions hosts this site; we also host the church e-mail accounts, and publish sermons
to their podcast feed weekly.`
}
],
techStack: [
{
name: 'Hexo',
for: 'static site generation'
},
{
name: 'Azure',
for: 'podcast file storage'
}
]
},
{
id: 'cassy-fiano',
name: 'Cassy Fiano',
url: 'http://www.cassyfiano.com',
active: false,
categoryId: 2,
indexText: 'A &ldquo;rising star&rdquo; conservative blogger',
paragraphs: [
`Cassy Fiano (now Cassy Chesser) began blogging back in 2007 on Blogger. She worked hard to network with other
bloggers, and wrote prolifically. As she approached the end of her first year of blogging, she was about to
outgrow Blogger. She asked in a blog post if anyone had experience with Movable Type, the platform used by another
blog to which she contributed. I replied that I did not, but that I had experience with WordPress.`
],
activity: [
{
heading: 'What We Did (2008)',
narrative: `We assisted her with finding a theme, and customized that theme to contain the same sidebar elements
as her current Blogger theme. We modified her old Blogger template to send people to her new blog
(using redirection) after displaying a note that the blog had moved.`
},
{
heading: 'What We Did (2012)',
narrative: `In July 2012, we began hosting the site, as well as continuing support for theme updates. This
joined her military wife blog
<a href="/solutions/hard-corps-wife" title="Hard Corps Wife | Bit Badger Solutions">Hard Corps
Wife</a>, which we had begun hosting in mid-2011.`
},
{
heading: 'What We Still Do',
narrative: `Cassy formally decommissioned this site in early 2014.`
}
],
techStack: [
{
name: 'WordPress',
for: 'blogging (with a custom theme)'
}
]
},
{
id: 'daniel-j-summers',
name: 'Daniel J. Summers',
url: 'https://daniel.summershome.org',
active: true,
categoryId: 99,
noAboutLink: true,
frontPageText: 'Daniel&rsquo;s personal blog',
frontPageOrder: 1
},
{
id: 'dr-melissa-clouthier',
name: 'Dr. Melissa Clouthier',
url: 'http://melissablogs.com',
active: false,
categoryId: 2,
frontPageText: 'Information Pollination',
frontPageOrder: 1,
indexText: 'Politics, health, podcasts and more',
paragraphs: [
`Dr. Melissa Clouthier saw our work with
<a href="/solutions/cassy-fiano" title="Cassy Fiano | Bit Badger Solutions">Cassy</a>&rsquo;s site, and asked us
to help her move off Blogger as well. Melissa blogs from the political right, but also covers health issues and
social media. She had been blogging for a several years, and wanted to bring her old content with her to her new
site.`
],
activity: [
{
heading: 'What We Did (2009)',
narrative: `We created a custom theme based on another site, and developed graphics to complement that theme. We
also imported the content from her Blogger site into the WordPress site, and created a featured
content template for the front page.`
},
{
heading: 'What We Did (2018)',
narrative: `Melissa decommissioned her site; we took final snapshots of the information there, then assisted
with shutting it down.`
}
],
footnotes: [
`<em>(NOTE: The thumbnail of the site represents a new skin on the original theme; while the theme is the same,
Bit Badger Solutions did not create the graphics.)</em>`
],
techStack: [
{
name: 'WordPress',
for: 'blogging (with a custom theme)'
}
]
},
{
id: 'emerald-mountain-christian-school',
name: 'Emerald Mountain Christian School',
url: 'http://www.emeraldmountainchristianschool.org',
active: false,
linkInactive: true,
categoryId: 1,
indexText: 'Classical, Christ-centered education near Wetumpka, Alabama',
paragraphs: [
`Emerald Mountain Christian School is a private Christian school founded over 50 years ago. They use the Principle
Approach&reg;, which emphasizes research, reasoning, relating, and recording to help students synthesize the
information they learn, rather than just requiring rote memorization. More information about the school&rsquo;s
rich history can be found on their site.`
],
activity: [
{
heading: 'What We Did (2004)',
narrative: `They had a website with very basic information and very little styling. We developed a theme (the
one in the thumbnail), based in large part on the design of their printed materials, and they
approved the design. Initially, the site only contained the content from their previous site. We then
put their school calendar of events up on the site, where parents could find the dates for upcoming
events. Finally, we put all the material from their Parent Information Packet online, which helped
prospective families learn more about the school before visiting it.`
},
{
heading: 'What We Did (2011)',
narrative: `The underlying engine of the basic website was switched from PHP to an ASP MVC web application, and
the back-end database was switched from MySQL to a PostgreSQL database.`
},
{
heading: 'What We Did (2013)',
narrative: `We passed off the content and hosting of the site to a new maintainer. They have since redesigned
it; it is accessible via the URL above, and at
<a href="http://emcspatriots.org" title="EMCS Patriots">EMCSpatriots.org</a>.`
}
],
techStack: [
{
name: 'ASP.NET MVC',
for: 'page generation and interactivity'
},
{
name: 'PostgreSQL',
for: 'data storage'
}
]
},
{
id: 'futility-closet',
name: 'Futility Closet',
url: 'https://www.futilitycloset.com',
active: true,
categoryId: 2,
frontPageText: 'An idler&rsquo;s miscellany of compendious amusements',
frontPageOrder: 2,
indexText: 'An idler&rsquo;s miscellany of compendious amusements',
paragraphs: [
`Futility Closet exists as a place to give people a break from the dullness of work, by providing puzzles,
anecdotes, and more. It began on a shared host, but was growing too large and popular for that platform.`
],
activity: [
{
heading: 'What We Did',
narrative: `We determined what the traffic requirements and size of the blog were, then made some
recommendations. Greg Ross, the site author, decided on one of our recommendations. He had backups of
the existing database, so we were able to set up a server and restore the data onto that new server.
We configured WordPress and locked down the server, and this blog was moved quickly.`
},
{
heading: 'What We Still Do',
narrative: `Bit Badger Solutions still hosts Futility Closet, ensuring that the underlying server receives
performance and security upgrades, monitoring site performance, and maintaining regular backups.`
}
],
quotes: {
name: 'Greg Ross',
from: 'Futility Closet',
full: `Bit Badger Solutions has been an absolute godsend for Futility Closet. We have been with them since 2010,
initially setting up and maintaining the site on a Rackspace VPS, and then hosting it completely.
Daniel&rsquo;s never failed in being friendly, knowledgeable, thoughtful, and farsighted. I&rsquo;ve
literally lost count of the number of times he&rsquo;s saved us from one emergency or another, always with
diligence and good humor, or recommended an improvement or a protection that saved us later. We would be
out of business many times over if it weren&rsquo;t for his reliability, expertise, and good judgment. And
he&rsquo;s a joy to work with.`,
pull: [
`Daniel&rsquo;s never failed in being friendly, knowledgeable, thoughtful, and farsighted&hellip;`,
`We would be out of business many times over if it weren&rsquo;t for his reliability, expertise, and good
judgment&hellip;`
]
},
techStack: [
{
name: 'WordPress',
for: 'blogging'
},
{
name: 'nginx',
for: 'the web server'
}
]
},
{
id: 'hard-corps-wife',
name: 'Hard Corps Wife',
url: 'http://www.hardcorpswife.com',
active: false,
categoryId: 2,
indexText: 'Cassy&rsquo;s life as a Marine wife',
paragraphs: [
`Capitalizing on the growth from her Cassy Fiano blog, Cassy (now Chesser) began a separate blog in which she
could chronicle her experience as a military spouse.`
],
activity: [
{
heading: 'What We Did',
narrative: `We customized the header and sidebar of the theme, and set up the hardcorpswife.com domain.`
},
{
heading: 'What We Still Do',
narrative: `In 2013, Cassy shifted priorities and closed this site down. She can still be found at other places
around the web.`
}
],
techStack: [
{
name: 'WordPress',
for: 'blogging'
}
]
},
{
id: 'liberty-pundits',
name: 'Liberty Pundits',
url: 'http://libertypundits.net',
active: false,
categoryId: 2,
indexText: 'The home for conservatives',
paragraphs: [
`At its founding, Liberty Pundits was a joint venture by 3 established bloggers
(<a href="http://melissablogs.com" title="Dr. Melissa Clouthier">Melissa Clouthier</a>, Bill Dupray, and Clyde
Middleton) that, in their words, was aimed at becoming the new home for conservatives on the Internet. With the
three of them all being prolific bloggers in their own right, and the help of many contributors, Liberty Pundits
was a bustling hub of information.`
],
activity: [
{
heading: 'What We Did',
narrative: `Bill and Clyde had been part of Patriot Room, an already-recognized powerhouse, and their desire was
for Liberty Pundits to contain the content that they had contributed to Patriot Room. The technical
lead on that blog had moved on, so we did some divining of what was there. Once we deduced the
current setup, we obtained the data from that site, determined how it would need to be manipulated to
become part of a WordPress blog, then accomplished the data migration. Initially, this was deployed
on the same shared hosting account where LibertyPundits.com, their podcast distribution site, already
resided. The site&rsquo;s traffic quickly overwhelmed that solution. They then were moved by their
host to a <abbr title="Virtual Private Server">VPS</abbr>, which performed moderately better, but
still had quite a few issues, mostly related to the site&rsquo;s traffic volume. We recommended a new
server configuration, including migrating from a fully-featured web server to a more lightweight web
server, along with caching, and configured that server. This configuration eliminated the
bottlenecks, and enabled them to have several 100,000+ hit days with no appreciable slowdowns.`
},
{
heading: 'What We Still Do',
narrative: `Bit Badger Solutions maintained the server, keeping it current with performance and security
upgrades. We also provided support to the primary 3 bloggers, when they had questions about WordPress
or how the site was performing. The site closed in August of 2011, as the primary authors moved on to
other endeavors.`
}
],
techStack: [
{
name: 'WordPress',
for: 'blogging'
},
{
name: 'Custom software',
for: 'data migration'
}
]
},
{
id: 'linux',
name: 'Linux Resources',
url: 'https://blog.bitbadger.solutions/linux/',
active: true,
categoryId: 1,
noAboutLink: true,
frontPageText: 'Handy information for Linux folks',
frontPageOrder: 3
},
{
id: 'mindy-mackenzie',
name: 'Mindy Mackenzie',
url: 'https://mindymackenzie.com',
active: true,
categoryId: 2,
frontPageText: 'WSJ-best-selling author of The Courage Solution',
frontPageOrder: 3,
indexText: '<em>Wall Street Journal</em> best-selling author and C-suite advisor',
paragraphs: [
`Mindy Mackenzie, the prior Chief Performance Officer of Beam, Inc., is known as the &ldquo;Velvet Hammer&rdquo;
for her tough-yet-caring style of leadership. Her <em>Wall Street Journal</em> best-selling book <em>The Courage
Solution: The Power of Truth-Telling with Your Boss, Peers, and Team</em> details her spin-free approach to
personal and business success.`
],
activity: [
{
heading: 'What We Did (2015)',
narrative: `We assumed maintenance of her site several months in advance of the book launch of <em>The Courage
Solution</em>. We worked with her, and her publicists and other professionals, to ensure that the
book launch went smoothly. We customized her WordPress installation to support her Media Appearances
in a way that allowed them to be entered, tracked, and listed as of the date they occurred. We also
implemented rotating videos on the front page of the site.`
},
{
heading: 'What We Did (2018)',
narrative: `We developed the pages for her <em>You First Integrative Leadership Summit</em>, with speaker bios,
conference schedule, and an application form.`
},
{
heading: 'What We Still Do',
narrative: 'We continue to provide backups, WordPress support, and content updates for Mindy&rsquo;s site.'
}
],
quotes: {
name: 'Mindy Mackenzie',
full: `Daniel is the best partner you could hope for in a web designer and for handling web maintenance! He is
smart, creative, resourceful and fast. Daniel is able to produce high quality work on short time frames and
with minimal creative direction and hit the mark over and over. The best part, is Daniel is a joy to work
with. He is smart, customer-centric and trustworthy. If he says he will get it done, he does. After having a
poor experience with another firm, I can highly recommend Daniel for all your website design and support
needs he&rsquo;s terrific!`,
pull: [
`&hellip;Daniel is able to produce high quality work on short time frames&hellip;`,
`[Daniel] is smart, customer-centric and trustworthy.`
]
},
techStack: [
{
name: 'WordPress',
for: 'blogging'
},
{
name: 'nginx',
for: 'the web server'
}
]
},
{
id: 'my-prayer-journal',
name: 'myPrayerJournal',
url: 'https://prayerjournal.me',
active: true,
categoryId: 1,
frontPageText: 'Minimalist personal prayer journal',
frontPageOrder: 2,
indexText: 'Minimalist personal prayer journal',
paragraphs: [
`Daniel wanted to maintain a prayer journal, where he could record the prayer requests for which he had prayed,
and the answer that eventually came to that request. He didn't want to do that on paper for several reasons - it's
easy to lose, a long-running request can run out of space to make notes, etc. He believed that he was not the only
person who felt this way regarding prayer, and decided to use this as an opportunity to fill both a spiritual and
a learning need. Given <a href="https://auth0.com">Auth0</a>'s policy of offering free authentication services for
open-source applications, he decided to develop this as an open-source application.`,
`The goal of myPrayerJournal is to get out of the way, so that the user can focus on the requests and their
prayer; once requests have been entered, the journal provides a way to easily pray through these requests, helping
people not forget about active requests. It also provides a means of going back through answered requests, which
can be reviewed whenever the user desires. There is a
<a href="https://bit-badger.github.io/myPrayerJournal">documentation page</a> that fully describes all it can
do.`,
`As an open-source project, anyone can review the source code at
<a href="https://github.com/bit-badger/myPrayerJournal">GitHub</a>; we also track open issues there.`
],
activity: [
{
heading: 'What We Did (2017-2018)',
narrative: `We went through several iterations of front-end and back-end technologies, trying to find one that
would provide the optimal experience for praying through the list. The front end uses
<a href="https://vuejs.org">Vue.js</a>, and the back end uses
<a href="https://github.com/giraffe-fsharp/Giraffe">Giraffe</a> to serve the data.`
},
{
heading: 'What We Still Do',
narrative: `Bit Badger Solutions hosts the instance of this at the URL linked above. We back up the data, and
also continue to develop it. Anyone can use it by logging in with a Google or Microsoft account.`
}
],
techStack: [
{
name: 'Vue',
for: 'the front-end'
},
{
name: 'Giraffe',
for: 'the back-end data API'
},
{
name: 'PostgreSQL',
for: 'data storage'
}
]
},
{
id: 'nsx',
name: 'Not So Extreme Makeover: Community Edition',
url: 'http://notsoextreme.org',
active: false,
archiveUrl: 'https://nsx.archive.bitbadger.solutions',
categoryId: 1,
indexText: 'Public site for the makeover; provides event-driven management of volunteers, donations, and families needing help',
paragraphs: [
`In January 2008, a few members of <a href="http://hoffmantown.org" title="Hoffmantown Church">Hoffmantown
Church</a> in Albuquerque, New Mexico had an idea. The ABC show
<em><a href="http://abc.go.com/shows/extreme-makeover-home-edition">Extreme Makeover: Home Edition</a></em> had
just done
<a href="http://abc.go.com/shows/extreme-makeover-home-edition/episode-detail/martinez-family/224884" title="Martinez Family &bull; Extreme Makeover: Home Edition">a
build for a pastor in the &ldquo;war zone&rdquo; area of town</a>, and this brought attention to Gerald Martinez
and the work he had done to help clean up this area of town. Through
<a href="http://www.loveincabq.org/" title="Love INC of South Albuquerque">Love INC of South Albuquerque</a>, they
learned that there were many other homes in that area that could use the &ldquo;Ty Pennington touch.&rdquo; While
the goal was not to knock down homes and build new ones, the goal was no less extreme. The goal of the &ldquo;Not
So Extreme Makeover: Community Edition&rdquo; was to help 50 families in 5 days during spring break week in 2008.
From an idea in January to 57 families helped by March 29th, it was an amazing whirlwind.`
],
activity: [
{
heading: 'What We Did',
narrative: `The call went out for the need for &ldquo;everything from carpenters to computer nerds,&rdquo; and
Daniel thought, &ldquo;Hey, I&rsquo;m a computer nerd!&rdquo; We obtained the domain name and stood
up the public website quickly using WordPress, which also allowed the coordinators to put content up.
We next began developing an application (NSXapp) where volunteers could sign up for &ldquo;X
Week&rdquo;, with over 80 different skill, talent, and ability categories. We then created a way to
identify families and their needs, and a place for people with donations to let us know what they
would be. From there, we created the ability to begin matching needs with goods (stuff) and abilities
(people), organizing the stuff into donated trailers and people into teams. During X Week, we
generated schedules and reports that were used to track the execution of the project.<br><br>
After we recovered, Love INC expressed an interest in a version that would allow them to handle these
same areas on an ongoing basis; this was the genesis of
<a href="/solutions/tcms" title="The Clearinghouse Management System | Bit Badger Solutions">TCMS</a>.`
},
{
heading: 'What We Still Do',
narrative: `NSXapp was officially decommissioned in 2012. (It still exists in archived form, if a need arises to
use it again.) A <a href="https://nsx.archive.bitbadger.solutions"> snapshot of the NSX public
site</a> remains as a record of what happened those three months in 2008.`
}
],
techStack: [
{
name: 'WordPress',
for: 'content management'
},
{
name: 'Custom PHP code',
for: 'NSXapp'
},
{
name: 'PostgreSQL',
for: 'data storage'
}
]
},
{
id: 'olivet-baptist',
name: 'Olivet Baptist Church',
url: 'https://olivet-baptist.org',
active: false,
archiveUrl: 'https://olivet.archive.bitbadger.solutions',
categoryId: 3,
frontPageText: 'Gulfport, Mississippi',
frontPageOrder: 2,
indexText: 'Southern Baptist church in Gulfport, Mississippi',
paragraphs: [
`Olivet Baptist Church&rsquo;s pastor saw our work with
<a href="/solutions/bay-vista" title="Bay Vista Baptist Church | Bit Badger Solutions">Bay Vista</a>, and asked
us what would be involved with setting up something similar for his church. Olivet did not currently have a
website.`
],
activity: [
{
heading: 'What We Did (2014)',
narrative: `We registered the domain name for the church, then set up a fresh WordPress install. They had
expressed a desire to do as much of the content of the site themselves, so we supported them as they
worked through its initial setup. We also, as with Bay Vista, established the framework for a sermon
podcast feed.`
},
{
heading: 'What We Did (2016)',
narrative: `As with Bay Vista&rsquo;s site, this was converted to be a statically-generated site. We also
created a mobile-friendly site layout that looked similar to the one they had been using.`
},
{
heading: 'What We Did (2018)',
narrative: `We turned their site into a Progressive Web Application (PWA), which allows users to
&ldquo;install&rdquo; the site, like an app, to their phone&rsquo;s home screen. The site is also
still accessible from the web via a browser.`
},
{
heading: 'What We Did (2019)',
narrative: `The church closed its doors February 24th, 2019. We converted the PWA back to a static web site,
set up a static archive site, and worked with their personnel to ensure that the podcast links are
all still available. We continue to host that archive site and podcast content.`
}
],
techStack: [
{
name: 'Vue',
for: 'the user interface for the PWA'
},
{
name: 'Hexo',
for: `generating the site's pages`
},
{
name: 'Azure',
for: 'podcast file storage'
}
]
},
{
id: 'photography-by-michelle',
name: 'Photography by Michelle',
url: 'https://www.summershome.org',
active: false,
linkInactive: true,
categoryId: 1,
indexText: 'Photography services in Albuquerque, New Mexico',
paragraphs: [
`Michelle Summers had been photographing her children for years. When her sons were on sports teams, she was
disappointed with the cost of team photography, and felt that she could do a better job at a lower cost. Thus was
born Photography by Michelle. She specializes in outdoor photography of families, children, and sports teams, as
well as maternity photography and holiday cards.`
],
activity: [
{
heading: 'What We Did (2007)',
narrative: `We created the site with a few custom pages, including a gallery page that would automatically
display whatever pictures were there. We also, using WordPress and a custom image plugin, set up a
site where customers can view the proofs from their photography session.`
},
{
heading: 'What We Did (2012)',
narrative: `The custom PHP/WordPress site was replaced by a custom ASP MVC web application, which handles the
front pages and the proof set galleries. The proof display was also upgraded to allow cursor-key
navigation of proofs.`
},
{
heading: 'What We Still Do',
narrative: `As Michelle is no longer doing professional photography, the current version of this site is a
simple thank-you to her customers over the years.`
}
],
techStack: [
{
name: 'ASP.NET MVC',
for: 'content management'
}
]
},
{
id: 'prayer-tracker',
name: 'PrayerTracker',
url: 'https://prayer.bitbadger.solutions',
active: true,
categoryId: 1,
frontPageText: 'A prayer request tracking website (Free for any church or Sunday School class!)',
frontPageOrder: 1,
indexText: 'Provides an ongoing, centralized prayer list for Sunday School classes and other groups',
paragraphs: [
`Years ago, Daniel was responsible for keeping up with prayer requests for his Sunday School class. To help him
keep up with requests, automatically drop requests that were old, and track long-term requests, he wrote a custom
app made up of a few pages. Over time, he added security mechanisms and other options, arriving at the site that
exists today. It is provided free for the asking to any church, Sunday School class, or small group that desires a
tool to help them establish a continuous list of prayer requests.`
],
activity: [
{
heading: 'What We Did (2005)',
narrative: `Created the original site.`
},
{
heading: 'What We Did (2011)',
narrative: `We rewrote this application using a more modern (at the time) framework (ASP MVC 3), building the
security additions from the ground up, and posturing it for an interface with
<a href="/solutions/virtual-prayer-room" title="Virtual Prayer Room | Bit Badger Solutions">Virtual
Prayer Room</a>.`
},
{
heading: 'What We Did (2012)',
narrative: `In April 2012, version 4 was released with support for Spanish - our first multi-lingual
application!`
},
{
heading: 'What We Did (2018)',
narrative: `Version 7 brought full mobile accessibility, along with an upgrade to a modern, ultra-fast web
framework.`
},
{
heading: 'What We Did (2019)',
narrative: `PrayerTracker became <a href="https://github.com/bit-badger/PrayerTracker">an open source
project</a>.`
},
{
heading: 'What We Still Do',
narrative: `Host and maintain this application.`
}
],
techStack: [
{
name: 'Giraffe',
for: 'server-side logic and dynamic page generation'
},
{
name: 'PostgreSQL',
for: 'data storage'
}
]
},
{
id: 'riehl-world-news',
name: 'Riehl World News',
url: 'http://riehlworldview.com',
active: true,
categoryId: 2,
frontPageText: 'Riehl news for real people',
frontPageOrder: 4,
indexText: 'Riehl news for real people',
paragraphs: [
`Dan Riehl began blogging as &ldquo;The Carnivorous Conservative&rdquo; back in 2004, specializing in the areas of
crime and politics. He changed to &ldquo;Riehl World View&rdquo; a short time later, and writes both news and
opinion pieces. He was a prolific blogger, publishing over 15 posts a day on most days. He wanted to take his blog
in a different direction, and was having trouble getting his Movable Type blog do move with him.`
],
activity: [
{
heading: 'What We Did (2012)',
narrative: `We spoke with him regarding his ideal direction and assisted through the selection and customization
of his eventual chosen theme. We also did some work on the customization of that theme. Additionally,
we imported the large volume of posts from the Movable Type blog into his new WordPress blog.`
},
{
heading: 'What We Did (2018)',
narrative: `Dan wanted a fresh start for Riehl World View, so we generated flat files to preserve his prior
archive. The post volume meant that none of the existing WordPress plugins that do that would work,
so we built a custom converter to preserve that content.`
},
{
heading: 'What We Still Do',
narrative: `Bit Badger Solutions continues to provide backups and WordPress updates for Riehl World News.`
}
],
techStack: [
{
name: 'WordPress',
for: 'blogging'
},
{
name: 'Custom F# code',
for: 'archive static page generation'
}
]
},
{
id: 'tcms',
name: 'The Clearinghouse Management System',
url: 'http://tcms.us',
active: false,
categoryId: 1,
indexText: 'Assists a needs clearinghouse in connecting people with needs to people that can help meet those needs',
paragraphs: [
`The TCMS motto, &ldquo;Putting People Over Paperwork,&rdquo; sums up the mission of this system. To successfully
run a needs clearinghouse, such as those run by Love INC affiliates, there is a lot of paperwork involved. Clients
must be tracked, along with their needs; these needs must be verified; resources for goods and services must be
known; volunteers must be known and sent communications to keep them involved. All of this adds up to a
significant recordkeeping (i.e., paperwork) burden.`,
`TCMS addressed these issues by providing a repository for all clearinghouse operation needs. It helped eliminate
duplication of work, and also linke clients with goods and services. It also provided the means to communicate
with volunteers, either en masse or using selective criteria. This allowed the recordkeeping requirement to be
smaller and quicker, giving more time for the actual helping of clients. It used WordPress for its front end; this
provided organizations with a web presence that they could maintain without having to employ a web guru, using
WordPress&rsquo;s <abbr title="What You See Is What You Get">WYSIWYG</abbr> editor and management tools.`,
`TCMS was decommissioned in 2014.`
],
techStack: [
{
name: 'Custom PHP code',
for: 'the application logic'
},
{
name: 'WordPress',
for: 'publicly-facing pages and authentication'
},
{
name: 'PostgreSQL',
for: 'application data storage'
}
]
},
{
id: 'tech-blog',
name: 'The Bit Badger Blog',
url: 'https://blog.bitbadger.solutions',
active: true,
categoryId: 3,
frontPageText: 'Technical information (&ldquo;geek stuff&rdquo;) from Bit Badger Solutions',
frontPageOrder: 3,
indexText: 'Geek stuff from Bit Badger Solutions',
paragraphs: [
`The Bit Badger Blog grew from Daniel&rsquo;s personal experience with learning and using the Linux operating
system. His first experience with blogging consisted of pages that had to be edited every time a new post was
made. The initial posts were titled &ldquo;My Linux Adventure,&rdquo; and existed as a copy of this home-grown
blog. The Bit Badger Blog has that, plus tech tips regarding many different computer products. It covers web
servers, databases, programming languages, and open-source software. Bit Badger Solutions also hosts 64-bit RPM
builds of xine, a Linux multimedia player; the blog, via the RSS feed for that category, can deliver notices of
updated versions directly to subscribed users. Finally, it also contains notices of new versions of Bit Badger
Solutions-developed WordPress plug-ins (&ldquo;Daniel&rsquo;s Dropdowns&rdquo; <em>(inactive, as its functionality
is now part of the WordPress core)</em> and &ldquo;HCSB Verse of the Day (Plus)&rdquo;).`,
`It is currently a statically-generated site, utilizing <a href="https://hexo.io">Hexo</a>, and its code is
<a href="https://github.com/bit-badger/blog.bitbadger.solutions">open source</a>.`
],
techStack: [
{
name: 'Hexo',
for: 'static site generation'
}
]
},
{
id: 'the-shark-tank',
name: 'The Shark Tank',
url: 'http://shark-tank.net',
active: false,
categoryId: 2,
indexText: 'Floridas political feeding frenzy',
paragraphs: [
`The Shark Tank is a news and opinion site centered on south Florida politics (and the state at large). They
provided extensive coverage of Rep. Allen West&rsquo;s winning campaign in 2010, and are continuing their focused
news and opinion to current political races.`
],
activity: [
{
heading: 'What We Did',
narrative: `They were displeased with their current theme, and had found a theme (and a demo site) that they
preferred. We set up the theme, ensured that their content would fit in the new theme&rsquo;s
requirements, and helped them turn off parts that they didn&rsquo;t need. We also converted the
social media connections from their old site to a style that would work nicely in the new theme.`
}
]
},
{
id: 'virtual-prayer-room',
name: 'Virtual Prayer Room',
url: 'https://virtualprayerroom.us',
active: false,
categoryId: 1,
indexText: 'Gives prayer warriors access to requests from wherever they may be, and sends them daily updates',
paragraphs: [
`Many churches have prayer rooms &ndash; rooms set aside for people to come in to pray. Hoffmantown Church in
Albuquerque, New Mexico was one of these churches. However, they had seen the use of this physical prayer room
dwindling over the years. People had become less willing to drive to the church, especially at night, and security
became an issue as well; either prayer warriors had to know how to disable the security system, or the church
would have to remain unlocked.`,
`Having seen our work with the
<a href="/solutions/nsx/" title="Not So Extreme Makeover: Community Edition | Bit Badger Solutions">Not So Extreme
Makeover: Community Edition</a>, the church contacted us to see if something similar could be developed to help
their prayer ministry. The resulting application that was developed extended the prayer room to wherever the
prayer warrior can get an Internet connection! Prayer warriors could enlist right from the site, and had to be
approved. Requests and updates were tracked by date/time, and warriors could record when they&rsquo;ve prayed for
a request from the site, or from clicking a link in the daily e-mail they received with requests from their
interest areas. As many prayer needs are confidential, security and confidentiality were very important. Virtual
Prayer Room ensured these by providing varying security levels for prayer warriors and the ability to mark each
request as confidential.`,
`In 2016, Hoffmantown Church elected to begin using another package for their prayer requests. While a few other
churches had expressed interest in it, none ultimately decided to use it; so, in 2017, Virtual Prayer Room was
officially decommissioned.`
],
techStack: [
{
name: 'Custom PHP code',
for: 'the application'
},
{
name: 'PostgreSQL',
for: 'data storage'
}
]
}
]
export default {
categories: CATEGORIES,
apps: APPS
}
</script>

View File

@ -5,81 +5,78 @@ div
{{ application.name }}
#[br]
<small><small>
#[a(v-if='application.active || application.linkInactive' :href='application.url') {{ application.url }}]
#[span(v-if='!application.active && !application.linkInactive') {{ application.url }}]
#[span(v-if='!application.active && !application.linkInactive && application.archiveUrl') &nbsp; &nbsp;]
#[a(v-if='!application.active && !application.linkInactive && application.archiveUrl' :href='application.archiveUrl') <small>(Archive)</small>]
#[a(v-if='application.isActive || application.linkInactive' :href='application.url') {{ application.url }}]
#[span(v-if='!application.isActive && !application.linkInactive') {{ application.url }}]
#[span(v-if='!application.isActive && !application.linkInactive && application.archiveUrl') &nbsp; &nbsp;]
#[a(v-if='!application.isActive && !application.linkInactive && application.archiveUrl' :href='application.archiveUrl') <small>(Archive)</small>]
</small></small>
div.app-info
aside: img(:src='imageLink')
article.content
p(v-for='(p, idx) in application.paragraphs' :key='idx' v-html='p')
div(v-for='(act, idx) in application.activity' :key='idx' :act='act')
div(v-for='(act, idx) in application.activities' :key='"activity" + idx' :act='act')
h3 {{ act.heading }}
p(v-html='act.narrative')
div(v-if='application.quotes')
div(v-if='application.quotes.length > 0')
h3 What They Say
blockquote
p.quote(v-html='application.quotes.full')
blockquote(v-for='(q, idx) in application.quotes' :key='"quote" + idx')
p.quote(v-html='q.full')
p.source
!= '&mdash; '
strong.app-info-heading {{ application.quotes.name }}
span(v-if='application.quotes.from') , {{ application.quotes.from }}
strong.app-info-heading {{ q.name }}
span(v-if='q.from') , {{ q.from }}
p(v-for='(p, idx) in application.footnotes' :key='idx' v-html='p')
p
br
router-link(:to="{ name: 'ApplicationList' }") &laquo; Back to All Solutions
</template>
<script>
import AppData from './AppData.vue'
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import Data, { App } from '@/data'
import PageTitle from './PageTitle.vue'
export default {
props: ['app'],
computed: {
application () {
return AppData.apps.find(app => app.id === this.$props.app)
},
imageLink () {
return `/screenshots/${this.application.id}.png`
},
pageTitle () {
return `${this.application.name} « Solutions`
}
},
components: {
PageTitle
@Component({ components: { PageTitle } })
export default class Application extends Vue {
@Prop({ required: true })
app!: string
get application () {
return Data.apps.find(app => app.id === this.app)
}
get imageLink () {
return `/screenshots/${this.application!.id}.png`
}
get pageTitle () {
return `${this.application!.name} « Solutions`
}
}
</script>
<style scoped>
h1 {
line-height: 1.6rem;
}
.app-info {
display: flex;
flex-flow: row-reverse wrap;
justify-content: center;
}
aside {
padding-left: 15px;
}
aside img {
border: dotted 1px darkgray;
border-radius: 10px;
}
blockquote {
border-left: solid 1px darkgray;
margin-left: 25px;
padding-left: 15px;
}
.quote {
font-style: italic;
}
.source {
text-align: right;
padding-right: 60px;
}
<style lang="sass" scoped>
h1
line-height: 1.6rem
.app-info
display: flex
flex-flow: row-reverse wrap
justify-content: center
aside
padding-left: 15px
aside img
border: dotted 1px darkgray
border-radius: 10px
blockquote
border-left: solid 1px darkgray
margin-left: 25px
padding-left: 15px
.quote
font-style: italic
.source
text-align: right
padding-right: 60px
</style>

View File

@ -8,22 +8,23 @@ article.content.auto
application-list-item(v-for='app in past' :app='app' :key='app.id')
</template>
<script>
import AppData from './AppData.vue'
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import Data, { App } from '@/data'
import ApplicationListItem from './ApplicationListItem.vue'
import PageTitle from './PageTitle.vue'
export default {
name: 'application-list',
data: function () {
return {
current: AppData.apps.filter(app => app.active && !app.noAboutLink),
past: AppData.apps.filter(app => !app.active && !app.noAboutLink)
}
},
components: {
ApplicationListItem,
PageTitle
}
@Component({ components: { ApplicationListItem, PageTitle } })
export default class ApplicationList extends Vue {
/** The currently active applications */
current: App[] = Data.apps.filter(app => app.isActive && !app.noAboutLink)
/** The inactive applications */
past: App[] = Data.apps.filter(app => !app.isActive && !app.noAboutLink)
}
</script>

View File

@ -12,18 +12,26 @@
span(v-html='app.indexText')
</template>
<script>
export default {
name: 'application-list-item',
props: ['app']
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import { App } from '@/data'
@Component
export default class ApplicationListItem extends Vue {
@Prop({ required: true })
app!: App
}
</script>
<style scoped>
.app-name {
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif;
font-size: 1.3rem;
font-weight: bold;
color: maroon;
}
<style lang="sass" scoped>
.app-name
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif
font-size: 1.3rem
font-weight: bold
color: maroon
</style>

View File

@ -24,11 +24,5 @@ article.content.auto
li: p.
The #[strong Not So Extreme Makeover: Community Edition] archive site, previously at
#[tt /archived/notsoextreme_org], can now be found at
#[a(href='https://hosted.djs-consulting.com/archive/notsoextreme_org') https://hosted.djs-consulting.com/archive/notsoextreme_org].
#[a(href='https://nsx.archive.bitbadger.solutions') https://nsx.archive.bitbadger.solutions].
</template>
<script>
export default {
name: 'four-oh-four'
}
</script>

View File

@ -47,35 +47,32 @@ div.home
h2 Solutions to Your Problems
p.
We&rsquo;d be happy to discuss your information technology needs, and which of our solutions are right for you.
Just #[a(href='mailto:daniel@djs-consulting.com') e-mail us] and let us know what we can do for you! You can also
Just #[a(href='mailto:daniel@bitbadger.solutions') e-mail us] and let us know what we can do for you! You can also
#[router-link(to='/solutions' title='All Solutions') browse a complete list of our current and previous solutions].
app-sidebar
</template>
<script>
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import AppSidebar from './sidebar/AppSidebar.vue'
import PageTitle from './PageTitle.vue'
export default {
name: 'home',
components: {
AppSidebar,
PageTitle
}
}
@Component({ components: { AppSidebar, PageTitle }})
export default class Home extends Vue { }
</script>
<style>
@media all and (min-width: 80rem) {
.home {
display: flex;
flex-flow: row;
align-items: flex-start;
justify-content: space-around;
}
}
.home-lead {
font-size: 1.3rem;
text-align: center;
}
<style lang="sass">
@media all and (min-width: 80rem)
.home
display: flex
flex-flow: row
align-items: flex-start
justify-content: space-around
.home-lead
font-size: 1.3rem
text-align: center
</style>

View File

@ -1,15 +1,27 @@
<script>
export default {
name: 'page-title',
props: ['title'],
created () {
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component, Prop, Watch } from 'vue-property-decorator'
/** Provides a way to set the document's title */
@Component
export default class PageTitle extends Vue {
/** The title of the page */
@Prop({ required: true, default: '' })
readonly title!: string
/** Update the title of the page */
@Watch('title')
updateTitle () {
document.title = `${this.title} « Bit Badger Solutions`
},
watch: {
title () {
document.title = `${this.title} « Bit Badger Solutions`
}
},
}
created () {
this.updateTitle()
}
render () { return {} }
}
</script>

View File

@ -72,9 +72,3 @@ article.content.auto
br
router-link(to='/' title='Home') &laquo; Home
</template>
<script>
export default {
name: 'information-publicizing'
}
</script>

View File

@ -14,9 +14,3 @@ article.content.auto
br
router-link(to='/' title='Home') &laquo; Home
</template>
<script>
export default {
name: 'legacy-data'
}
</script>

View File

@ -35,9 +35,3 @@ article.content.auto
br
router-link(to='/' title='Home') &laquo; Home
</template>
<script>
export default {
name: 'process-automation'
}
</script>

View File

@ -21,9 +21,3 @@ article.content.auto
br
router-link(to='/' title='Home') &laquo; Home
</template>
<script>
export default {
name: 'why-bit-badger'
}
</script>

View File

@ -4,74 +4,63 @@ div
sidebar-category(v-for='category in cats' :category='category' :key='category.id')
</template>
<script>
import AppData from '../AppData.vue'
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import Data, { Category } from '@/data'
import SidebarCategory from './SidebarCategory.vue'
export default {
name: 'app-sidebar',
data () {
return { cats: AppData.categories }
},
components: {
SidebarCategory
}
@Component({ components: { SidebarCategory }})
export default class AppSidebar extends Vue {
cats: Category[] = Data.categories
}
</script>
<style>
.app-sidebar {
text-align: center;
border-top: dotted 1px lightgray;
padding-top: 1rem;
font-size: .9rem;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.app-sidebar > div {
width: 20rem;
padding-bottom: 1rem;
}
@media all and (min-width: 68rem) {
.app-sidebar {
width: 66rem;
margin: auto;
}
}
@media all and (min-width: 80rem) {
.app-sidebar {
width: 12rem;
border-top: none;
border-left: dotted 1px lightgray;
padding-top: 0;
padding-left: 2rem;
flex-direction: column;
}
.app-sidebar > div {
width: auto;
}
}
.app-sidebar a {
font-size: 10pt;
font-family: sans-serif;
}
.app-sidebar-head {
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif;
font-weight: bold;
color: maroon;
margin-bottom: .8rem;
padding: 3px 12px;
border-bottom: solid 2px lightgray;
font-size: 1rem;
}
.app-sidebar-name, .app-sidebar-description {
margin: 0;
padding: 0;
}
.app-sidebar-description {
font-style: italic;
color: #555555;
padding-bottom: .6rem;
}
<style lang="sass">
.app-sidebar
text-align: center
border-top: dotted 1px lightgray
padding-top: 1rem
font-size: .9rem
display: flex
flex-flow: row wrap
justify-content: space-around
.app-sidebar > div
width: 20rem
padding-bottom: 1rem
@media all and (min-width: 68rem)
.app-sidebar
width: 66rem
margin: auto
@media all and (min-width: 80rem)
.app-sidebar
width: 12rem
border-top: none
border-left: dotted 1px lightgray
padding-top: 0
padding-left: 2rem
flex-direction: column
.app-sidebar > div
width: auto
.app-sidebar a
font-size: 10pt
font-family: sans-serif
.app-sidebar-head
font-family: "Oswald", "Segoe UI", Ubuntu, "DejaVu Sans", "Liberation Sans", Arial, sans-serif
font-weight: bold
color: maroon
margin-bottom: .8rem
padding: 3px 12px
border-bottom: solid 2px lightgray
font-size: 1rem
.app-sidebar-name, .app-sidebar-description
margin: 0
padding: 0
.app-sidebar-description
font-style: italic
color: #555555
padding-bottom: .6rem
</style>

View File

@ -9,9 +9,17 @@
p.app-sidebar-description(v-html='app.frontPageText')
</template>
<script>
export default {
name: 'sidebar-app',
props: ['app']
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import { App } from '@/data'
@Component
export default class SidebarApp extends Vue {
@Prop()
app!: App
}
</script>

View File

@ -4,24 +4,25 @@ div
sidebar-app(v-for='app in appsForCat(category.id)' :app='app' :key='app.id')
</template>
<script>
import AppData from '../AppData.vue'
<script lang="ts">
'use strict'
import Vue from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import Data, { Category } from '@/data'
import SidebarApp from './SidebarApp.vue'
export default {
name: 'sidebar-category',
props: ['category'],
data () {
return {
appsForCat: function (catId) {
return AppData.apps
.filter(app => app.active && app.categoryId === catId)
.sort((a, b) => a.frontPageOrder - b.frontPageOrder)
}
}
},
components: {
SidebarApp
@Component({ components: { SidebarApp } })
export default class SidebarCategory extends Vue {
@Prop({ required: true })
category!: Category
appsForCat (catId: number) {
return Data.apps
.filter(app => app.isActive && app.categoryId === catId)
.sort((a, b) => a.frontPageOrder - b.frontPageOrder)
}
}
</script>

163
src/data/Types.ts Normal file
View File

@ -0,0 +1,163 @@
'use strict'
/** An activity performed for a customer */
export class Activity {
/** The heading of the activity */
heading: string
/** A description of the activity */
narrative: string
/**
* Construct a new instance
* @param heading The heading of the activity
* @param narrative The description of the activity
*/
constructor(heading: string, narrative: string) {
this.heading = heading
this.narrative = narrative
}
}
/** A category of application */
export class Category {
/** The ID of the category */
id: number
/** The name of the category */
name: string
/**
* Construct a new instance
* @param id The ID of the category
* @param name The name of the category
*/
constructor(id: number, name: string) {
this.id = id
this.name = name
}
/** Sites/applications not otherwise specified */
static SITES_APPS = 1
/** WordPress sites */
static WORDPRESS = 2
/** Statically generated sites */
static STATIC = 3
/** Daniel's personal sites */
static PERSONAL = 99
}
/** A quote from an app */
export class Quote {
/** The name of the person who provided the quote */
name: string
/** What organization the person who provided the quote represents */
from: string
/** The full text of the quote */
full: string = ''
/** Shorter portions of the full quote */
pull: string[] = []
/**
* Construct a new instance
* @param name The name of the person who provided the quote
* @param from What organization the person who provided the quote represents
*/
constructor(name: string, from: string) {
this.name = name
this.from = from
}
}
/** A description of a part of the technology stack used */
export class Technology {
/** The name of the technology */
name: string
/** What aspect was addressed by this technology */
usedFor: string
/**
* Construct a new instace
* @param name The name of the technology
* @param usedFor What aspect was addressed by this technology
*/
constructor(name: string, usedFor: string) {
this.name = name
this.usedFor = usedFor
}
}
/** An application or web site */
export class App {
/** The ID of the app */
id: string
/** The name of the app */
name: string
/** The URL of the app */
url: string
/** Whether this app is active (default true) */
isActive: boolean = true
/** The ID of the category to which this app belongs (default "Web Sites and Applictions") */
categoryId: number = Category.SITES_APPS
/** Whether to skip displaying an About link on the front page */
noAboutLink: boolean = false
/** Whether the generate a link for an inactive app (defaults to false) */
linkInactive: boolean = false
/** The text to use for the short description in the front page sidebar */
frontPageText: string = ''
/** The order (within category) in which this app should be displayed */
frontPageOrder: number = 0
/** The text to display for the application on this index page */
indexText: string = ''
/** The URL where an archived version of this app may be found */
archiveUrl: string = ''
/** Paragraphs of text that describe the app */
paragraphs: string[] = []
/** Footnotes for the long description */
footnotes: string[] = []
/** Discrete activities performed for this app */
activities: Activity[] = []
/** The technology used for this app */
techStack: Technology[] = []
/** Customer quotes */
quotes: Quote[] = []
/**
* Construct a new instance
* @param id The ID of the app
* @param name The name of the app
* @param url The URL of the app
*/
constructor(id: string, name: string, url: string) {
this.id = id
this.name = name
this.url = url
}
}

604
src/data/index.ts Normal file
View File

@ -0,0 +1,604 @@
'use strict'
import { App, Activity, Category, Quote, Technology } from './Types'
/** A Word from the Word */
const aWordFromTheWord = new App('a-word-from-the-word', 'A Word from the Word', 'https://devotions.summershome.org')
aWordFromTheWord.categoryId = Category.PERSONAL
aWordFromTheWord.noAboutLink = true
aWordFromTheWord.frontPageText = 'Devotions by Daniel'
aWordFromTheWord.frontPageOrder = 2
/** Bay Vista Baptist Church */
const bayVista = new App('bay-vista', 'Bay Vista Baptist Church', 'https://bayvista.org')
bayVista.categoryId = Category.STATIC
bayVista.frontPageText = 'Biloxi, Mississippi'
bayVista.frontPageOrder = 1
bayVista.indexText = 'Southern Baptist church in Biloxi, Mississippi'
bayVista.paragraphs = [
`Bay Vista Baptist Church has served the spiritual needs of Mississippi&rsquo;s Gulf Coast for decades. They emphasize
serving their community as well; they were a hub for <abbr title="Federal Emergency Management Agency">FEMA</abbr>
during Hurricane Katrina relief and recovery efforts, and they are a relay point for each year&rsquo;s
<a href="https://www.samaritanspurse.org/what-we-do/operation-christmas-child/">Operation Christmas Child</a>
campaign. As of late 2013, the authors of their current website were no longer around, and no one could get to the
site to update it. We proposed setting up a site based on WordPress, where multiple people could have the ability to
maintain the site, reducing the risk of that happening again. We also mentioned that such a site could also serve a
sermon podcast feed, increasing the reach of their ministry.`
]
bayVista.activities = [
new Activity('What We Did (2014)',
`We manually downloaded all the publically-accessible parts of their old site, and used that content to create a
WordPress-based site, updating a few outdated items along the way. We also established a podcast feed for their
sermons. A few months after initially setting up the site, we updated the theme to be more mobile-friendly.`),
new Activity('What We Did (2016)',
`In the nearly three years since we had set up the site, we were the only ones updating it. We had recently migrated
some older blogs to use a static site generator and were impressed with the performance gains. We converted their
site, to include writing a custom template to support the podcast feed; it is now generated along with the rest of
the site.`),
new Activity('What We Still Do',
`Bit Badger Solutions hosts this site; we also host the church e-mail accounts, and publish sermons to their podcast
feed weekly.`)
]
bayVista.techStack = [
new Technology('Hexo', 'static site generation'),
new Technology('Azure', 'podcast file storage')
]
/** Cassy Fiano */
const cassyFiano = new App('cassy-fiano', 'Cassy Fiano', 'http://www.cassyfiano.com')
cassyFiano.isActive = false
cassyFiano.categoryId = Category.WORDPRESS
cassyFiano.indexText = 'A &ldquo;rising star&rdquo; conservative blogger'
cassyFiano.paragraphs = [
`Cassy Fiano (now Cassy Chesser) began blogging back in 2007 on Blogger. She worked hard to network with other
bloggers, and wrote prolifically. As she approached the end of her first year of blogging, she was about to outgrow
Blogger. She asked in a blog post if anyone had experience with Movable Type, the platform used by another blog to
which she contributed. I replied that I did not, but that I had experience with WordPress.`
]
cassyFiano.activities = [
new Activity('What We Did (2008)',
`We assisted her with finding a theme, and customized that theme to contain the same sidebar elements as her current
Blogger theme. We modified her old Blogger template to send people to her new blog (using redirection) after
displaying a note that the blog had moved.`),
new Activity('What We Did (2012)',
`In July 2012, we began hosting the site, as well as continuing support for theme updates. This joined her military
wife blog <a href="/solutions/hard-corps-wife" title="Hard Corps Wife | Bit Badger Solutions">Hard Corps Wife</a>,
which we had begun hosting in mid-2011.`),
new Activity('What We Still Do', 'Cassy formally decommissioned this site in early 2014.')
]
cassyFiano.techStack = [ new Technology('WordPress', 'blogging (with a custom theme)') ]
/** Daniel J. Summers */
const danielJSummers = new App('daniel-j-summers', 'Daniel J. Summers', 'https://daniel.summershome.org')
danielJSummers.categoryId = Category.PERSONAL
danielJSummers.noAboutLink = true
danielJSummers.frontPageText = 'Daniel&rsquo;s personal blog',
danielJSummers.frontPageOrder = 1
/** Dr. Melissa Clouthier */
const drMelissaClouthier = new App('dr-melissa-clouthier', 'Dr. Melissa Clouthier', 'http://melissablogs.com')
drMelissaClouthier.isActive = false
drMelissaClouthier.categoryId = Category.WORDPRESS
drMelissaClouthier.frontPageText = 'Information Pollination'
drMelissaClouthier.frontPageOrder = 1
drMelissaClouthier.indexText = 'Politics, health, podcasts and more'
drMelissaClouthier.paragraphs = [
`Dr. Melissa Clouthier saw our work with
<a href="/solutions/cassy-fiano" title="Cassy Fiano | Bit Badger Solutions">Cassy</a>&rsquo;s site, and asked us to
help her move off Blogger as well. Melissa blogs from the political right, but also covers health issues and social
media. She had been blogging for a several years, and wanted to bring her old content with her to her new site.`
]
drMelissaClouthier.activities = [
new Activity('What We Did (2009)',
`We created a custom theme based on another site, and developed graphics to complement that theme. We also imported
the content from her Blogger site into the WordPress site, and created a featured content template for the front
page.`),
new Activity('What We Did (2018)',
`Melissa decommissioned her site; we took final snapshots of the information there, then assisted with shutting it
down.`)
]
drMelissaClouthier.footnotes = [
`<em>(NOTE: The thumbnail of the site represents a new skin on the original theme; while the theme is the same, Bit
Badger Solutions did not create the graphics.)</em>`
]
drMelissaClouthier.techStack = [ new Technology('WordPress', 'blogging (with a custom theme)') ]
/** Emerald Mountain Christian School */
const emcs = new App('emerald-mountain-christian-school', 'Emerald Mountain Christian School',
'http://www.emeraldmountainchristianschool.org')
emcs.isActive = false
emcs.linkInactive = true
emcs.indexText = 'Classical, Christ-centered education near Wetumpka, Alabama'
emcs.paragraphs = [
`Emerald Mountain Christian School is a private Christian school founded over 50 years ago. They use the Principle
Approach&reg;, which emphasizes research, reasoning, relating, and recording to help students synthesize the
information they learn, rather than just requiring rote memorization. More information about the school&rsquo;s rich
history can be found on their site.`
]
emcs.activities = [
new Activity('What We Did (2004)',
`They had a website with very basic information and very little styling. We developed a theme (the one in the
thumbnail), based in large part on the design of their printed materials, and they approved the design. Initially,
the site only contained the content from their previous site. We then put their school calendar of events up on
the site, where parents could find the dates for upcoming events. Finally, we put all the material from their
Parent Information Packet online, which helped prospective families learn more about the school before visiting
it.`),
new Activity('What We Did (2011)',
`The underlying engine of the basic website was switched from PHP to an ASP MVC web application, and the back-end
database was switched from MySQL to a PostgreSQL database.`),
new Activity('What We Did (2013)',
`We passed off the content and hosting of the site to a new maintainer. They have since redesigned it; it is
accessible via the URL above, and at
<a href="http://emcspatriots.org" title="EMCS Patriots">EMCSpatriots.org</a>.`)
]
emcs.techStack = [
new Technology('ASP.NET MVC', 'page generation and interactivity'),
new Technology('PostgreSQL', 'data storage')
]
/** Futility Closet */
const futilityCloset = new App('futility-closet', 'Futility Closet', 'https://www.futilitycloset.com')
futilityCloset.categoryId = Category.WORDPRESS
futilityCloset.frontPageText = 'An idler&rsquo;s miscellany of compendious amusements'
futilityCloset.frontPageOrder = 2
futilityCloset.indexText = 'An idler&rsquo;s miscellany of compendious amusements'
futilityCloset.paragraphs = [
`Futility Closet exists as a place to give people a break from the dullness of work, by providing puzzles, anecdotes,
and more. It began on a shared host, but was growing too large and popular for that platform.`
]
futilityCloset.activities = [
new Activity('What We Did',
`We determined what the traffic requirements and size of the blog were, then made some recommendations. Greg Ross,
the site author, decided on one of our recommendations. He had backups of the existing database, so we were able to
set up a server and restore the data onto that new server. We configured WordPress and locked down the server, and
this blog was moved quickly.`),
new Activity('What We Still Do',
`Bit Badger Solutions still hosts Futility Closet, ensuring that the underlying server receives performance and
security upgrades, monitoring site performance, and maintaining regular backups.`)
]
const fcQuote = new Quote('Greg Ross', 'Futility Closet')
fcQuote.full =
`Bit Badger Solutions has been an absolute godsend for Futility Closet. We have been with them since 2010, initially
setting up and maintaining the site on a Rackspace VPS, and then hosting it completely. Daniel&rsquo;s never failed
in being friendly, knowledgeable, thoughtful, and farsighted. I&rsquo;ve literally lost count of the number of times
he&rsquo;s saved us from one emergency or another, always with diligence and good humor, or recommended an
improvement or a protection that saved us later. We would be out of business many times over if it weren&rsquo;t for
his reliability, expertise, and good judgment. And he&rsquo;s a joy to work with.`
fcQuote.pull = [
`Daniel&rsquo;s never failed in being friendly, knowledgeable, thoughtful, and farsighted&hellip;`,
`We would be out of business many times over if it weren&rsquo;t for his reliability, expertise, and good
judgment&hellip;`
]
futilityCloset.quotes.push(fcQuote)
futilityCloset.techStack = [
new Technology('WordPress', 'blogging'),
new Technology('nginx', 'the web server')
]
/** Hard Corps Wife */
const hardCorpsWife = new App('hard-corps-wife', 'Hard Corps Wife', 'http://www.hardcorpswife.com')
hardCorpsWife.isActive = false
hardCorpsWife.categoryId = Category.WORDPRESS
hardCorpsWife.indexText = 'Cassy&rsquo;s life as a Marine wife'
hardCorpsWife.paragraphs = [
`Capitalizing on the growth from her Cassy Fiano blog, Cassy (now Chesser) began a separate blog in which she could
chronicle her experience as a military spouse.`
]
hardCorpsWife.activities = [
new Activity('What We Did',
'We customized the header and sidebar of the theme, and set up the hardcorpswife.com domain.'),
new Activity('What We Still Do',
`In 2013, Cassy shifted priorities and closed this site down. She can still be found at other places around the
web.`)
]
hardCorpsWife.techStack = [ new Technology('WordPress', 'blogging') ]
/** Liberty Pundits */
const libertyPundits = new App('liberty-pundits', 'Liberty Pundits', 'http://libertypundits.net')
libertyPundits.isActive = false
libertyPundits.categoryId = Category.WORDPRESS
libertyPundits.indexText = 'The home for conservatives'
libertyPundits.paragraphs = [
`At its founding, Liberty Pundits was a joint venture by 3 established bloggers (Melissa Clouthier, Bill Dupray, and
Clyde Middleton) that, in their words, was aimed at becoming the new home for conservatives on the Internet. With the
three of them all being prolific bloggers in their own right, and the help of many contributors, Liberty Pundits was
a bustling hub of information.`
]
libertyPundits.activities = [
new Activity('What We Did',
`Bill and Clyde had been part of Patriot Room, an already-recognized powerhouse, and their desire was for Liberty
Pundits to contain the content that they had contributed to Patriot Room. The technical lead on that blog had moved
on, so we did some divining of what was there. Once we deduced the current setup, we obtained the data from that
site, determined how it would need to be manipulated to become part of a WordPress blog, then accomplished the data
migration. Initially, this was deployed on the same shared hosting account where LibertyPundits.com, their podcast
distribution site, already resided. The site&rsquo;s traffic quickly overwhelmed that solution. They then were
moved by their host to a <abbr title="Virtual Private Server">VPS</abbr>, which performed moderately better, but
still had quite a few issues, mostly related to the site&rsquo;s traffic volume. We recommended a new server
configuration, including migrating from a fully-featured web server to a more lightweight web server, along with
caching, and configured that server. This configuration eliminated the bottlenecks, and enabled them to have
several 100,000+ hit days with no appreciable slowdowns.`),
new Activity('What We Still Do',
`Bit Badger Solutions maintained the server, keeping it current with performance and security upgrades. We also
provided support to the primary 3 bloggers, when they had questions about WordPress or how the site was performing.
The site closed in August of 2011, as the primary authors moved on to other endeavors.`)
]
libertyPundits.techStack = [
new Technology('WordPress', 'blogging'),
new Technology('Custom software', 'data migration')
]
/** Linux Resources */
const linuxResources = new App('linux', 'Linux Resources', 'https://blog.bitbadger.solutions/linux/')
linuxResources.noAboutLink = true
linuxResources.frontPageText = 'Handy information for Linux folks'
linuxResources.frontPageOrder = 3
/** Mindy Mackenzie */
const mindyMackenzie = new App('mindy-mackenzie', 'Mindy Mackenzie', 'https://mindymackenzie.com')
mindyMackenzie.categoryId = Category.WORDPRESS
mindyMackenzie.frontPageText = 'WSJ-best-selling author of The Courage Solution'
mindyMackenzie.frontPageOrder = 3
mindyMackenzie.indexText = '<em>Wall Street Journal</em> best-selling author and C-suite advisor'
mindyMackenzie.paragraphs = [
`Mindy Mackenzie, the prior Chief Performance Officer of Beam, Inc., is known as the &ldquo;Velvet Hammer&rdquo;
for her tough-yet-caring style of leadership. Her <em>Wall Street Journal</em> best-selling book <em>The Courage
Solution: The Power of Truth-Telling with Your Boss, Peers, and Team</em> details her spin-free approach to personal
and business success.`
]
mindyMackenzie.activities = [
new Activity('What We Did (2015)',
`We assumed maintenance of her site several months in advance of the book launch of <em>The Courage Solution</em>.
We worked with her, and her publicists and other professionals, to ensure that the book launch went smoothly. We
customized her WordPress installation to support her Media Appearances in a way that allowed them to be entered,
tracked, and listed as of the date they occurred. We also implemented rotating videos on the front page of the
site.`),
new Activity('What We Did (2018)',
`We developed the pages for her <em>You First Integrative Leadership Summit</em>, with speaker bios, conference
schedule, and an application form.`),
new Activity('What We Still Do',
'We continue to provide backups, WordPress support, and content updates for Mindy&rsquo;s site.')
]
const mmQuote = new Quote('Mindy Mackenzie', '')
mmQuote.full =
`Daniel is the best partner you could hope for in a web designer and for handling web maintenance! He is smart,
creative, resourceful and fast. Daniel is able to produce high quality work on short time frames and with minimal
creative direction and hit the mark over and over. The best part, is Daniel is a joy to work with. He is smart,
customer-centric and trustworthy. If he says he will get it done, he does. After having a poor experience with
another firm, I can highly recommend Daniel for all your website design and support needs he&rsquo;s terrific!`
mmQuote.pull = [
'&hellip;Daniel is able to produce high quality work on short time frames&hellip;',
'[Daniel] is smart, customer-centric and trustworthy.'
]
mindyMackenzie.quotes.push(mmQuote)
mindyMackenzie.techStack = [
new Technology('WordPress', 'blogging'),
new Technology('nginx', 'the web server')
]
/** myPrayerJournal */
const myPrayerJournal = new App('my-prayer-journal', 'myPrayerJournal', 'https://prayerjournal.me')
myPrayerJournal.frontPageText = 'Minimalist personal prayer journal'
myPrayerJournal.frontPageOrder = 2
myPrayerJournal.indexText = 'Minimalist personal prayer journal'
myPrayerJournal.paragraphs = [
`Daniel wanted to maintain a prayer journal, where he could record the prayer requests for which he had prayed, and
the answer that eventually came to that request. He didn't want to do that on paper for several reasons - it's easy
to lose, a long-running request can run out of space to make notes, etc. He believed that he was not the only person
who felt this way regarding prayer, and decided to use this as an opportunity to fill both a spiritual and a learning
need. Given <a href="https://auth0.com">Auth0</a>'s policy of offering free authentication services for open-source
applications, he decided to develop this as an open-source application.`,
`The goal of myPrayerJournal is to get out of the way, so that the user can focus on the requests and their prayer;
once requests have been entered, the journal provides a way to easily pray through these requests, helping people not
forget about active requests. It also provides a means of going back through answered requests, which can be reviewed
whenever the user desires. There is a <a href="https://bit-badger.github.io/myPrayerJournal">documentation page</a>
that fully describes all it can do.`,
`As an open-source project, anyone can review the source code on
<a href="https://github.com/bit-badger/myPrayerJournal">GitHub</a>; we also track open issues there.`
]
myPrayerJournal.activities = [
new Activity('What We Did (2017-2018)',
`We went through several iterations of front-end and back-end technologies, trying to find one that would provide
the optimal experience for praying through the list. The front end uses <a href="https://vuejs.org">Vue.js</a>, and
the back end uses <a href="https://github.com/giraffe-fsharp/Giraffe">Giraffe</a> to serve the data.`),
new Activity('What We Still Do',
`Bit Badger Solutions hosts the instance of this at the URL linked above. We back up the data, and also continue to
develop it. Anyone can use it by logging in with a Google or Microsoft account.`)
]
myPrayerJournal.techStack = [
new Technology('Vue', 'the front-end'),
new Technology('Giraffe', 'the back-end data API'),
new Technology('PostgreSQL', 'data storage')
]
/** Not So Extreme Makeover: Community Edition */
const nsx = new App('nsx', 'Not So Extreme Makeover: Community Edition', 'http://notsoextreme.org')
nsx.isActive = false
nsx.archiveUrl = 'https://nsx.archive.bitbadger.solutions'
nsx.indexText =
'Public site for the makeover; provides event-driven management of volunteers, donations, and families needing help'
nsx.paragraphs = [
`In January 2008, a few members of <a href="http://hoffmantown.org" title="Hoffmantown Church">Hoffmantown Church</a>
in Albuquerque, New Mexico had an idea. The ABC show
<em><a href="http://abc.go.com/shows/extreme-makeover-home-edition">Extreme Makeover: Home Edition</a></em> had just
done <a href="http://abc.go.com/shows/extreme-makeover-home-edition/episode-detail/martinez-family/224884"
title="Martinez Family &bull; Extreme Makeover: Home Edition">a build for a pastor in the &ldquo;war zone&rdquo; area
of town</a>, and this brought attention to Gerald Martinez and the work he had done to help clean up this area of
town. Through <a href="http://www.loveincabq.org/" title="Love INC of South Albuquerque">Love INC of South
Albuquerque</a>, they learned that there were many other homes in that area that could use the &ldquo;Ty Pennington
touch.&rdquo; While the goal was not to knock down homes and build new ones, the goal was no less extreme. The goal
of the &ldquo;Not So Extreme Makeover: Community Edition&rdquo; was to help 50 families in 5 days during spring break
week in 2008. From an idea in January to 57 families helped by March 29th, it was an amazing whirlwind.`
]
nsx.activities = [
new Activity('What We Did',
`The call went out for the need for &ldquo;everything from carpenters to computer nerds,&rdquo; and Daniel thought,
&ldquo;Hey, I&rsquo;m a computer nerd!&rdquo; We obtained the domain name and stood up the public website quickly
using WordPress, which also allowed the coordinators to put content up. We next began developing an application
(NSXapp) where volunteers could sign up for &ldquo;X Week&rdquo;, with over 80 different skill, talent, and ability
categories. We then created a way to identify families and their needs, and a place for people with donations to
let us know what they would be. From there, we created the ability to begin matching needs with goods (stuff) and
abilities (people), organizing the stuff into donated trailers and people into teams. During X Week, we generated
schedules and reports that were used to track the execution of the project.<br><br>After we recovered, Love INC
expressed an interest in a version that would allow them to handle these same areas on an ongoing basis; this was
the genesis of <a href="/solutions/tcms"
title="The Clearinghouse Management System | Bit Badger Solutions">TCMS</a>.`),
new Activity('What We Still Do',
`NSXapp was officially decommissioned in 2012. (It still exists in archived form, if a need arises to use it again.)
A <a href="https://nsx.archive.bitbadger.solutions"> snapshot of the NSX public site</a> remains as a record of
what happened those three months in 2008.`)
]
nsx.techStack = [
new Technology('WordPress', 'content management'),
new Technology('Custom PHP code', 'NSXapp'),
new Technology('PostgreSQL', 'data storage')
]
/** Olivet Baptist Church */
const olivet = new App('olivet-baptist', 'Olivet Baptist Church', 'https://olivet-baptist.org')
olivet.isActive = false
olivet.archiveUrl = 'https://olivet.archive.bitbadger.solutions'
olivet.categoryId = Category.STATIC
olivet.indexText = 'Southern Baptist church in Gulfport, Mississippi'
olivet.paragraphs = [
`Olivet Baptist Church&rsquo;s pastor saw our work with <a href="/solutions/bay-vista"
title="Bay Vista Baptist Church | Bit Badger Solutions">Bay Vista</a>, and asked us what would be involved with
setting up something similar for his church. Olivet did not currently have a website.`
]
olivet.activities = [
new Activity('What We Did (2014)',
`We registered the domain name for the church, then set up a fresh WordPress install. They had expressed a desire to
do as much of the content of the site themselves, so we supported them as they worked through its initial setup. We
also, as with Bay Vista, established the framework for a sermon podcast feed.`),
new Activity('What We Did (2016)',
`As with Bay Vista&rsquo;s site, this was converted to be a statically-generated site. We also created a
mobile-friendly site layout that looked similar to the one they had been using.`),
new Activity('What We Did (2018)',
`We turned their site into a Progressive Web Application (PWA), which allows users to &ldquo;install&rdquo; the
site, like an app, to their phone&rsquo;s home screen. The site is also still accessible from the web via a
browser.`),
new Activity('What We Did (2019)',
`The church closed its doors February 24th, 2019. We converted the PWA back to a static web site, set up a static
archive site, and worked with their personnel to ensure that the podcast links are all still available. We continue
to host that archive site and podcast content.`)
]
olivet.techStack = [
new Technology('Vue', 'the user interface for the PWA'),
new Technology('Hexo', `generating the site's pages`),
new Technology('Azure', 'podcast file storage')
]
/** Photography by Michelle */
const photographyByMichelle = new App('photography-by-michelle', 'Photography by Michelle',
'https://www.summershome.org')
photographyByMichelle.isActive = false
photographyByMichelle.linkInactive = true
photographyByMichelle.indexText = 'Photography services in Albuquerque, New Mexico'
photographyByMichelle.paragraphs = [
`Michelle Summers had been photographing her children for years. When her sons were on sports teams, she was
disappointed with the cost of team photography, and felt that she could do a better job at a lower cost. Thus was
born Photography by Michelle. She specializes in outdoor photography of families, children, and sports teams, as well
as maternity photography and holiday cards.`
]
photographyByMichelle.activities = [
new Activity('What We Did (2007)',
`We created the site with a few custom pages, including a gallery page that would automatically display whatever
pictures were there. We also, using WordPress and a custom image plugin, set up a site where customers can view the
proofs from their photography session.`),
new Activity('What We Did (2012)',
`The custom PHP/WordPress site was replaced by a custom ASP MVC web application, which handles the front pages and
the proof set galleries. The proof display was also upgraded to allow cursor-key navigation of proofs.`),
new Activity('What We Still Do',
`As Michelle is no longer doing professional photography, the current version of this site is a simple thank-you to
her customers over the years.`)
]
photographyByMichelle.techStack = [ new Technology('ASP.NET MVC', 'content management') ]
/** PrayerTracker */
const prayerTracker = new App('prayer-tracker', 'PrayerTracker', 'https://prayer.bitbadger.solutions')
prayerTracker.frontPageText = 'A prayer request tracking website (Free for any church or Sunday School class!)'
prayerTracker.frontPageOrder = 1
prayerTracker.indexText = 'Provides an ongoing, centralized prayer list for Sunday School classes and other groups'
prayerTracker.paragraphs = [
`Years ago, Daniel was responsible for keeping up with prayer requests for his Sunday School class. To help him keep
up with requests, automatically drop requests that were old, and track long-term requests, he wrote a custom app made
up of a few pages. Over time, he added security mechanisms and other options, arriving at the site that exists today.
It is provided free for the asking to any church, Sunday School class, or small group that desires a tool to help
them establish a continuous list of prayer requests.`
]
prayerTracker.activities = [
new Activity('What We Did (2005)', 'Created the original site.'),
new Activity('What We Did (2011)',
`We rewrote this application using a more modern (at the time) framework (ASP MVC 3), building the security
additions from the ground up, and posturing it for an interface with <a href="/solutions/virtual-prayer-room"
title="Virtual Prayer Room | Bit Badger Solutions">Virtual Prayer Room</a>.`),
new Activity('What We Did (2012)',
'In April 2012, version 4 was released with support for Spanish - our first multi-lingual application!'),
new Activity('What We Did (2018)',
'Version 7 brought full mobile accessibility, along with an upgrade to a modern, ultra-fast web framework.'),
new Activity('What We Did (2019)',
'PrayerTracker became <a href="https://github.com/bit-badger/PrayerTracker">an open source project</a>.'),
new Activity('What We Still Do', 'Host and maintain this application.')
]
prayerTracker.techStack = [
new Technology('Giraffe', 'server-side logic and dynamic page generation'),
new Technology('PostgreSQL', 'data storage')
]
/** Riehl World News */
const riehlWorldNews = new App('riehl-world-news', 'Riehl World News', 'http://riehlworldview.com')
riehlWorldNews.categoryId = Category.WORDPRESS
riehlWorldNews.frontPageText = 'Riehl news for real people'
riehlWorldNews.frontPageOrder = 4
riehlWorldNews.indexText = 'Riehl news for real people'
riehlWorldNews.paragraphs = [
`Dan Riehl began blogging as &ldquo;The Carnivorous Conservative&rdquo; back in 2004, specializing in the areas of
crime and politics. He changed to &ldquo;Riehl World View&rdquo; a short time later, and writes both news and opinion
pieces. He was a prolific blogger, publishing over 15 posts a day on most days. He wanted to take his blog in a
different direction, and was having trouble getting his Movable Type blog do move with him.`
]
riehlWorldNews.activities = [
new Activity('What We Did (2012)',
`We spoke with him regarding his ideal direction and assisted through the selection and customization of his
eventual chosen theme. We also did some work on the customization of that theme. Additionally, we imported the
large volume of posts from the Movable Type blog into his new WordPress blog.`),
new Activity('What We Did (2018)',
`Dan wanted a fresh start for Riehl World View, so we generated flat files to preserve his prior archive. The post
volume meant that none of the existing WordPress plugins that do that would work, so we built a custom converter
to preserve that content.`),
new Activity('What We Still Do',
'Bit Badger Solutions continues to provide backups and WordPress updates for Riehl World News.')
]
riehlWorldNews.techStack = [
new Technology('WordPress', 'blogging'),
new Technology('Custom F# code', 'archive static page generation')
]
/** The Clearinghouse Management System */
var tcms = new App('tcms', 'The Clearinghouse Management System', 'http://tcms.us')
tcms.isActive = false
tcms.indexText =
'Assists a needs clearinghouse in connecting people with needs to people that can help meet those needs'
tcms.paragraphs = [
`The TCMS motto, &ldquo;Putting People Over Paperwork,&rdquo; sums up the mission of this system. To successfully run
a needs clearinghouse, such as those run by Love INC affiliates, there is a lot of paperwork involved. Clients must
be tracked, along with their needs; these needs must be verified; resources for goods and services must be known;
volunteers must be known and sent communications to keep them involved. All of this adds up to a significant
recordkeeping (i.e., paperwork) burden.`,
`TCMS addressed these issues by providing a repository for all clearinghouse operation needs. It helped eliminate
duplication of work, and also linke clients with goods and services. It also provided the means to communicate with
volunteers, either en masse or using selective criteria. This allowed the recordkeeping requirement to be smaller
and quicker, giving more time for the actual helping of clients. It used WordPress for its front end; this provided
organizations with a web presence that they could maintain without having to employ a web guru, using
WordPress&rsquo;s <abbr title="What You See Is What You Get">WYSIWYG</abbr> editor and management tools.`,
`TCMS was decommissioned in 2014.`
]
tcms.techStack = [
new Technology('Custom PHP code', 'the application logic'),
new Technology('WordPress', 'publicly-facing pages and authentication'),
new Technology('PostgreSQL', 'application data storage')
]
/** The Bit Badger Blog */
const techBlog = new App('tech-blog', 'The Bit Badger Blog', 'https://blog.bitbadger.solutions')
techBlog.categoryId = Category.STATIC
techBlog.frontPageText = 'Technical information (&ldquo;geek stuff&rdquo;) from Bit Badger Solutions'
techBlog.frontPageOrder = 3
techBlog.indexText = 'Geek stuff from Bit Badger Solutions'
techBlog.paragraphs = [
`The Bit Badger Blog grew from Daniel&rsquo;s personal experience with learning and using the Linux operating system.
His first experience with blogging consisted of pages that had to be edited every time a new post was made. The
initial posts were titled &ldquo;My Linux Adventure,&rdquo; and existed as a copy of this home-grown blog. The Bit
Badger Blog has that, plus tech tips regarding many different computer products. It covers web servers, databases,
programming languages, and open-source software. Bit Badger Solutions also hosts 64-bit RPM builds of xine, a Linux
multimedia player; the blog, via the RSS feed for that category, can deliver notices of updated versions directly to
subscribed users. Finally, it also contains notices of new versions of Bit Badger Solutions-developed WordPress
plug-ins (&ldquo;Daniel&rsquo;s Dropdowns&rdquo; <em>(inactive, as its functionality is now part of the WordPress
core)</em> and &ldquo;HCSB Verse of the Day (Plus)&rdquo;).`,
`It is currently a statically-generated site, utilizing <a href="https://hexo.io">Hexo</a>, and its code is
<a href="https://github.com/bit-badger/blog.bitbadger.solutions">open source</a>.`
]
techBlog.techStack = [ new Technology('Hexo', 'static site generation') ]
/** The Shark Tank */
const theSharkTank = new App('the-shark-tank', 'The Shark Tank', 'http://shark-tank.net')
theSharkTank.isActive = false
theSharkTank.categoryId = Category.WORDPRESS
theSharkTank.indexText = 'Floridas political feeding frenzy'
theSharkTank.paragraphs = [
`The Shark Tank is a news and opinion site centered on south Florida politics (and the state at large). They provided
extensive coverage of Rep. Allen West&rsquo;s winning campaign in 2010, and are continuing their focused news and
opinion to current political races.`
]
theSharkTank.activities = [
new Activity('What We Did',
`They were displeased with their current theme, and had found a theme (and a demo site) that they preferred. We set
up the theme, ensured that their content would fit in the new theme&rsquo;s requirements, and helped them turn off
parts that they didn&rsquo;t need. We also converted the social media connections from their old site to a style
that would work nicely in the new theme.`)
]
/** Virtual Prayer Room */
const vpr = new App('virtual-prayer-room', 'Virtual Prayer Room', 'https://virtualprayerroom.us')
vpr.isActive = false
vpr.indexText = 'Gives prayer warriors access to requests from wherever they may be, and sends them daily updates'
vpr.paragraphs = [
`Many churches have prayer rooms &ndash; rooms set aside for people to come in to pray. Hoffmantown Church in
Albuquerque, New Mexico was one of these churches. However, they had seen the use of this physical prayer room
dwindling over the years. People had become less willing to drive to the church, especially at night, and security
became an issue as well; either prayer warriors had to know how to disable the security system, or the church would
have to remain unlocked.`,
`Having seen our work with the <a href="/solutions/nsx/"
title="Not So Extreme Makeover: Community Edition | Bit Badger Solutions">Not So Extreme Makeover: Community
Edition</a>, the church contacted us to see if something similar could be developed to help their prayer ministry.
The resulting application that was developed extended the prayer room to wherever the prayer warrior can get an
Internet connection! Prayer warriors could enlist right from the site, and had to be approved. Requests and updates
were tracked by date/time, and warriors could record when they&rsquo;ve prayed for a request from the site, or from
clicking a link in the daily e-mail they received with requests from their interest areas. As many prayer needs are
confidential, security and confidentiality were very important. Virtual Prayer Room ensured these by providing
varying security levels for prayer warriors and the ability to mark each request as confidential.`,
`In 2016, Hoffmantown Church elected to begin using another package for their prayer requests. While a few other
churches had expressed interest in it, none ultimately decided to use it; so, in 2017, Virtual Prayer Room was
officially decommissioned.`
]
vpr.techStack = [
new Technology('Custom PHP code', 'the application'),
new Technology('PostgreSQL', 'data storage')
]
export default {
/** All categories */
categories: [
new Category(Category.SITES_APPS, 'Web Sites and Applications'),
new Category(Category.WORDPRESS, 'WordPress'),
new Category(Category.STATIC, 'Static Sites'),
new Category(Category.PERSONAL, 'Personal')
],
/** All apps */
apps: [
aWordFromTheWord,
bayVista,
cassyFiano,
danielJSummers,
drMelissaClouthier,
emcs,
futilityCloset,
hardCorpsWife,
libertyPundits,
linuxResources,
mindyMackenzie,
myPrayerJournal,
nsx,
olivet,
photographyByMichelle,
prayerTracker,
riehlWorldNews,
tcms,
techBlog,
theSharkTank,
vpr
]
}
export * from './Types'

View File

@ -1,7 +1,9 @@
'use strict'
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import PageTitle from './components/PageTitle'
import PageTitle from './components/PageTitle.vue'
Vue.config.productionTip = false

View File

@ -1,15 +1,17 @@
'use strict'
import Vue from 'vue'
import Router from 'vue-router'
import Application from '@/components/Application'
import ApplicationList from '@/components/ApplicationList'
import FourOhFour from '@/components/FourOhFour'
import Home from '@/components/Home'
import InformationPublicizing from '@/components/about/InformationPublicizing'
import LegacyData from '@/components/about/LegacyData'
import ProcessAutomation from '@/components/about/ProcessAutomation'
import WebServices from '@/components/about/WebServices'
import WhyBitBadger from '@/components/about/WhyBitBadger'
import Application from '@/components/Application.vue'
import ApplicationList from '@/components/ApplicationList.vue'
import FourOhFour from '@/components/FourOhFour.vue'
import Home from '@/components/Home.vue'
import InformationPublicizing from '@/components/about/InformationPublicizing.vue'
import LegacyData from '@/components/about/LegacyData.vue'
import ProcessAutomation from '@/components/about/ProcessAutomation.vue'
import WebServices from '@/components/about/WebServices.vue'
import WhyBitBadger from '@/components/about/WhyBitBadger.vue'
Vue.use(Router)

13
src/shims-tsx.d.ts vendored Normal file
View File

@ -0,0 +1,13 @@
import Vue, { VNode } from 'vue'
declare global {
namespace JSX {
// tslint:disable no-empty-interface
interface Element extends VNode {}
// tslint:disable no-empty-interface
interface ElementClass extends Vue {}
interface IntrinsicElements {
[elem: string]: any
}
}
}

4
src/shims-vue.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module '*.vue' {
import Vue from 'vue'
export default Vue
}

18
src/views/Home.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import HelloWorld from '@/components/HelloWorld.vue'; // @ is an alias to /src
@Component({
components: {
HelloWorld,
},
})
export default class Home extends Vue {}
</script>

39
tsconfig.json Normal file
View File

@ -0,0 +1,39 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}

856
yarn.lock

File diff suppressed because it is too large Load Diff