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
#include<stdio.h> | |
#include<string.h> | |
#include<stdlib.h> | |
const char character[] = {'a','b','c','d','e','f','g','h','i','j','k','l','m', | |
'n','o','p','q','r','s','t','u','v','w','x','y','z',}; | |
char *sifrele(char *dizi) { | |
int i = 0, j; | |
while (dizi[i]) { |
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
#include <stdio.h> | |
#define ROT 20 /* istenilen oteleme ile sifrele */ | |
#define mod 26 /* alfabe boyutu */ | |
void sifrele(int c){ | |
int c_yeni; | |
if(c >= 'A' && c <= 'Z'){ | |
c_yeni = 'A' + (c + ROT - 'A')%mod; | |
putchar(c_yeni); | |
} |
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
#!/usr/bin/perl -w | |
package Build::Pisi; | |
use Data::Dumper; | |
use strict; | |
sub parsexml { | |
my ($xml) = @_; | |
my @nodestack; |
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
# Package generated configuration file | |
# See the sshd_config(5) manpage for details | |
# What ports, IPs and protocols we listen for | |
Port 22 | |
# Use these options to restrict which interfaces/protocols sshd will bind to | |
#ListenAddress :: | |
#ListenAddress 0.0.0.0 | |
Protocol 2 | |
# HostKeys for protocol version 2 |
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
; | |
; BIND data file for local loopback interface | |
; | |
$TTL 604800 ; bu sunucya ulasılmazsa dıger dns sunuclarının beni yok | |
; sayması icin gececek sure | |
@ IN SOA seddi.me. root.seddi.me. ( ; @ zone yanındaki isim | |
;(seddi.me) | |
6 ; Serial ; diger dns sunucları bızım | |
; dns kaydımızı bı kez alır ve | |
; degiskliklerimizi alması icin serial |
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
@ECHO OFF | |
title Klasor Kilitleme | |
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK | |
if NOT EXIST Locker goto MDLOCKER | |
:CONFIRM | |
echo Ne yapmak istiyorsaniz karsiligindaki harfi yazip ENTER'a basin | |
echo. | |
echo Klasor kilitlemek (K) | |
echo. | |
echo Cikmak (C) |
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
/* Evrelerle gerçekleştirilen nokta çarpımı */ | |
/* | |
* POSIX Thread'leriyle ilgili okunabilecek bazı kaynaklar: | |
* | |
* http://randu.org/tutorials/threads/ | |
* http://www.ibm.com/developerworks/linux/library/l-posix1.html | |
* http://www.ibm.com/developerworks/library/l-pthred.html | |
* http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html | |
*/ |
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
# Test kodlarını üret. | |
# Kullanım: | |
# make # üret | |
# make clean # temizle | |
PROGS := $(patsubst %.c,%,$(wildcard *.c)) | |
# pthread kitaplığını ekle. | |
CFLAGS += -Wall -lpthread |
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
#!/usr/bin/python3 | |
#-*- coding:utf-8 -*- | |
import sys | |
import re | |
sesli = ['a', 'e', 'ı', 'i', 'o', 'ö', 'u', 'ü', 'A', 'E', 'I', 'i', 'O', 'Ö', 'U', 'Ü'] | |
sessiz = ['b', 'c', 'ç', 'd', 'f', 'g', 'ğ', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 'ş', 't', 'v', 'y', 'z', 'B', 'C', 'Ç', 'D', 'F', 'G', 'Ğ', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'Ş', 'T', 'V', 'Y', 'Z' ] | |
def reg_exp(list): |
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
#!/usr/bin/beef | |
+++++ +++++ initialize counter (cell #0) to 10 | |
[ use loop to set the next four cells to 70/100/30/10 | |
> +++++ ++ add 7 to cell #1 | |
> +++++ +++++ add 10 to cell #2 | |
> +++ add 3 to cell #3 | |
> + add 1 to cell #4 | |
<<<< - decrement counter (cell #0) | |
] |
NewerOlder