Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
lassebomh committed Oct 13, 2022
1 parent cf512dd commit 51d531a
Show file tree
Hide file tree
Showing 27 changed files with 989 additions and 1,293 deletions.
24 changes: 23 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"svelte.svelte-vscode",
"voorjaar.windicss-intellisense",
"antfu.iconify"
]
}
6 changes: 0 additions & 6 deletions README.md

This file was deleted.

15 changes: 15 additions & 0 deletions TESTING_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

# Reduce drag


# Accuracy of a query

1. pick a result from a result source
2. write a "complete query" that mocks what the user would write if they had one chance to find the result. n is the length of the query
3. make n queries where the query string is a substring of the complete query from 1 to n-1.
4. the accuracy of the query is measured by the sum of the ratio between score of the top result and the target result, divided by n

Get results for a full and exact match

a query with the intent of finding the

35 changes: 22 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,32 @@
{
"name": "vite-template-solid",
"name": "lenked-extension",
"private": true,
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"license": "MIT",
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@types/chrome": "^0.0.197",
"@iconify/svelte": "^3.0.0",
"@sveltejs/vite-plugin-svelte": "^1.0.5",
"@tsconfig/svelte": "^3.0.0",
"@types/chrome": "^0.0.196",
"highlight.js": "^11.6.0",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0"
},
"dependencies": {
"solid-js": "^1.5.1"
"moment": "^2.29.4",
"svelte": "^3.49.0",
"svelte-check": "^2.8.1",
"svelte-chrome-storage": "^0.1.8",
"svelte-preprocess": "^4.10.7",
"svelte-spa-router": "^3.3.0",
"svelte-windicss-preprocess": "^4.2.8",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-windicss": "^1.8.8",
"windicss": "^3.5.6"
}
}
}
Loading

0 comments on commit 51d531a

Please sign in to comment.