Partial content changes

This commit is contained in:
mitchell 2019-04-23 08:14:29 -07:00
parent 45913005ee
commit 715312209d
3 changed files with 29 additions and 33 deletions

1
.gitignore vendored
View File

@ -15,6 +15,7 @@
.env.development.local .env.development.local
.env.test.local .env.test.local
.env.production.local .env.production.local
.idea
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*

View File

@ -1,26 +1,21 @@
// @flow // @flow
import React from "react" import React from 'react'
import "./index.css" import './index.css'
import profile from "../../images/profile.jpg" import profile from '../../images/profile.jpg'
type Props = {} type Props = {}
class Home extends React.PureComponent<Props> { class Home extends React.PureComponent<Props> {
render() { render () {
return ( return (
<div className="home-container"> <div className='home-container'>
<img src={profile} alt="Profile" /> <img src={profile} alt='Profile' />
<p>Hello and welcome,</p> <p>Hello and welcome,</p>
<p> <p>
I am a software developer, with most of my experience in web services. I am a software developer, with most of my experience in web services.
I have been focused on serverless (FaaS) service architecture, for the I love working with Golang, gRPC, TypeScript, and Redis. I have
last year. The languages I am currently proficient in include Go, experience working with Serverless, DynamoDB, PostgreSQL, Node.js,
JavaScript, and Ruby. I build web services with APIs mostly utilizing
the REST architectural style, and various relational and key-value
DBMS. In addition to this, I am acclimated with JaveScript client-side
development, like React.js/Native. I&#39;m currently working to
acclimate myself with gRPC and Docker deployments.
</p> </p>
<p> <p>
My professional interests, aside from the above, include software My professional interests, aside from the above, include software
@ -33,7 +28,7 @@ class Home extends React.PureComponent<Props> {
Thank you for reading my quick bio. If you would like to contact me Thank you for reading my quick bio. If you would like to contact me
visit the contact page for all of your options. visit the contact page for all of your options.
</p> </p>
<p className="signature">- Mitchell J. F. Simon, III</p> <p className='signature'>- Mitchell J. F. Simon, III</p>
</div> </div>
) )
} }

View File

@ -1,22 +1,4 @@
[ [
{
"title": "mjfs.us",
"repoUrl": "https://github.com/mitchell/mjfs.us",
"badges": [
{
"imgUrl": "https://travis-ci.org/mitchell/mjfs.us.svg?branch=master",
"linkUrl": "https://travis-ci.org/mitchell/mjfs.us",
"alt": "Build Status"
},
{
"imgUrl": "https://api.codeclimate.com/v1/badges/dc70437f1490980d8e8e/maintainability",
"linkUrl": "https://codeclimate.com/github/mitchelljfs/mjfs.us/maintainability",
"alt": "Maintainability"
}
],
"description": "This is the source code for this site, which currently utilizes the React.js library. In the past it was built using plain HTML, then Sinatra. It was developed using Flow, and continously deployed using Travis CI. The site itself is hosted on S3 and distributed to several cache locations around the world using Cloudfront."
},
{ {
"title": "lambdarouter", "title": "lambdarouter",
"repoUrl": "https://github.com/mitchell/lambdarouter", "repoUrl": "https://github.com/mitchell/lambdarouter",
@ -37,7 +19,25 @@
"alt": "Maintainability" "alt": "Maintainability"
} }
], ],
"description": "So far this package can create a router and routes whose execution utilizes a middleware context pattern, all in one Golang Lambda function. It has full test coverage, and has been used in a few production services. Check out the GoDoc Reference to see how to initialize a router and create endpoints." "description": "This package contains a router capable of routing many AWS Lambda API gateway requests to anything that implements the aws-lambda-go Handler interface, all in one Lambda function. It plays especially well with go-kit's awslambda transport package. Check out the GoDoc Reference to see how to initialize a router and create endpoints."
},
{
"title": "mjfs.us",
"repoUrl": "https://github.com/mitchell/mjfs.us",
"badges": [
{
"imgUrl": "https://travis-ci.org/mitchell/mjfs.us.svg?branch=master",
"linkUrl": "https://travis-ci.org/mitchell/mjfs.us",
"alt": "Build Status"
},
{
"imgUrl": "https://api.codeclimate.com/v1/badges/dc70437f1490980d8e8e/maintainability",
"linkUrl": "https://codeclimate.com/github/mitchelljfs/mjfs.us/maintainability",
"alt": "Maintainability"
}
],
"description": "This is the source code for this site, which currently utilizes the React.js library. In the past it was built using plain HTML, then Sinatra. It was developed using Flow, and continously deployed using Travis CI. The site itself is hosted on S3 and distributed to several cache locations around the world using Cloudfront."
}, },
{ {