- Issue: JabRef/jabref#7340
- Draft PR (Internal): https://github.com/yogeshvar/jabref/pull/2, https://github.com/yogeshvar/jabref/pull/1
JabRef/jabref#8733
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
import boto3 | |
from langchain.vectorstores import Chroma | |
from langchain.text_splitter import RecursiveCharacterTextSplitter | |
from langchain.vectorstores import FAISS | |
from langchain.docstore.document import Document | |
from langchain.embeddings.base import Embeddings | |
import numpy as np | |
textract = boto3.client("textract") | |
s3_bucket = "your-s3-bucket" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"editor.inlineSuggest.enabled": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.fontLigatures": true, | |
"editor.cursorStyle": "line-thin", | |
"editor.parameterHints.enabled": false, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.accessibilityPageSize": 100, | |
"editor.bracketPairColorization.independentColorPoolPerBracketType": true, |
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
source $VIMRUNTIME/defaults.vim | |
set rtp+=~/.fzf | |
set noerrorbells | |
set shiftwidth=4 | |
set expandtab | |
set smartindent | |
set nowrap | |
set smartcase | |
set undofile | |
set cursorline |
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
// Now pass-by-reference | |
let c = { language: "Javascript" } | |
let d = c | |
console.log(c) // => {language: "Javascript"} | |
console.log(d) // => {language: "Javascript"} | |
// Let's mutate our object 'd' | |
d.language = "Ruby" |
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
# Usage: source ~/.zshrc m1 | |
if [[ $1 = "m1" ]]; then | |
pkg=miniforge3 | |
else | |
# default is miniconda3 | |
pkg=miniconda3 | |
fi | |
echo "Using $pkg" |
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
from collections import Counter | |
import re | |
with open('test.txt') as f_input: | |
text = f_input.read().lower() | |
words = re.findall(r'\b(\w+)\b', text) | |
word_counts = Counter(w for w in words if len(w) == 20) | |
sumCount = 0 | |
for word, count in word_counts.items(): |
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
- HTML CSS JS (Any Frontend Language) | |
- Node js (PHP, ASP, .NET, C#, C++, Any Server Side Language) | |
- DB (SQL, Mongo) |
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
fetch(`http://localhost:3000`) | |
.then(result => result.json()) | |
.then(response => console.log(response)) | |
async function postData(url, data) { | |
const response = await fetch(url, { | |
method: 'POST', | |
body: JSON.stringify(data) |
NewerOlder