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
import { memo } from 'react'; | |
import { StyleSheet, TextInput, TextInputProps } from 'react-native'; | |
import { View } from 'react-native-animatable'; | |
import { useController, useFormContext, UseFormStateReturn, FieldValues, Control, Controller } from 'react-hook-form'; | |
import { CustomLabel } from './CustomLabel'; | |
interface IInput extends TextInputProps { | |
label: string; | |
name: string; |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"os" | |
"github.com/xuri/excelize/v2" | |
"gorm.io/driver/postgres" |
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
// Import the necessary libraries | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const openai = require('openai'); | |
const axios = require('axios'); | |
// Configure the OpenAI library | |
openai.apiKey = 'your-openai-api-key'; | |
// Create an Express application object |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
apt-get install -y ssh xclip | |
ssh-keygen -f $HOME/.ssh/id_rsa -P "" | |
cat ~/.ssh/id_rsa.pub | xclip -sel clip |