Each encounter I’ve had with Lao Tzu has pointed me to something new. Almost as if the book changes with every reading. I first picked up Stephen Mitchell’s translation 40 years ago at the Bodhi Tree bookstore in Los Angeles and my life has never been quite the same. — Rick Rubin
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
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "ProfitWell API v2", | |
"version": "v2", | |
"description": "The ProfitWell APIs allow you to get the most out of your account by programmatically adding and retrieving data.\n(Note: If you are looking for the v1 docs, you can find them [here](https://profitwell.com/docs/api/v1/))\n\n**Authentication**\nAuthentication is done via an API token that you can find by clicking the ProfitWell API data connection card in the Account Settings -> Integrations tab of your ProfitWell account. This token is unique to your company and should be kept secret.\nTo authenticate, set an `Authorization` request header equal to the value of your token on each request. Invalid or missing tokens will return a 401 Unauthorized response.\n- Your **private token** is required for all ProfitWell API endpoints except for the Customer Events endpoint.\n- Your **public token** is required for the Customer Events API endpoint, as well as authentication with the Profitwell.js script.\n\n**R |
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
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Tapfiliate REST API", | |
"version": "1.6", | |
"description": "A comprehensive reference guide to the Tapfiliate REST API. The API is based around REST, has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. JSON is returned by all API responses, including errors. All API requests must be made over HTTPS." | |
}, | |
"servers": [ | |
{ | |
"url": "https://api.tapfiliate.com/1.6", |
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
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
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
- I need your answer to be precise, it’s crucial you get them right, I am counting on you! | |
- You always think step by step, break down the problem into intermediate steps and communicate to the user which steps you took in order to answer their query | |
- If you think you need to execute more steps in order to answer the query, ask the user for confirmation and run more steps | |
- Always provide a detailed explanation for your response, including the underlying reasoning and any relevant sources to support your answer. | |
Use this format to answer: | |
``` | |
**Answer**: {answer} | |
**Internal monologue**: {why you answered this way, how you broke down the problem in steps and your train of thought} | |
**What other questions you might ask**: {what kind of followup questions you expect from me? What did I miss?} | |
**Sources**: * {source1} {confidence score about source1, 1 to 10} * {source2} {confidence score about source2, 1 to 10} * {...} |
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
version: '3.7' | |
services: | |
dockerregistrymirror: | |
container_name: docker-registry-mirror | |
image: registry:2 | |
ports: | |
- "443:443" | |
volumes: | |
- ./data/docker/var/lib/registry:/var/lib/registry | |
- ./data/certs:/certs |
The following settings are provided as an example how longhorn should be configured in a production cluster, especially if it is deployed on Hetzner Cloud infrastructure.
Hetzner server nodes provide local storage and allow up to five attached volumes (with a size of up to 10TiB each) Local storage is provided by NVMe storage and therefore is much faster than the attached volumes, but limited in size (max 300GiB usable).
Also you want to control the nodes that are used for storage. So it is suggested to set the option Create default disk only on labeled node
to 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
if ( typeof(jQuery) === 'function' ) { | |
jQuery(document).ready(function($) { | |
jQuery.fn.extend({ | |
getPath: function() { | |
var path, node = this; | |
while (node.length) { | |
var realNode = node[0], | |
name = realNode.localName; | |
if (!name) break; | |
name = name.toLowerCase(); |
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
**As a developer you have complete control over the signup and signin functionality...** | |
```shell | |
$ surreal sql --conn http://localhost:8000 --user root --pass root --ns test --db test | |
``` | |
```sql | |
-- optional : this is the default see --ns test --db test start server flags | |
-- USE NS test DB test; |
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
1/ Install nfs-utils | |
sudo dnf install nfs-utils | |
2/ Enable the needed services | |
sudo systemctl enable rpcbind | |
sudo systemctl enable nfs-server | |
sudo service rpcbind start | |
sudo service nfs-server start |
NewerOlder