diff --git a/Web_scraping_pt_2.ipynb b/Web_scraping_pt_2.ipynb new file mode 100644 index 000000000..14cae9933 --- /dev/null +++ b/Web_scraping_pt_2.ipynb @@ -0,0 +1,120 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "Web scraping pt 2", + "provenance": [], + "authorship_tag": "ABX9TyPFbMX6EOuYfFORsg61Y1Bl", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "46MIHHUyW-ji", + "colab_type": "code", + "outputId": "ea0c89cb-2aac-4bda-b965-41c668090111", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 421 + } + }, + "source": [ + "from time import time\n", + "from time import sleep\n", + "from random import randint\n", + "from IPython.core.display import clear_output\n", + "from warnings import warn\n", + "from bs4 import BeautifulSoup\n", + "import requests\n", + "def get_space_news(space_url):\n", + " url = space_url \n", + " response = requests.get(url)\n", + " if(response.ok):\n", + " data = response.text\n", + " soup = BeautifulSoup(data, 'html.parser')\n", + " raw_news = soup.select('article')\n", + " for news in raw_news:\n", + " headline = news.select_one('div.content > header > h3').get_text()\n", + " author = news.select_one('div > header > p > span'). get_text().replace('\\n', '').lstrip().rstrip().strip('By ')\n", + " synopsis = news.select_one('div.content > p').get_text().strip()\n", + " date = news.select_one('div > header > p > time').attrs['datetime']\n", + " news = {'headline': headline, 'author':author, 'synopsis': synopsis, 'date':date}\n", + " print(news)\n", + "print(get_space_news('https://www.space.com/news'))" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "{'headline': 'Space photos: The most amazing images this week!', 'author': 'Doris Elin Urrutia', 'synopsis': 'Here are our picks for the most amazing space photos of the week.', 'date': '2020-02-16T15:24:48Z'}\n", + "{'headline': 'The top space stories of the week!', 'author': 'Doris Elin Urrutia', 'synopsis': 'These are the top space stories this week from Space.com.', 'date': '2020-02-16T15:08:18Z'}\n", + "{'headline': \"In photos: See the Antares rocket's Cygnus NG-13 cargo ship launch to space station\", 'author': 'Space.com Staff', 'synopsis': \"See photos of Northrop Grumman's amazing Antares rocket launch that sent the Cygnus NG-13 spacecraft to the International Space station on Feb. 15, 2020.\", 'date': '2020-02-16T14:13:49Z'}\n", + "{'headline': \"On This Day in Space: Feb. 16, 1948: Gerard Kuiper discovers Uranus' moon Miranda\", 'author': 'Hanneke Weitering', 'synopsis': 'On Feb. 16, 1948, the Dutch-American astronomer Gerard Kuiper discovered Miranda, a moon of Uranus. See how it happened in our On This Day in Space video series!', 'date': '2020-02-16T13:19:45Z'}\n", + "{'headline': 'What if Earth were a super-Earth?', 'author': 'Donavyn Coffe', 'synopsis': 'What would happen if our Earth were much larger than it is now?', 'date': '2020-02-16T13:14:43Z'}\n", + "{'headline': 'Orion and its dimming star Betelgeuse shine over a stargazer in this sentimental night-sky photo', 'author': 'Miguel Claro', 'synopsis': \"A night-sky photo features a lonely stargazer admiring the beautiful constellation of Orion, the hunter — and it's strangely dimming star Betelgeuse.\", 'date': '2020-02-16T13:12:28Z'}\n", + "{'headline': \"The lost continent of Zealandia hides clues to the Ring of Fire's birth\", 'author': 'Stephanie Pappas', 'synopsis': 'The lost continent of Zealandia underwent changes as subduction began around the western Pacific.', 'date': '2020-02-16T13:11:24Z'}\n", + "{'headline': 'SpaceX delays launch of 60 Starlink satellites due to rocket valve checks', 'author': 'Amy Thompson', 'synopsis': \"SpaceX has postponed the launch of its next batch of Starlink satellites due to an issue with a valve component on the rocket's second stage.\", 'date': '2020-02-16T02:07:55Z'}\n", + "{'headline': 'Northrop Grumman launches Cygnus cargo ship to space station for NASA', 'author': 'Tariq Malik', 'synopsis': 'A Northrop Grumman Antares rocket launched a commercial Cygnus cargo ship to the International Space Station for NASA after a week of delays.', 'date': '2020-02-15T20:44:08Z'}\n", + "{'headline': \"One of Antarctica's fastest-shrinking glaciers just lost an iceberg twice the size of Washington, D.C.\", 'author': 'randon Specktor', 'synopsis': \"A huge chunk of ice twice the size of Washington, D.C., just broke off of Antarctica's Pine Island glacier, continuing a troubling trend that could signify glacial collapse.\", 'date': '2020-02-15T12:48:38Z'}\n", + "{'headline': 'SpaceX Crew Dragon arrives at launch site for the 1st orbital crew flight from US soil since 2011', 'author': 'Mike Wall', 'synopsis': \"A SpaceX Crew Dragon capsule arrived on Florida's Space Coast on Thursday (Feb. 13), completing a cross-country trek from the company's California headquarters.\", 'date': '2020-02-15T12:33:50Z'}\n", + "{'headline': \"Disney's new 'Rise of the Resistance' ride puts you in an epic 'Star Wars' battle\", 'author': 'Amy Thompson', 'synopsis': 'Have you ever wanted to join the Resistance and fight alongside Poe and Finn to free the galaxy from the tyrannical rule of the First Order?', 'date': '2020-02-15T12:24:33Z'}\n", + "{'headline': \"You'll be able to make a reservation for Disney's Star Wars: Galactic Starcruiser this year\", 'author': 'Chelsea Gohd', 'synopsis': 'Soon, you will have a chance to reserve a spot on the ultraimmersive Star Wars: Galactic Starcruiser.', 'date': '2020-02-15T12:21:47Z'}\n", + "{'headline': \"SETI search of interstellar Comet Borisov finds no sign of alien 'technosignatures'\", 'author': 'Mike Wall', 'synopsis': 'The Breakthrough Listen SETI project has scanned the interstellar Comet Borisov for \"technosignatures\" but come up empty so far.', 'date': '2020-02-15T00:17:29Z'}\n", + "{'headline': 'SpaceX tests Falcon 9 rocket for next Starlink satellite fleet launch', 'author': 'Amy Thompson', 'synopsis': \"SpaceX just fired up the Falcon 9 rocket booster that will launch the company's next batch of Starlink satellites into space this weekend.\", 'date': '2020-02-14T23:23:19Z'}\n", + "{'headline': \"Puppy love! Astronaut's reunion with her dog after a nearly yearlong flight made us cry\", 'author': 'Chelsea Gohd', 'synopsis': 'Koch was welcomed home to Earth by her sweet dog LBD.', 'date': '2020-02-14T22:25:47Z'}\n", + "{'headline': \"Google Doodle celebrates Valentine's Day 2020 with super-adorable aliens\", 'author': 'Tariq Malik', 'synopsis': \"It's Valentine's Day and the folks at Google are celebrating with a tale of love across the universe between two adorable aliens.\", 'date': '2020-02-14T22:09:02Z'}\n", + "{'headline': \"Valentine's Day Cygnus cargo ship launch to space station delayed by high winds\", 'author': 'Tariq Malik', 'synopsis': \"Northrop Grumman's Valentine's Day cargo launch to the International Space Station has been delayed by at least 24 hours due to high winds, NASA says.\", 'date': '2020-02-14T20:52:01Z'}\n", + "{'headline': \"Pearl Jam gets cosmic with 'Superblood Wolfmoon' AR experience, new album\", 'author': 'Steve Spaleta', 'synopsis': 'The promotion for Pearl Jam\\'s new record \"Gigaton\" is full of cosmic visuals and a \"Superblood Wolfmoon\" AR Experience.', 'date': '2020-02-14T20:48:26Z'}\n", + "{'headline': \"Virgin Galactic's VSS Unity space plane arrives at New Mexico spaceport\", 'author': 'Mike Wall', 'synopsis': \"The company's newest SpaceShipTwo vehicle, VSS Unity, arrived yesterday (Feb. 13) at Spaceport America in New Mexico, the hub of Virgin Galactic's commercial operations.\", 'date': '2020-02-14T20:05:41Z'}\n", + "None\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "zdVM6y9XZfSI", + "colab_type": "code", + "colab": {} + }, + "source": [ + "" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "Dr22gA5ZRj3Q", + "colab_type": "code", + "colab": {} + }, + "source": [ + "" + ], + "execution_count": 0, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/_config.yml b/_config.yml index c76fb98c2..427440617 100644 --- a/_config.yml +++ b/_config.yml @@ -1,26 +1,22 @@ # Site settings -name: Brittany Chiang -title: Brittany Chiang | Front End Software Engineer -description: Design-minded front-end software engineer focused on building beautiful interfaces and experiences -url: https://bchiang7.github.io/ +name: Frederic Randall +title: Frederic Randall | Data Analyst +description: Data analyst with a passion for research and design. +url: https://AfredTX.github.io/ baseurl: '' -email: brittany.chiang@gmail.com -cover: https://bchiang7.github.io/img/og.png -logo: https://bchiang7.github.io/img/emojis/technologist.png -resume: https://bchiang7.github.io/resume.pdf +email: Fredrandall333@gmail.com +cover: https://AfredTX.github.io/img/og.png +logo: https://AfredTX.github.io/img/emojis/technologist.png +resume: https://github.com/AfredTX/AfredTX.github.io/blob/master/Frederic%20Randall%20Resume%202020(1).pdf social: - title: email - url: mailto:brittany.chiang@gmail.com + url: mailto:FredRandall333@gmail.com - title: twitter - url: https://twitter.com/bchiang7 - - title: instagram - url: https://instagram.com/bchiang7 - - title: codepen - url: http://codepen.io/bchiang7 + url: https://twitter.com/FredericRandal4 - title: github - url: https://github.com/bchiang7 + url: https://github.com/AfredTX - title: linkedin - url: https://www.linkedin.com/in/bchiang7 + url: https://www.linkedin.com/in/frandall-iii/ # Build settings markdown: kramdown diff --git a/_config_dev.yml b/_config_dev.yml index c76fb98c2..427440617 100644 --- a/_config_dev.yml +++ b/_config_dev.yml @@ -1,26 +1,22 @@ # Site settings -name: Brittany Chiang -title: Brittany Chiang | Front End Software Engineer -description: Design-minded front-end software engineer focused on building beautiful interfaces and experiences -url: https://bchiang7.github.io/ +name: Frederic Randall +title: Frederic Randall | Data Analyst +description: Data analyst with a passion for research and design. +url: https://AfredTX.github.io/ baseurl: '' -email: brittany.chiang@gmail.com -cover: https://bchiang7.github.io/img/og.png -logo: https://bchiang7.github.io/img/emojis/technologist.png -resume: https://bchiang7.github.io/resume.pdf +email: Fredrandall333@gmail.com +cover: https://AfredTX.github.io/img/og.png +logo: https://AfredTX.github.io/img/emojis/technologist.png +resume: https://github.com/AfredTX/AfredTX.github.io/blob/master/Frederic%20Randall%20Resume%202020(1).pdf social: - title: email - url: mailto:brittany.chiang@gmail.com + url: mailto:FredRandall333@gmail.com - title: twitter - url: https://twitter.com/bchiang7 - - title: instagram - url: https://instagram.com/bchiang7 - - title: codepen - url: http://codepen.io/bchiang7 + url: https://twitter.com/FredericRandal4 - title: github - url: https://github.com/bchiang7 + url: https://github.com/AfredTX - title: linkedin - url: https://www.linkedin.com/in/bchiang7 + url: https://www.linkedin.com/in/frandall-iii/ # Build settings markdown: kramdown diff --git a/_data/experience.yml b/_data/experience.yml index 659676dd0..21ddcbce4 100644 --- a/_data/experience.yml +++ b/_data/experience.yml @@ -1,44 +1,24 @@ -- company: Upstatement - url: https://www.upstatement.com/ - time: May 2018 - Present - position: Engineer - -- company: Scout - url: https://web.northeastern.edu/scout/ - time: Jan - June 2018 - position: Studio Developer - -- company: Apple Music - url: https://www.apple.com/music/ - time: July - Dec 2017 - position: UI Engineer Co-op - -- company: Scout - url: https://web.northeastern.edu/scout/ - time: Jan - June 2017 - position: Studio Developer - -- company: Starry - url: https://starry.com/ - time: July - Dec 2016 - position: Software Engineer Co-op - -- company: Northeastern University - url: http://www.ccis.northeastern.edu/ - time: Jan - May 2016 - position: HCI Teaching Assistant - -- company: NU Women in Tech - url: http://nuwit.ccs.neu.edu/ - time: Jan 2016 - May 2017 - position: President & Web Chair - -- company: MullenLowe U.S. - url: https://us.mullenlowe.com/ - time: July - Dec 2015 - position: Creative Technologist Co-op - -- company: Northeastern University - url: http://www.ccis.northeastern.edu/ - time: Mar - May 2015 - position: HCI Research Assistant +- company: Maryland New Directions + url: https://mdnewdirections.org/ + time: August 2020 - Present + position: Data Development & Operations Manager + +- company: Baltimore Civic Fund + url: https://www.baltimorecivicfund.org/ + time: May 2022 - December 2022 + position: Consultant + +- company: Thinkful + url: https://www.thinkful.com/ + time: 2019 - 2020 + position: Data Analyst + +- company: Hyatt - Driskill Hotel + url: https://driskillhotel.com/ + time: 2013 - 2019 + position: Hospitality Leader + +- company: Toyon Literary Magazine + url: https://www.toyonliterarymagazine.org/ + time: 2012 - 2013 + position: Editor diff --git a/_data/other-projects.yml b/_data/other-projects.yml index d98fa0243..f683e6b2f 100644 --- a/_data/other-projects.yml +++ b/_data/other-projects.yml @@ -1,162 +1,26 @@ -- name: Surf Videos - url: https://github.com/bchiang7/Surf-Videos - code: https://github.com/bchiang7/Surf-Videos - description: Small React project created during an interview process to browse and search surf videos via the YouTube API. - used: - - thing: JavaScript - - thing: React - - thing: React Router - - thing: Axios - - thing: YouTube API - -- name: Halcyon Theme - url: https://bchiang7.github.io/halcyon-site/ - code: https://github.com/bchiang7/halcyon-site - description: A minimal, dark theme for Sublime Text, Atom, VS Code, and more published to Package Control, Atom Package Manager, Visual Studio Marketplace, and NPM. - used: - - thing: Gatsby - - thing: Sublime Text - - thing: Atom - - thing: VS Code - - thing: iTerm2 - - thing: Hyper - -- name: Lonely Planet DBMS - url: https://github.com/bchiang7/CS3200-Project - code: https://github.com/bchiang7/CS3200-Project - description: Final project for my Database Design course at Northeastern. A simple web application that allows users to filter through a database containing Lonely Planet's Top 500 Travel Destinations. Users are able to add themselves as visitors as well as leave reviews of the destinations. +- name: Web Scraper + url: https://github.com/AfredTX/Webscraper + description: A web scraper that i made to collect news headlines from Space.com used: - thing: Python - - thing: MySQL - - thing: Flask - - thing: HTML - - thing: CSS - - thing: JavaScript - -- name: myNEU Redesign - url: https://bchiang7.github.io/Redesign-myNEU/ - code: https://github.com/bchiang7/Redesign-myNEU - description: myNEU student portal web prototype for my information science senior project. I conducted a study that aimed to answer the question of how myNEU can be improved to provide students at Northeastern with a better user experience. Informed by usability metrics gathered from user tests, I redesigned and developed a web prototype of myNEU. - used: - - thing: Jekyll - - thing: HTML - - thing: SCSS - - thing: JavaScript - -- name: Crowd DJ - url: https://github.com/crowddj/crowddj-react - code: https://github.com/crowddj/crowddj-react - description: - A web app that allows people who are at a party or social gathering with a DJ to request songs via their smartphones. The web app allows people to see the currently playing song, request songs, upvote songs, and rate songs so the DJ can see how the crowd is feeling and act accordingly. In other words, Crowd DJ is essentially a crowdsourced music queue.
- 🏆 Won Best UI/UX Design at Hackbeanpot 2017 🏆 - used: - - thing: React - - thing: Sass - - thing: Firebase - - thing: Spotify API - -- name: Weather Widget - url: http://quiet-dusk-89245.herokuapp.com/ - code: https://github.com/bchiang7/DemoWebApp - description: A simple weather app I made at HubSpot's Fall 2016 Web App Workshop with Node.js, Express, and Heroku. I used the OpenWeatherMap API to get weather and forecast data, and then used the current city's coordinates to create a map background that reflected the current city using the Google Maps API. - img: weather - used: - - thing: JavaScript - - thing: CSS - - thing: Node.js - - thing: Express - - thing: Heroku - - thing: OpenWeatherMap API - - thing: Google Maps API - -# - name: ScreenTime 2.0 -# url: https://play.google.com/store/apps/details?id=com.starry.management -# description: App-blocking feature on Starry Station that provides functionality for users to easily filter content, pause the internet, and even create custom rules for blocking apps like Facebook and Twitter right from their mobile phones. Learn more about ScreenTime 2.0 on Product Hunt and the Starry Blog. -# used: -# - thing: JavaScript -# - thing: CSS -# - thing: Handlebars -# - thing: Backbone -# - thing: Marionette -# - thing: Cordova - -- name: Personal Website V2 - url: https://bchiang7.github.io/v2 - code: https://github.com/bchiang7/v2 - description: Second iteration of my personal website. Designed and developed with a conscious effort to avoid using any superfluous frameworks like Bootstrap. - used: - - thing: Jekyll - - thing: Handlebars - - thing: SCSS - - thing: JavaScript - - thing: Github Pages - -- name: React Resume - url: https://bchiang7.github.io/react-profile/ - code: https://github.com/bchiang7/react-profile/ - description: An online version of my 2016 resume I made for fun. I was interested in learning React.js, so I found this simple tutorial and it kind of spun into this weekend project. I probably didn't need to use React at all, but hey, at least I learned a few things! - used: - - thing: JavaScript - - thing: React - - thing: CSS - -- name: CourseSource - url: http://webdevspring2016-chiangbrittany.rhcloud.com/project/client/#/login - code: https://github.com/bchiang7/WebDevSpring2016/tree/master/public/project - description: A web application built on the MEAN (MongoDB, Express, Angular, Node) stack for my web development course at Northeastern. I created this web app with the intention of providing Northeastern Students a better experience browsing the courses offered at Northeastern. - used: - - thing: HTML - - thing: CSS - - thing: JavaScript - - thing: Node.js - - thing: Angular - - thing: Express - - thing: MongoDB - -- name: NU Women in Tech - url: http://nuwit.ccs.neu.edu/ - code: https://github.com/nuwit/website - description: Complete overhaul and redesign of NU Women in Tech's club website using Jekyll, built while serving as web chair on the e-board. - used: - - thing: Jekyll - - thing: HTML - - thing: CSS - - thing: JavaScript - - thing: Bootstrap - -- name: Fontipsums - url: https://bchiang7.github.io/fontipsums - code: https://github.com/bchiang7/fontipsums - description: As someone who has an eye for typography, I wanted a way to visually see different font combinations together. I whipped up this simple website to display some of my favorite pairings combined with some fun lorem ipsum variations I found on the web. - used: - - thing: HTML - - thing: SCSS - -- name: Personal Website V1 - url: https://bchiang7.github.io/v1 - code: https://github.com/bchiang7/website_2015/ - description: My first portfolio website I designed and built in 2014. I learned quite a bit about HTML, CSS, and SEO. Since then, I think my web development and design skills have improved immensely. - used: - - thing: HTML - - thing: CSS - - thing: Bootstrap - - thing: JavaScript - - thing: jQuery - -- name: One Card For All - url: http://onecardforall.org - description: MullenLowe's 2016 holiday site built around an algorithm that generates a holiday greeting to each and every person on the planet. As new names appear, visitors can watch them fall, like snowflakes, onto a stylized world map. Users can also find their own name and see it as part of the world collective. Check out this short video describing the project. - used: - - thing: HTML - - thing: SCSS - - thing: JavaScript - - thing: jQuery - -- name: JetBlue HumanKinda - url: https://us.mullenlowe.com/work/humankinda/ - description: Tumblr site complementing JetBlue's HumanKinda campaign and documentary. The site houses the video documentary, many graphics created by Mullen for the campaign, and an interactive quiz to determine how "HumanKinda" you are. Learn more about this project here. - used: - - thing: HTML - - thing: CSS - - thing: JavaScript - - thing: jQuery + - thing: API Interfacing + - thing: Web Scraping + - thing: Postman + +- name: API Request + url: https://drive.google.com/open?id=1UCB3YefB6WmI-Vnl3JGfHbjQMwKCuxaZ + description: Making API requests to gather information from various websites and databases. + used: + - thing: Pyhton + - thing: SQL + - thing: API Interfacing + - thing: Postman + +- name: HR Compensation Tool + url: https://drive.google.com/open?id=1vmo-YCrkQVFqkePcJkDKeQNB0Z-ETm-w + description: An exercise in data modeling that provides a company's human resources office evaluate employee performance and compensation on an annual basis. + used: + - thing: Advanced Excel Techniques + - thing: Data Modeling + - thing: Dashboard Design + - thing: PowerPoint diff --git a/_data/skills.yml b/_data/skills.yml index b8b7900e7..57a6763ef 100644 --- a/_data/skills.yml +++ b/_data/skills.yml @@ -1,33 +1,30 @@ languages: - - item: JavaScript (ES6) - - item: TypeScript + - item: CSS - item: HTML - - item: CSS/Sass + - item: Java + - item: JavaScript - item: Python - item: SQL - - item: R + frameworks: - - item: Ember & Glimmer - - item: React - - item: Jekyll - - item: Node - - item: D3 + - item: Django - item: Wordpress - - item: Timber + tools: + - item: Adobe Suite - item: Bash - item: Git & Github - - item: Gulp & Grunt - item: Chrome DevTools - - item: Postman - - item: MongoDB + - item: MS365 + - item: Power BI + - item: Tableau + -design: - - item: Sketch - - item: InDesign - - item: InVision - - item: Prototyping - - item: Wireframing - - item: User Testing +project management: + - item: Agile + - item: Asana + - item: Lean + - item: Microsoft Project + - item: Scrum diff --git a/_includes/background.html b/_includes/background.html index a4e2da819..0090162f6 100644 --- a/_includes/background.html +++ b/_includes/background.html @@ -2,23 +2,27 @@
Background

- I'm currently an Engineer at - Upstatement building things for the web with some awesome people. I recently graduated from - Northeastern University after completing three awesome six-month co-ops at - MullenLowe U.S., - Starry, and - Apple Music. + I'm a recent graduate from + Thinkful's data analytics program where I developed the foundational skills of data science and programming. I graduated from + Humboldt State University with a degree in English and a focus on research writing and publishing as an editor of the + Toyon Literary Magazine. As a member of the workforce I rose to a position of leadership in the hospitality industry at the + Driskill Hotel, where I wrote and designed the menu to keep the + Driskill Bar up to the highest standards and leading industry trends.

- As a software engineer, I enjoy bridging the gap between engineering and design — combining my technical knowledge - with my keen eye for design to create a beautiful product. My goal is to always build applications that are scalable - and efficient under the hood while providing engaging, pixel-perfect user experiences. + Success in hospitality has motivated me to apply my talents to a new industry. My enthusiasm for research and design motivated me to develop marketable skills in Data Analytics. + I enjoy the process of absorbing and analyzing complex concepts and information to ucover insights that promote efficiency and growth. I am excited to embark on a new career path where + I can help organizations make the most out of their data. I am passionate about my education and professional development, and look forward to growing more as a data scientist and programmer.

- When I'm not in front of a computer screen, I'm probably snowboarding, cruising around on my penny board, - or crossing off another item on my bucket list. + In my free time, I'm making music, sifting through MLB stats, or solving the latest bouldering problem at the rock gym. +

+ +

+ I'd like to give credit and thanks to + Brittany Chiang for designing and sharing this fantastic portfolio site!

diff --git a/_includes/featured-projects.html b/_includes/featured-projects.html index 42517d0a0..014860273 100644 --- a/_includes/featured-projects.html +++ b/_includes/featured-projects.html @@ -1,56 +1,51 @@ diff --git a/_includes/head.html b/_includes/head.html index 0211f8587..eda432256 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -14,15 +14,15 @@ - + - - + + diff --git a/_includes/intro.html b/_includes/intro.html index 414859c43..7477740b9 100644 --- a/_includes/intro.html +++ b/_includes/intro.html @@ -4,15 +4,14 @@

Hello!

I'm - Brittany Chiang, a design-minded front-end software engineer focused on building beautiful interfaces & experiences - + Fred Randall, a data analyst with a passion for research & design.

Get in touch - brittany.chiang@gmail.com + fredrandall333@gmail.com

diff --git a/img/emojis/technologist.png b/img/emojis/technologist.png index 9863f1c8f..4488cf1de 100644 Binary files a/img/emojis/technologist.png and b/img/emojis/technologist.png differ diff --git a/img/headshot.jpg b/img/headshot.jpg deleted file mode 100755 index 6ed4d5196..000000000 Binary files a/img/headshot.jpg and /dev/null differ diff --git a/package-lock.json b/package-lock.json index 8cd908b9c..37601eff2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "brittanychiang.com", + "name": "fredrandall.com", "version": "0.0.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 3feb85551..098ee1aed 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,18 @@ { - "name": "brittanychiang.com", + "name": "fredrandall.com", "version": "0.0.0", "description": "Design-minded front-end software engineer focused on building beautiful interfaces and experiences", "repository": { "type": "git", - "url": "https://github.com/bchiang7/bchiang7.github.io" + "url": "https://github.com/bchiang7/AfredTX.github.io" }, - "homepage": "https://github.com/bchiang7/bchiang7.github.io", + "homepage": "https://github.com/bchiang7/AfredTX.github.io", "main": "gulpfile.js", "scripts": { "start": "gulp serve", "build": "gulp build" }, - "author": "Brittany Chiang", + "author": "Fred Randall", "license": "ISC", "devDependencies": { "@nuscout/eslint-config": "^0.2.1", diff --git a/resume.pdf b/resume.pdf deleted file mode 100644 index 2d19742b3..000000000 Binary files a/resume.pdf and /dev/null differ diff --git a/robots.txt b/robots.txt index ae4c803ec..f370b520b 100644 --- a/robots.txt +++ b/robots.txt @@ -1,3 +1,3 @@ User-agent: * Disallow: -Sitemap: https://bchiang7.github.io/sitemap.xml +Sitemap: https://AfredTX.github.io/sitemap.xml diff --git a/sitemap.xml b/sitemap.xml index 869fec5c0..65742b78e 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -7,7 +7,7 @@ - https://bchiang7.github.io/ + https://AfredTX.github.io/ 2017-10-12T00:07:11+00:00