class OrganizationMaterialVariantPriceForm(ModelForm):
def __init_subclass__(cls, **kwargs):
if cls.__name__ == OrganizationMaterialVariantPriceForm.__name__:
for color in Color.objects.all():
field_name = f'color_{color.slug}'
cls.declared_fields[field_name] = IntegerField(
label=color.name,
This file contains 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
FROM registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.10-3.3-0 | |
ARG PG_MAJOR=14 | |
ARG POSTGRESQL_SERVER_DEVEL=postgresql${PG_MAJOR}-devel | |
ARG PACKAGER=microdnf | |
USER 0 | |
ADD https://api.developers.crunchydata.com/downloads/repo/rpm-centos/postgresql14/crunchypg14.repo /etc/yum.repos.d/crunchypg14.repo | |
ADD https://api.developers.crunchydata.com/downloads/gpg/RPM-GPG-KEY-crunchydata-dev /etc/pki/rpm-gpg |
This file contains 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
{ | |
"data": { | |
"stations": [ | |
{ | |
"id": 77, | |
"title": "Radio Vocea Creștinilor", | |
"website": "https://radio.voceacrestinilor.com/", | |
"email": "[email protected]", | |
"station_streams": [ | |
{ |
Proverbe 1:1-7 "Proverbele lui Solomon [...] pentru a cunoaste intelepciunea [...] pentru a da [...] tanarului cunostinta si prudenta"
Obs. Am folosit traducerea NTLR pentru a fi mai usor de inteles.
Proverbe 1:1-7
1 Proverbele lui Solomon, fiul lui David, regele lui Israel, 2 pentru a cunoaşte înţelepciunea şi învăţătura, pentru a înţelege cuvintele cunoaşterii,
This file contains 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
{ | |
"data": { | |
"stations": [ | |
{ | |
"id": 54, | |
"order": 20, | |
"title": "RVE Viena", | |
"website": "https://www.rveviena.at/", | |
"stream_url": "https://s3.free-shoutcast.com/stream/18202/;stream.mp3" | |
}, |
This file contains 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
MINIO_ROOT_USER=dev | |
MINIO_ROOT_PASSWORD=dev-pass |
This information was extracted from Y Combinator Startup Directory
Download as XLSX
Download as JSON
This file contains 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
#cloud-config | |
"apt": | |
"sources": | |
"docker.list": | |
"keyid": "9DC858229FC7DD38854AE2D88D81803C0EBFCD88" | |
"source": "deb [arch=amd64] https://download.docker.com/linux/ubuntu $RELEASE | |
stable" | |
"package_update": true | |
"packages": | |
- qemu-guest-agent |
- setup the machine pool
-
you can download
jammy-server-cloudimg-amd64-disk-kvm image
from here: https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64-disk-kvm.img -
click "Show Advanced"
This file contains 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
const apiUrl = 'https://api.openai.com/v1/chat/completions'; | |
function CHATGPT(prompt, model, apiKey) { | |
if(!prompt || prompt === "") { | |
return "No prompt provided"; | |
} | |
if(!model || model === "") { | |
return "No model provided"; | |
} | |
if(!apiKey || apiKey === "" || apiKey === "XXXXXXXXXXXXXXXXXXXX") { |
NewerOlder