All requests must include an API token in the Authorization header:
Authorization: Bearer kasd983jajh
// search returns array of matching docs ranked by tf-idf score | |
// aka term frequency * inverse document frequency | |
// | |
// tf = # of occurences of term in document / # of words in document | |
// idf = log ( # of documents / # of documents with term ) | |
// tf-idf = tf * idf | |
// multi-term tf-idf = sum of tf-idf scores (per document) | |
type Doc = string |
import create, { GetFunction, SetFunction } from 'zustand' | |
export type MyStore = { | |
flag?: boolean | |
actions: MyActions | |
} | |
class MyActions { |
- Check meta | |
http://www.heymeta.com/url/cryptagon.io | |
Add analytics |
export const extra = [ | |
{ | |
title: 'Home Assessment', | |
description: `First you will fill out an assessment that illuminates what life in the 21st century is for you, your family and home to make sure you understand what is causing the overwhelm and stress in your home life`, | |
formats: [ | |
`Worksheet`, | |
`1 hour of my help at your home`, | |
`1 hour of my help at your home`, | |
], | |
}, |
Verifying my Blockstack ID is secured with the address 1EtceTigT7sGEk2ZWxgcF1eU8KRcMTJW1c https://explorer.blockstack.org/address/1EtceTigT7sGEk2ZWxgcF1eU8KRcMTJW1c |
Verifying my Blockstack ID is secured with the address 1EtceTigT7sGEk2ZWxgcF1eU8KRcMTJW1c https://explorer.blockstack.org/address/1EtceTigT7sGEk2ZWxgcF1eU8KRcMTJW1c |
javascript:(function(){ | |
tbody = $('#currencies_wrapper').find('tbody'); | |
tbody.children() | |
.each( function(index, item){ | |
if( index >= 20 ) | |
item.remove(); | |
}); |
sudo npm install -g grunt-cli react-native firebase-tools n |
javascript:(function(){ | |
$('.cards__item').each( function( item ){ | |
console.log('item', $(this) ); | |
var disccountStr = $(this).find('.pct-off').text(); | |
var disccount = parseInt( disccountStr.substring(5, disccountStr.length-1) ); | |
if( disccount < 50 ){ | |
$(this).remove(); | |
} |