- Notifications
You must be signed in to change notification settings - Fork2.1k
Change look#385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
philipp-eisen wants to merge27 commits intovuejs:masterChoose a base branch fromnilpath:change-look
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Open
Change look#385
Changes fromall commits
Commits
Show all changes
27 commits Select commitHold shift + click to select a range
a800617
Load and display similar stories
nilpathda15593
link to similar posts
nilpathc4c2309
batch fetch similar queries
nilpathb04651b
redesign similar posts
nilpath0cedd8f
adjust color stops
nilpath22060e7
fetch similar posts and not only the score
nilpath0333fd6
Add Dockerfile
philipp-eisen28d0a9b
Change page titles to Nostalgia HN
111e6fa
Add footer with credits
269e7d1
Add shadow to top of footer
35f210b
Fix footer line
8e6935a
Add star ranking to similar items (#2)
philipp-eisenae143ee
Some redesign
8cb67ac
WIP add collabsible element
b1bcf37
More touches on the redesign
4a7d69f
Fix typo. And no link to blog post
8d7ab4d
Smaller size to fit in one line
b9f0087
Add arrows to better understand accordion
156e436
Add temporary link to blog post
53fce6b
Don't write item type for non-stories
05bcff8
White spaces where there should be
60a6ff3
Add subtitle
af509a9
Change look of subtitle
571c079
Rename and link to webpage when clicking on title
787ea5b
Don't break in middle of cta
63699d8
cta closer to title
9d202f9
Don't spin if there are no comments
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
3 changes: 3 additions & 0 deletions.dockerignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist/ | ||
.vscode/ | ||
node_modules/ |
7 changes: 7 additions & 0 deletionsDockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM node:13.10.1-buster | ||
COPY . /app/src | ||
WORKDIR /app/src | ||
RUN npm i && \ | ||
npm run build | ||
CMD ["npm", "run", "start"] |
56 changes: 28 additions & 28 deletionsmanifest.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{ | ||
"name": "HN Time-Machine", | ||
"short_name": "HN ⏳", | ||
"icons": [{ | ||
"src": "/public/logo-120.png", | ||
"sizes": "120x120", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-144.png", | ||
"sizes": "144x144", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-152.png", | ||
"sizes": "152x152", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-256.png", | ||
"sizes": "256x256", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-384.png", | ||
"sizes": "384x384", | ||
"type": "image/png" | ||
}, { | ||
"src": "/public/logo-512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
}], | ||
"start_url": "/", | ||
"background_color": "#f2f3f5", | ||
"display": "standalone", | ||
"theme_color": "#f60" | ||
} |
6 changes: 5 additions & 1 deletionpackage.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Binary file modifiedpublic/logo-120.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-144.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-152.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-192.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-256.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-384.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-48.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modifiedpublic/logo-512.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletionsserver.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
196 changes: 113 additions & 83 deletionssrc/App.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletionssrc/api/create-api-client.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletionssrc/api/create-api-server.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.