Skip to content

Instantly share code, notes, and snippets.

graphql(
`
{
allMarkdownRemark(limit: 10000) {
edges {
node {
fields
}
}
}
Thanks to Noun Project for several icons used in this app:
array by Thesaurustool from the Noun Project
Sagittarius Cat by Denis Sazhin from the Noun Project
memory card by ProSymbols from the Noun Project
Bynary Tree by H Alberto Gongora from the Noun Project
https by Creative Stall from the Noun Project
anaconda by parkjisun from the Noun Project
Artificial Intelligence by Phil Smith from the Noun Project
database left by Knut M. Synstad from the Noun Project
@abi
abi / server.js
Last active July 12, 2018 16:35
Exponential backoff test server
const http = require('http')
const port = 3000
let count = 0;
const requestHandler = (request, response) => {
console.log(request.url)
count++;

Privacy Policy

The Raja Group LLC built the Dough Recipes app as a Free app. This SERVICE is provided by The Raja Group LLC at no cost and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. we will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Dough Recipes unless otherwise defined in this Privacy Policy.

const SECRET_KEY = ENTER YOUR SECRET KEY HERE;
const MAX_TOKENS = 200;
// For more cool AI snippets and demos, follow me on Twitter: https://twitter.com/_abi_
/**
* Completes your prompt with GPT-3
*
* @param {string} prompt Prompt
* @param {number} temperature (Optional) Temperature. 1 is super creative while 0 is very exact and precise. Defaults to 0.4.