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/ruby | |
| require 'csv' | |
| ##[global]############################################################# | |
| $kisiler = {} #db.csv'den okunan bilgilerin tutuldugu sozluk | |
| $csvname = "db.csv" #okunacak db'nin adı. | |
| $kafa = [] #csv dosyasının ilk satırı.(örn : ["ad", "soyad", "no"]) | |
| $key = "no" #herhangi bir csv de key olarak seçeceginiz ifade. | |
| $value = [] #$kafa'nın keysiz hali.(örn : ["ad", "soyad"]) | |
| ####################################################################### | |
| # |
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> | |
| int | |
| main(void) | |
| { | |
| int say1, say2, tip; | |
| printf("1. sayıyı giriniz: "); scanf("%d", &say1); | |
| printf("2. sayıyı giriniz: "); scanf("%d", &say2); |
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 <stdlib.h> | |
| #include <string.h> | |
| #define BUFLEN 512 | |
| char * | |
| tersle(const char *dizgi) | |
| { | |
| int i, uzunluk; |
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 | |
| mkdir yay_yesevi; cd yay_yesevi | |
| echo "indiriyorum, bekle..." | |
| for i in {4..483} | |
| do | |
| wget http://yayinlar.yesevi.edu.tr/files/article/$i.pdf >/dev/null 2>&1 | |
| done |
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
| ### | |
| Module dependencies | |
| ### | |
| require.paths.unshift "#{__dirname}/lib/support/express-csrf/" | |
| require.paths.unshift "#{__dirname}/lib/support/node_hash/lib/" | |
| express = require 'express' | |
| app = module.exports = express.createServer() | |
| RedisStore = require 'connect-redis' |
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
| html { height: 100% } | |
| body { height: 100%; margin: 0; padding: 0 } | |
| #harita_canvas { height: 100% } |
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 main | |
| import ( | |
| "fmt" | |
| "sort" | |
| "math/rand" | |
| "time" | |
| "strings" | |
| ) |
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 random import randrange | |
| import time | |
| def kelime2(): | |
| puan=0 | |
| list1=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','r','s','t','u','v','w','x','y','z'] | |
| list2=['a','a','a','a','a','a','a','a','a'] | |
| list3=['a','a','a','a','a','a','a','a','a'] |
OlderNewer