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
| /* Varsayılan dili Türkçe (tr-TR) yap */ | |
| UPDATE configuration SET value = 'tr-TR' WHERE name = 'PS_LOCALE_LANGUAGE'; | |
| /* Varsayılan ülkeyi TR yap */ | |
| UPDATE configuration SET value = 'tr' WHERE name = 'PS_LOCALE_COUNTRY'; | |
| /* Varsayılan dil ID'sinin 1 (Türkçe) olduğundan emin ol */ | |
| UPDATE configuration SET value = '1' WHERE name = 'PS_LANG_DEFAULT'; | |
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://miuul.com/blog/genetik-algoritma-nedir | |
| https://www.youtube.com/watch?v=qv6UVOQ0F44&t=114s | |
| https://www.veribilimiokulu.com/genetik-algoritma/ | |
| https://we.tl/t-JBFZt4Ji3o |
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 argparse | |
| import os | |
| from flwr.client import ClientApp, NumPyClient | |
| import tensorflow as tf | |
| from flwr_datasets import FederatedDataset | |
| # Parse arguments | |
| parser = argparse.ArgumentParser(description="Flower") | |
| parser.add_argument("--partition-id", type=int, choices=[0, 1, 2], default=0, help="Partition of the dataset") | |
| args, _ = parser.parse_known_args() |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <base target="_top"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Marker cluster</title> | |
| <link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" /> | |
| <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" |
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://www.google.com/search?q=fair+prosper&oq=fair+prosper&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIGCAEQLhhA0gEIMjk0NGowajGoAgCwAgA&sourceid=chrome&ie=UTF-8 | |
| https://fonts.google.com/specimen/Playfair+Display | |
| https://fonts.google.com/specimen/Lato | |
| https://www.solopress.com/blog/tutorials/how-to-add-fonts-in-photoshop/ |
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
| hdr dosyası buradan indirebilirsiniz | |
| https://threejs.org/examples/webgl_loader_gltf/textures/equirectangular/royal_esplanade_1k.hdr |
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
| sudo apt-get purge fail2ban modoboa automx amavis clamav dovecot postfix postwhite spamassassin radicale opendkim backup nginx | |
| sudo rm -r /srv/automx | |
| sudo rm -r /srv/radicale | |
| sudo rm -r /run/opendkim | |
| sudo rm -r /srv/vmail | |
| sudo rm -r /srv/modoboa |
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
| from scipy.stats.distributions import chi2 | |
| chi2.ppf(0.95, df=5) # 11.07 |
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
| Merhaba, | |
| 15/01/2024 tarihi saat 13:15' de gerçekleştireceğimiz sınavımız Mühendislik Fakültesi Makine Mühendisliği Bölümü MAK117 & MAK118 dersliklerinde gerçekleşecektir. | |
| Bilginize. | |
| https://drive.google.com/drive/u/0/folders/1FsVgXhGOL7Kqo4j5lcZkyqgH9MmHne_a |
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
| library(ggplot2) | |
| library(dplyr) | |
| set.seed(100) | |
| #örneklem sayısı tanımlayınız. | |
| n<-50 | |
| x_values <- round(runif(n, min = -1, max = 1), 4) | |
| ########### ########### olasılık yoğunluk fonksiyonu ########### | |
| expdf <- function(xvalue) { | |
| stopifnot(all(xvalue >= -1), all(xvalue <= 1)) |
NewerOlder