allow for full sorting, slice and dicing with all options in the UI, and the previous shortcuts. now have a lot more flexibility to slice and dice as desired

This commit is contained in:
Andrej Karpathy
2021-11-16 21:39:43 -08:00
parent abb83effed
commit 8be24dae43
4 changed files with 71 additions and 22 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const Paper = props => {
const subber = () => fetch("/sub/" + p.id + "/" + prompt("tag to subtract from this paper:"))
.then(response => console.log(response.text()));
const utags = p.utags.map((utxt, ix) => <UTag key={ix} tag={utxt} />);
const similar_url = "/?rank=tags&pid=" + p.id;
const similar_url = "/?rank=pid&pid=" + p.id;
return (
<div class='rel_paper'>
<div class="rel_score">{p.weight.toFixed(2)}</div>
+12
View File
@@ -124,3 +124,15 @@ body {
background-position: left center;
outline: 0;
}
#cbox {
margin-top: 5px;
font-size: 14px;
}
#cbox_fast {
font-size: 14px;
}
#cbox_fast a {
display: inline-block;
background-color: #eee;
padding: 3px;
}