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
| public class Friends { | |
| private String Name; | |
| private Friends next; | |
| } | |
| public class Person extends Friends { | |
| private String Name; | |
| private Integer HitCount; | |
| public Friend FriendList; | |
| public Person(String n) { | |
| Name = n; |
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
| #Kütüphaneleri ekleyelim | |
| library(palmerpenguins) | |
| library(ggplot2) | |
| library(tidyverse) | |
| library(corrplot) | |
| library(GGally) | |
| library(gapminder) | |
| data(package = 'palmerpenguins') |
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 peewee import * | |
| db = SqliteDatabase('e_commerce.db') | |
| # Basemodel dediğimiz şey şu en temel model olarak yazıyoruz. | |
| class BaseModel(Model): | |
| class Meta: | |
| database = db | |
| class Categories(BaseModel): |
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
| number = (1,2,3,4,5,6,7,8,9,10) | |
| def odd(number): | |
| if number % 2==0: | |
| return True | |
| else : | |
| return False | |
| errorcount=1 | |
| domaincount=1 |
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
| #!/bin/bash | |
| #author :Deniz Balcı | |
| echo "network sorun tespit aracı" | |
| echo "hostname" | |
| hostname | |
| echo "bağlantılar" | |
| ip a | |
| echo "bağlantılar-2" | |
| ifconfig | |
| echo "bağlantılar-3" |
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> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| <script src="work.js"></script> | |
| </head> |
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
| #include <stdio.h> | |
| #include <Python.h> | |
| int addition (int a, int b) { | |
| return a+b; | |
| } | |
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
| #gerekli kütüphaneler | |
| library(skedastic) | |
| library(lmtest) | |
| library(SciViews) | |
| library(MASS) | |
| #rastgelelik için gerekli sınır | |
| set.seed(1000) | |
| #veriseti ve modelin hazırlanması | |
| N <-100 | |
| X<-rgamma(N,shape=10) |
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(skedastic) | |
| library(lmtest) | |
| library(tseries) | |
| library(SciViews) | |
| set.seed(1000) | |
| N <-100 | |
| X<-rgamma(N,shape=10) | |
| sigma2 = N^4 |
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> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| <link rel="stylesheet" type="text/css" href="style.css" media="screen"/> | |
| </head> |