I hereby claim:
- I am jb0gie on github.
- I am j_b0gie (https://keybase.io/j_b0gie) on keybase.
- I have a public key ASAcIngHjIQTTo8DGqifsQPgKRvTjTpMp-mkKi2e-8UVswo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
A quick cheatsheet of useful snippet for Flutter
A widget is the basic type of controller in Flutter Material.
There are two type of basic Widget we can extend our classes: StatefulWidget
or StatelessWidget
.
StatefulWidget are all the widget that interally have a dynamic value that can change during usage. It can receive an input value in the constructor or reference to functions. You need to create two classes like:
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
β did:3:bafyreigraflpq3ltvjuq727iwrumn24a7ilmguy3v6bhxnoohga7x5m7pq β | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
did:3:kjzl6cwe1jw148prwhj6hgt56f4c4pa7ab3qbsqgu86jvf1nkzbxpiefb5l1odq |
did:3:kjzl6cwe1jw148vyylmv0umnyjvdkzh1dcu1tww7rlf8ebk5w9jsljxrbjlpimo |
// WRITTEN BY LANMAOA THE ILLUSTRIOUS, praise jeeves. | |
const fs = require('fs'); | |
const { Configuration, OpenAIApi } = require("openai"); | |
const path = require('path'); | |
require('dotenv').config() | |
const tokens = require('gpt3-tokenizer').default | |
const tokenizer = new tokens({ type: 'gpt3' }); | |
const systemPrompt = "the prompt contains files, modify the source code in the input files, dont omit anything and respond only with all the modified files without comments in the following format: filename\nfilecontents\n\n"; |
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> | |
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/styles.css" | |
/> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script> | |
<div id="app" class="text-5xl">{{ message }}</div> |