pinned projects

This commit is contained in:
simon 2019-09-01 11:25:56 -04:00
parent 24fd65bf32
commit 2ed72f2710
3 changed files with 45 additions and 35 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
.DS_Store
node_modules/
/dist/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

View File

@ -18,8 +18,47 @@
:techs="['Java', 'Pixi.js', 'Typescript', 'MongoDB', 'x86-16 ASM']"
:links="[{github: 'https://github.com/simon987/Much-Assembly-Required'}, {website:'https://muchassemblyrequired.com'}]"
media="/static/cubot.png"
featured
/>
<Project
name="task_tracker"
date="[2019-02]"
description="Fast task tracker (job queue) with authentication, statistics and web frontend"
:techs="['Go', 'PostgreSQL', 'Angular', 'Test-Driven']"
:links="[{github: 'https://github.com/simon987/task_tracker'}, {demo:'https://tt.simon987.net'}]"
media="/static/tt.png"
featured
/>
<Project
name="Music graph (API & UI)"
date="[2019-04]"
description="Massive Web scraping project that attempts to aggregate raw information from
Musicbrainz, Last.fm, Spotify and Cover Art Archive to generate an interactive map of music-related data.
Uses a graph-database as its core and allows subsecond searching through tens of millions of relationships
with its mobile-friendly interface"
:techs="['D3.js', 'Graph Database', 'Vue.js', 'Python', 'Bash', 'Java']"
:links="[{'github (ui)': 'https://github.com/simon987/music-graph-ui'}, {'github (api)': 'https://github.com/simon987/music-graph-api'}, {website: 'https://mg.simon987.net'}]"
media="/static/mg.png"
featured
/>
<Project
name="irarchives"
date="[2019-05]"
description="Large scale reverse image and video search for reddit.
This project is a massive rewrite & refactor of the now defunct i.rarchives.com website.
It uses a combination of real-time ingesting using reddit_feed and historical
archival from Pushshift. Several optimizations have been implemented to allow parametrised
image and video search possible among its large dataset (See pg_hamming)."
:techs="['Python', 'PostgreSQL', 'Javascript']"
:links="[{'github': 'https://github.com/simon987/irarchives'}]"
media="/static/irar.png"
featured
/>
<Project
name="Simple Incremental Search Tool"
date="[2018-01]"
@ -47,15 +86,6 @@
media="/static/oddb.png"
/>
<Project
name="task_tracker"
date="[2019-02]"
description="Fast task tracker (job queue) with authentication, statistics and web frontend"
:techs="['Go', 'PostgreSQL', 'Angular', 'Test-Driven']"
:links="[{github: 'https://github.com/simon987/task_tracker'}, {demo:'https://tt.simon987.net'}]"
media="/static/tt.png"
/>
<Project
name="task_tracker_drone"
date="[2019-03]"
@ -74,18 +104,6 @@
media="/static/go.png"
/>
<Project
name="Music graph (API & UI)"
date="[2019-04]"
description="Massive Web scraping project that attempts to aggregate raw information from
Musicbrainz, Last.fm, Spotify and Cover Art Archive to generate an interactive map of music-related data.
Uses a graph-database as its core and allows subsecond searching through tens of millions of relationships
with its mobile-friendly interface"
:techs="['D3.js', 'Graph Database', 'Vue.js', 'Python', 'Bash', 'Java']"
:links="[{'github (ui)': 'https://github.com/simon987/music-graph-ui'}, {'github (api)': 'https://github.com/simon987/music-graph-api'}, {website: 'https://mg.simon987.net'}]"
media="/static/mg.png"
/>
<Project
name="DataArchivist.net"
date="[2019-04]"
@ -104,19 +122,6 @@
media="/static/net.png"
/>
<Project
name="irarchives"
date="[2019-05]"
description="Large scale reverse image and video search for reddit.
This project is a massive rewrite & refactor of the now defunct i.rarchives.com website.
It uses a combination of real-time ingesting using reddit_feed and historical
archival from Pushshift. Several optimizations have been implemented to allow parametrised
image and video search possible among its large dataset (See pg_hamming)."
:techs="['Python', 'PostgreSQL', 'Javascript']"
:links="[{'github': 'https://github.com/simon987/irarchives'}]"
media="/static/irar.png"
/>
<Project
name="Architeuthis"
date="[2019-05]"

View File

@ -4,6 +4,7 @@
<md-card-header-text>
<div class="md-title">
<md-icon v-if="this.fork" md-src="/static/fork.svg"></md-icon>
<md-icon v-if="this.featured">star</md-icon>
{{this.name}}
<TechChip :name="tech" :key="tech" v-for="tech in this.techs"/>
</div>
@ -45,6 +46,10 @@ export default {
fork: {
default: false,
type: Boolean
},
featured: {
default: false,
type: Boolean
}
}
}