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
#super user olmadan çalışmaz ona göre :) | |
import os, zipfile | |
ZF=zipfile.ZipFile("modules.zip","w") | |
A=os.popen("lsmod").read() | |
M=A.split("\n") | |
for l in M[1:]: | |
ls=l.strip() |
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
#-*-coding:utf-8-*- | |
girilenSayi=input('Sayi Giriniz') | |
sonuc=0 | |
girilenSayi=int(girilenSayi) | |
l=[] | |
for i in range(1,girilenSayi): | |
if girilenSayi%i==0: | |
l.append(i) | |
for m in l: |
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
#-*-coding:utf*8-*- | |
#!/usr/bin/python | |
import os | |
sozluk={'ask':'http://88.150.190.187:8020', | |
'avrasya':'http://88.150.190.188:1071', | |
'arabesk':'http://198.27.101.176:7446', | |
'imbat':'http://38.96.148.18:8127', | |
'sky':'http://198.27.101.189:8300'} |
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
#Ali Kemal Kocoglu | |
#-*-coding : utf-8 -*- | |
from math import sqrt | |
import random,os | |
yas=input("Varsayılan Yaş Değerini Giriniz:") | |
yas=int(yas) | |
kredi=input("Varsayılan Kredi Değerini Giriniz :") | |
kredi=float(kredi) |
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
## nginx.conf ## | |
server { | |
listen 80; | |
# listen [::]:80 default_server ipv6only=on; | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
# Make site accessible from http://localhost/ |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
K8S_DEV_BOX_NAME = "gsengun/k8s-dev-box" | |
K8S_DEV_BOX_VERSION = "17.12.27" | |
MASTER_NODE_IP_START="172.27.44.20" | |
WORKER_NODE_IP_START="172.27.44.10" | |
JOIN_TOKEN="abcdef.1234567890123456" |