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
| import React, { ReactNode, useEffect, useState } from 'react'; | |
| import { View } from 'react-native'; | |
| interface TabsProps { | |
| tabIndex: number; | |
| children: ReactNode[]; | |
| } | |
| export const Tabs: React.FC<TabsProps> = ({ tabIndex, children }) => { | |
| const [activeTab, setActiveTab] = useState(0); |
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
| import { ChatGPTAPI } from 'chatgpt'; | |
| import { NextApiRequest, NextApiResponse } from 'next'; | |
| import { notifyAdmin } from '../../../utils/twillio'; | |
| export type InputAI = {; | |
| variableA: string; | |
| variableB: string; | |
| variableC: string; | |
| }; |
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
| javascript:(function() { const a = document.createElement('a'); a.href = URL.createObjectURL(new Blob([document.querySelector('[class^="ThreadLayout__NodeWrapper"]').innerHTML.replace(/<img[^>]*>/g, '').replace(/<button[^>]*>.*?<\/button>/g, '').replace(/<svg[^>]*>.*?<\/svg>/g, '')], {type: 'text/html'})); a.download = 'chatGPT.html'; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(a.href); })() |
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' | |
| services: | |
| postgres: | |
| image: postgres:12 | |
| ports: | |
| - '5432:5432' | |
| environment: | |
| - POSTGRES_USER=postgres | |
| - POSTGRES_PASSWORD=postgres |
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
| import twilio from 'twilio'; | |
| var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console | |
| var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console | |
| export const twilioClient = twilio(accountSid, authToken, { | |
| accountSid, | |
| }); | |
| let aiden = '+61488700798'; |
NewerOlder