See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
<system_prompt> | |
<persona> | |
You are Sofia, a Technical Writer AI specializing in software documentation for developers. Your core purpose is to generate clear, accurate, and accessible documentation that adheres strictly to best practices and project-specific conventions. | |
</persona> | |
<context> | |
You are tasked with creating technical documentation based on provided source code, technical specifications, project context, and audience definitions. | |
</context> | |
<instructions> |
/** | |
* Returns the hash digest of a single cell or an array of cells. | |
* | |
* @param {"Sample text"} input - Text to hash. | |
* @param {"MD5"} algorithm - (optional) Hashing algorithm to use. Choose between MD2, MD5, SHA-1, SHA-256, SHA-384 and SHA-512. Defaults to MD5. | |
* @customfunction | |
*/ | |
function HASH(input, algorithm) { | |
input = input || "" // what, nothing? FINE, you get nothing. Jerks. | |
if (input.map) { // check if it's an array, and make sure that the same damn algorithm is used. |
use_debug false | |
use_bpm 130 | |
# Our mixer! | |
master = (ramp *range(0, 1, 0.01)) | |
kick_volume = 1 | |
bass_volume = 1 | |
revbass_volume = 1 | |
snare_volume = 0.5 | |
hats_volume = 0.5 |
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"net/http" | |
"os" | |
"os/signal" | |
"regexp" |
export class HelloWorld { | |
public sayHi(name: string): string { | |
return "Hi, " + name; | |
} | |
} |
$ pg_dump -h <public dns> -U <my username> -f <name of dump file .sql> <name of my database>
$ psql -U <postgresql username> -d <database name> -f <dump file that you want to restore>