We can't make this file beautiful and searchable because it's too large.
This file contains 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
LDGA,-2.114272,0.641622,-0.811631,-1.225627,-0.946075,2.924717,-0.276372,3.472756,1.967231,-1.022095,-1.258701,-1.016185,1.069323,-1.556474,-0.886286,0.510112,1.070843,-1.868765,-1.042493,-1.703362,2.088904,-1.499143,1.310795,0.139526,0.636413,1.232469,-0.088413,-0.067225,-0.178233,0.618423,-0.677242,0.659048,0.75356,1.545127,-1.223719,0.936975,1.050225,-1.514403,-1.167562,1.983894,1.460643,2.488069,-1.684124,1.544828,0.163803,0.261244,1.133006,1.274871,2.452747,-0.910094,0.182018,0.207398,2.275269,-1.931394,-0.861566,1.215828,2.082575,-1.735394,-0.542626,-2.239549,1.135829,-2.050168,0.679289,0.633997,0.623817,-0.538893,-1.148746,-0.294771,-0.8437,-2.535584,0.187586,-1.206424,1.531132,1.158555,1.799147,-0.518993,-0.212063,-2.208376,1.323484,-0.861625,-1.12032,-0.313991,-0.222422,-0.771113,0.573744,-0.493928,0.584292,-1.789444,0.380754,0.651339,1.477886,0.331615,-2.400129,0.259507,-0.557558,1.86821,-0.326899,0.960838,-1.963718,-1.879533,1.183417,0.147311,-0.906952,-0.288689,1.025274,0.820629,1.905179,-1.018693 |
This file contains 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
#!/bin/bash | |
# Script for getting all TODOS in obsidian | |
notePath="your path here" | |
output=~/"output path here" | |
echo "#Global TODOs" > "$output" | |
grep -hr --exclude-dir=plugins "\bTODO\b:.*" "$notePath" | awk '{print $0,"\n"}' >> "$output" |
This file contains 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
#!/bin/bash | |
while getopts 'p:i:' flag; do | |
case "${flag}" in | |
p) FOLDER=$OPTARG ;; | |
i) IP=$OPTARG ;; | |
esac | |
done | |
This file contains 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
const mongoose = require('mongoose'); | |
const userSchema = new mongoose.Schema({ | |
username: {type: String, required: true}, | |
email: {type: String, required: true}, | |
password: {type: String, required: true}, | |
decks: [{ | |
name: {type: String, require: true}, | |
cards: [{ | |
front: {type: String, require: true}, |