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
# encoding: UTF-8 | |
# | |
# From -> Hüseyin Tekinaslan <[email protected]> | |
# | |
class HClass | |
def initialize(number, base) | |
@number = number | |
@base = base |
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
# encoding: UTF-8 | |
# | |
# From-> Hüseyin Tekinaslan <[email protected]> | |
# | |
class Sortname | |
def initialize(adress) | |
@adress = adress | |
end | |
# |
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/ruby1.9.1 | |
# encoding: UTF-8 | |
# | |
# From -> Hüseyin Tekinaslan <[email protected]> | |
# Subject -> Graflardan farklı olarak çift taraflı sıralama algoritması | |
# | |
def cityLand(*datas, n) | |
arr = [] | |
objects = {} |
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
# encoding: UTF-8 | |
# | |
require_relative 'file-about' | |
print "Path: " | |
input = gets.chomp | |
instance = Cisymic.new(input, "kilobyte")::chester | |
print """ |
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
# encoding: UTF-8 | |
# | |
# Hüseyin Tekinaslan <[email protected]> | |
# | |
require 'rake' | |
PARAMS = { author: nil, | |
description: nil, | |
email: nil, |
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
/* | |
* OMU Bilgisayar Mühendisliği, Programlamaya Giriş II, | |
* 'C Programlama Diline Giriş' labaratuvar föy ödevi | |
* 2 sayısının üslerini rekürsif olmayacak şekilde almak. | |
*/ | |
#include <stdio.h> | |
main(void) { | |
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
/* | |
* Programlamaya Giriş II, örnek program | |
*/ | |
#include <stdio.h> | |
main(void) { | |
int x, y; | |
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
/* | |
* The Practice of Programming -> Kerngihan -> Alıştırmalar | |
* Alıştırma -> '*' ile Nike işareti yapma | |
*/ | |
#include <stdio.h> | |
main(void) { | |
int i; |
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
# encoding: utf-8 | |
# | |
# Terminal'de objeye hareketli görüntüsü verdik. | |
# Saçma işler :)) | |
# | |
require 'rake/clean' | |
require 'time' | |
id = { sol: "\n\t\u{2190}", |
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
/* | |
* Linux altındaki 'cat' komutunun benzeri. | |
* Kullanımı için terminalden; | |
* -> ./copex > hedef_file | |
* ile yönlendirilebilir. | |
*/ | |
# include <stdio.h> | |
int main(void) { |
OlderNewer