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
@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 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
; | |
; 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 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
# 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 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
#!/usr/bin/perl -w | |
package Build::Pisi; | |
use Data::Dumper; | |
use strict; | |
sub parsexml { | |
my ($xml) = @_; | |
my @nodestack; |
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> | |
#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 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<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]) { |
OlderNewer