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 random | |
import time | |
import pyautogui | |
screenWidth, screenHeight = pyautogui.size() | |
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 random | |
rasgeleSayi = random.randint( 1, 1000 ) | |
hak = 10 | |
def sayiGir(): | |
global hak | |
print("Sayı Gir:..") | |
sayi = input() |
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
<?php | |
class HtmlTable | |
{ | |
public $header = []; | |
public $body = []; | |
public $footer = []; | |
public $actionColumn = []; |
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
[ | |
{ | |
"phoneCode": "93", | |
"isoCode": "AF" | |
}, | |
{ | |
"phoneCode": "355", | |
"isoCode": "AL" | |
}, | |
{ |
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
function numToWord(number) { | |
const ones = ['', 'bir', 'iki', 'üç', 'dört', 'beş', 'altı', 'yedi', 'sekiz', 'dokuz']; | |
const tens = ['', 'on', 'yirmi', 'otuz', 'kırk', 'elli', 'altmış', 'yetmiş', 'seksen', 'doksan']; | |
const scales = ['', 'bin', 'milyon', 'milyar', 'trilyon', 'katrilyon']; | |
let integerPart = Math.floor(number); | |
let fractionalPart = Math.round((number - integerPart) * 100); // Kuruş için iki basamak | |
let result = ''; |
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
[Route("contact")] | |
[Route("bize-ulasin")] | |
[Route("iletisim")] | |
public IActionResult Contact() | |
{ | |
return View(); | |
} |
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
[Route("iletisim")] | |
public IActionResult Contact() | |
{ | |
return View(); | |
} |
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
npm i serverless-mysql sql-template-strings |