From 9246a4164dbf4f0d661c6ab2b8b440008deebc60 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson <93477693+innocuous-symmetry@users.noreply.github.com> Date: Mon, 29 May 2023 10:47:34 -0500 Subject: [PATCH] nuke --- .gitignore | 26 -- previous/README.md | 5 - previous/index.html | 16 -- previous/package.json | 27 -- previous/src/App.jsx | 33 --- .../src/components/AboutMe/AboutSection.jsx | 15 -- .../src/components/AboutMe/SectionData.jsx | 126 ---------- previous/src/components/Navbar.jsx | 95 ------- previous/src/components/ProjectsArray.jsx | 136 ---------- .../src/components/Technologies/MainTopic.jsx | 26 -- .../src/components/Technologies/SubTopic.jsx | 26 -- .../src/components/Technologies/techList.js | 104 -------- previous/src/favicon.svg | 15 -- previous/src/index.scss | 13 - previous/src/main.jsx | 10 - previous/src/media/GitHub-Mark-120px-plus.png | Bin 4268 -> 0 bytes previous/src/media/LI-In-Bug.png | Bin 8375 -> 0 bytes .../bandcamp-button-circle-line-black-128.png | Bin 3639 -> 0 bytes previous/src/media/modulars.jpeg | Bin 2206294 -> 0 bytes previous/src/media/paper_score.jpeg | Bin 910209 -> 0 bytes previous/src/media/profile.jpeg | Bin 278507 -> 0 bytes previous/src/media/soundcloud-icon.png | Bin 19357 -> 0 bytes previous/src/media/with_guitar.png | Bin 1817974 -> 0 bytes previous/src/pages/AboutMe.jsx | 14 -- previous/src/pages/CreativeWorks.jsx | 49 ---- previous/src/pages/Links.jsx | 23 -- previous/src/pages/Projects.jsx | 113 --------- previous/src/pages/Technologies.jsx | 23 -- previous/src/pages/Welcome.jsx | 35 --- previous/src/sass/App.scss | 30 --- previous/src/sass/Navbar.scss | 83 ------ previous/src/sass/components/_Button.scss | 15 -- previous/src/sass/components/_Divider.scss | 5 - previous/src/sass/components/_FadeAll.scss | 5 - previous/src/sass/components/_Page.scss | 11 - previous/src/sass/helper/_animations.scss | 8 - previous/src/sass/helper/_mixins.scss | 9 - previous/src/sass/helper/_queries.scss | 236 ------------------ previous/src/sass/helper/_variables.scss | 12 - previous/src/sass/pages/AboutMe.scss | 102 -------- previous/src/sass/pages/CreativeWorks.scss | 88 ------- previous/src/sass/pages/Links.scss | 53 ---- previous/src/sass/pages/Projects.scss | 72 ------ previous/src/sass/pages/Technologies.scss | 65 ----- previous/src/sass/pages/Welcome.scss | 52 ---- previous/vite.config.js | 7 - 46 files changed, 1783 deletions(-) delete mode 100644 .gitignore delete mode 100644 previous/README.md delete mode 100644 previous/index.html delete mode 100644 previous/package.json delete mode 100644 previous/src/App.jsx delete mode 100644 previous/src/components/AboutMe/AboutSection.jsx delete mode 100644 previous/src/components/AboutMe/SectionData.jsx delete mode 100644 previous/src/components/Navbar.jsx delete mode 100644 previous/src/components/ProjectsArray.jsx delete mode 100644 previous/src/components/Technologies/MainTopic.jsx delete mode 100644 previous/src/components/Technologies/SubTopic.jsx delete mode 100644 previous/src/components/Technologies/techList.js delete mode 100644 previous/src/favicon.svg delete mode 100644 previous/src/index.scss delete mode 100644 previous/src/main.jsx delete mode 100644 previous/src/media/GitHub-Mark-120px-plus.png delete mode 100644 previous/src/media/LI-In-Bug.png delete mode 100644 previous/src/media/bandcamp-button-circle-line-black-128.png delete mode 100644 previous/src/media/modulars.jpeg delete mode 100644 previous/src/media/paper_score.jpeg delete mode 100644 previous/src/media/profile.jpeg delete mode 100644 previous/src/media/soundcloud-icon.png delete mode 100644 previous/src/media/with_guitar.png delete mode 100644 previous/src/pages/AboutMe.jsx delete mode 100644 previous/src/pages/CreativeWorks.jsx delete mode 100644 previous/src/pages/Links.jsx delete mode 100644 previous/src/pages/Projects.jsx delete mode 100644 previous/src/pages/Technologies.jsx delete mode 100644 previous/src/pages/Welcome.jsx delete mode 100644 previous/src/sass/App.scss delete mode 100644 previous/src/sass/Navbar.scss delete mode 100644 previous/src/sass/components/_Button.scss delete mode 100644 previous/src/sass/components/_Divider.scss delete mode 100644 previous/src/sass/components/_FadeAll.scss delete mode 100644 previous/src/sass/components/_Page.scss delete mode 100644 previous/src/sass/helper/_animations.scss delete mode 100644 previous/src/sass/helper/_mixins.scss delete mode 100644 previous/src/sass/helper/_queries.scss delete mode 100644 previous/src/sass/helper/_variables.scss delete mode 100644 previous/src/sass/pages/AboutMe.scss delete mode 100644 previous/src/sass/pages/CreativeWorks.scss delete mode 100644 previous/src/sass/pages/Links.scss delete mode 100644 previous/src/sass/pages/Projects.scss delete mode 100644 previous/src/sass/pages/Technologies.scss delete mode 100644 previous/src/sass/pages/Welcome.scss delete mode 100644 previous/vite.config.js diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 169056a..0000000 --- a/.gitignore +++ /dev/null @@ -1,26 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local -package-lock.json - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? -node_modules diff --git a/previous/README.md b/previous/README.md deleted file mode 100644 index 39ddc34..0000000 --- a/previous/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Mikayla Dobson, Web Developer, Software Engineer, Musician - -Thanks for checking out my portfolio site! This repo has been migrated over from an [older version](https://github.com/innocuous-symmetry/about-mikayla) which is no longer being maintained. This version will stay up to date with my latest projects and experience! - -Created using React, Sass, Material UI, and Vite. Hosted with Github pages. \ No newline at end of file diff --git a/previous/index.html b/previous/index.html deleted file mode 100644 index bc48649..0000000 --- a/previous/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - -
- - - - - - -I have experience building web applications with and without back-end integrations.
-I am comfortable conceptualizing and organizing complex structures, and as such, my projects tend to be - natural in their structure and easy to maintain.
-I have consulted on small teams with:
-Dization, a Pittsburgh-based company developing an enterprise resource planning solution for small businesses
-Metazu Studio, a Nashville-based startup connecting clients with services in video production, AR/VR, social media, photography, and web design.
-My work on these projects deals with managing the complexities of full-stack web engineering, as well as delivering beautiful user experiences to end customers.
-- My background as a musician, composer, producer, and artistic - collaborator provide me with a unique frame of reference for solving technical - problems and adapting to dynamic environments. -
-My projects have featured both relational and non-relational databases, in particular - PostgreSQL and MongoDB. I also have experience with various methods of connecting these - to front-end applications.
-Concentrations: Piano Performance, Music Composition, Music Theory
-Minor: French Language and Culture
-Codecademy Pro, Front End Engineer Career Path
-Concentrations: React, Redux, Express, PostgreSQL
-Relevant Duties: contributing to the development of a full-stack enterprise resource planning application built using - the LAMP stack hosted on AWS.
-Relevant Duties: collaboration on the design and production of responsive web apps, using skills including:
-- Multi-instrumentalist, singer-songwriter, and producer, well-versed in a number of musical idioms - and music technologies. -
-- Relevant Duties: collaboration, problem-solving, streamlined execution of a process, - attention to detail, adhering to standardized safety protocols, observing best practices, training new hires. -
-A sample, fully-featured e-commerce platform
-Built in React with TypeScript, Node/Express, and PostgreSQL
-Payment processing supported through Stripe (in progress)
-API documentation with Swagger
-IN PROGRESS
-An experimental space for building out procedural music generation using vanilla JavaScript
-Uses Tone.js to interact with the Web Audio API
-Features a plain HTML/CSS front end to interact with the program
-A read-only Reddit client -- this site fetches data from Reddit and displays a curated feed.
-This was built on Reddit's JSON API, using React/Redux and CSS.
-And yes, it's all cats.
-A small-scale timestamp/productivity management tool for individual use and logging of - time, including compartmentalization by task and some aggregate functions based on queries. -
-Command-line interface built on Python with a SQLite Database.
- View the repo here! -As part of a mentorship program hosted by Metazu Studio
-Implemented using MongoDB, React, and Node/Express, styled with Material UI/SCSS.
-In progress, building in collaboration with others at Metazu Studio.
-A clone of a popular card-based resource gathering game
-Local multiplayer, with plans to build out online multiplayer and solo vs. CPU
-In progress. Using React, Node/Express, and PostgreSQL.
-Manage a collection of your own commonly-used recipes
-Features a full user-auth workflow and enables the sharing of recipes between users
-Allows the user to build shopping lists from collections of their recipes
-Built using full end-to-end TypeScript for the React front end and the Express server
-A tool written in Python for sorting photos based on the output of VGG16, the pre-trained image recognition model included with TensorFlow.
-The user may also integrate the results of their photo sort into a PostgreSQL database.
-The repository may be found here!
-This site is built using React, Material UI, and SCSS, and is hosted with Netlify.
- View the site repo here! -In progress!
- } - }) - }, []); - - return ( -lULZtOeo`bZ1#ZN^#zrqPf|5ut>kSB^}r6y%&kw|255kw=L
zAq)`S5$1`A5H1j|6DWibLKGpIkVr@+WD(K{=7c;#8DS%#m@t7h5$J@^$beu(&?UGL
z{2^u#VI{$nU`CK3ND^Am6cV6zRE_SSo9G4_LKA2V^`T)1??*z^gmekFAdM4*n}lk@
zI>HEHnaDUn0a+jgI22)MokjYD^#lf_+(+mnC=#3r7{L*lAai7g!jTHfLD!KlGKA{4
zK`Gd1D{3UT!SBY%2t`06CZdIeL}(~wh}D5=K^4uSwa5h-z&8@ouR|e(^B{SnAXEXd
z8K@BA7(jYvaD^s1j^3b`XfMh{jp!o!hK``CXbm);4&;en!$oEUW5Of!9wiX;L<~jV
z6PAjUKny+T1Z(7m@{xehPG}+I6Osrn1bM<=P$N1b!S6cA3dul8lTbX=#sCgIIE)Yx
zQJ|X^!XR7;gG?F*g)&lu)GW{{$k7r=gF&_oEr+2X3X&9(gtW9ECv^gma06{bvGD5>
zD7z?dIg*3xS3*sb(KV>yEtn8ehy{P^!>?j6L}ejIMWlgT(E*f!9-+nfnE(C}!DkZw
z`FZ~F7ZO?ebF@4FwK;d*`~?fw#;4K~GS{xBr>=_&%}Pp(%Z#C?#;uKGF=Grd-6gbwRkyCHO*W$ld6EeY!^gq}oM&mc5@$u=3^i`fdq
z1qj(FNQ#PA*;q@AE5EgIl6Xp-YvV3)**?T(wZvYZn>MZzMUh@MHWI<9eKtlCh6MpO
zN)mIc?%6CAf70k<{g3#`w#(M9#p}W>Qs`qoFwBwzIOMJi+z$n3d+L6&93)gq>R!V+WFI(ZQ}^a1Aos3Ao^AeiN^pfr
zDIA7MDI%h^1xj#%T3qBU20po{Lm8Zn#n<$RfUhjUCloulcLEbatAMG=-jIdhY%ES~
z=!5Kg2007%r8spL)VSi*GqN-NJg~*!jwKk&0e2K{(-s0>aDmTh{2&I7d1IimA+TCc
z6S!;%jz$x{2Nm#P7$~=iE4dZ2Fa)w82C^5F)x
0(fS>{J=TbPNkl9*JQ2JzeM1c^Eh&vhO>MUCrKV$zP#X99oH*_*Is?
zu)!U{_HePOH=EY!K!fS5>a)PJcDa}iw7BbDux^LUAKGvDzA5gXy~ipw(_eCQ-d(@d
z_cGtRYK2~0E>*XhZoVL`7|+D