- https://daisyui.com/
- https://tailblocks.cc/
- https://github.com/mertJF/tailblocks
- https://www.tailwind-kit.com/
- https://github.com/Charlie85270/tail-kit
- https://kitwind.io/products/kometa/
- https://github.com/coltor-apps/kitwind
- https://tailwindcomponents.com/
- https://github.com/tailwindcomponents
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
const languageList = [ | |
{ name: 'English', short: 'en' }, | |
{ name: 'Türkçe', short: 'tr' }, | |
{ name: 'Arapça', short: 'ar' }, | |
]; | |
<Controller | |
control={control} | |
name="language" | |
defaultValue={{ name: 'English', short: 'en' }} |
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 libraries | |
import pandas as pd | |
import seaborn as sns | |
import flair | |
# configure size of heatmap | |
sns.set(rc={'figure.figsize':(35,3)}) | |
# function to visualize | |
def visualise_sentiments(data): |
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
# server blocks for incoming HTTP requests | |
# https://stackoverflow.com/questions/64955127/nginx-multiple-node-apps-with-multiple-subdomains | |
# https://stackoverflow.com/questions/5009324/node-js-nginx-what-now?noredirect=1&lq=1 | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name emirasgroup.com www.emirasgroup.com; | |
# redirect any HTTP request to HTTPS | |
return 301 https://$http_host$request_uri; | |
} |
const schema = yup.object().shape({
name: yup.string().required('Bu alan zorunludur'),
email: yup.string('Doğru bir email format değildir').email().required('Bu alan zorunludur'),
phone: yup
.number('Doğru bir telefon numara format değildir')
.positive()
.transform((v, o) => (o === '' ? null : v))
.nullable()
.required('Bu alan zorunludur'),
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
<!-- | |
This example requires Tailwind CSS v2.0+ | |
This example requires some changes to your config: | |
``` | |
// tailwind.config.js | |
const colors = require('tailwindcss/colors') | |
module.exports = { |
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
https://iconscout.com/illustrations/ | |
https://www.manypixels.co/gallery/ | |
https://isometric.online/ | |
https://www.opendoodles.com/ | |
https://www.glazestock.com/ | |
https://fresh-folk.com/ | |
https://mixkit.co/ | |
http://drawkit.io/ |
Follow this: https://flutter.dev/docs/get-started/install/linux
Enable USB debugging.
sudo apt install adb
use flutter devices
to check if your device is connected. If it says insuffieicient permission, use the following command