diff --git a/src/app/projects/project.service.ts b/src/app/projects/project.service.ts index 38015a8..08ba939 100644 --- a/src/app/projects/project.service.ts +++ b/src/app/projects/project.service.ts @@ -9,6 +9,20 @@ const projects = [ description: 'Movies is an Android application for viewing movie and TV show info using the TMDB API. Movies is a Single Activity application, leveraging Model-View-View Model, Dagger 2, RxJava and SimpleStack for navigation. There is a focus on caching and a pleasant user experience even on slower networks by combining both in-memory and disk caching for quick load times, especially after a show details have been viewed.', imgLocation: '' }, + { + title: 'G Music Migrator', + applicationType: 'Python script', + // tslint:disable-next-line:max-line-length + description: 'G Music Migrator is a Python script to export your playlists from Google Play Music and then import them to Spotify. Using the Spotify and Play Music APIs the script would semi-automatically search for each song and prompt the user to select which option to chose if the choice was ambiguous.', + imgLocation: '' + }, + { + title: 'Rack', + applicationType: 'Rust application', + // tslint:disable-next-line:max-line-length + description: 'Rack is a bare bones cli search tool, like grep or ack. Rack was a simple project to learn about Rust and its borrow checker. Rust proved to be fun to work in, with great language features while still being low level and insanely quick!', + imgLocation: '' + }, { title: 'Secure Notes', applicationType: 'Android Application (Kotlin)', @@ -16,7 +30,7 @@ const projects = [ description: 'Secure Notes is a simple note taking application with security in mind. There is a focus on clean' + ' code, Model-View-View Model and loosely coupled components. I built this app to experiment with different' + ' Android database libraries (Realm and Room), encryption and security, as well as a single Activity approach to' + - ' an Android app. (Under development).', + ' an Android app.', imgLocation: '../../assets/note-icon.png' }, {