Zırvalama Tahtası symfony, debian, PHP5, SQL ve pek çok ayrıntı

1May/070

Cv

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
 
 /*
  *  @file: myCv.class.php
  *  @copyright: (c) 2007 Timu EREN <selamtux [at] gmail.com>
  *  @licence:     GPL
  *  @version:  0.1b r3
  */
 
  require_once('human/body.class.php');
 
  require_once('education.class.php');  
  require_once('works/company.class.php');
  require_once('works/projects.class.php'); 
 
  $me = new Body();
  $me->setFirstName('Timu'); //Aka
  $me->setLastName('EREN');
  $me->setEmail('selamtux [at] gmail.com'); //protec for spam bots on web page
  $me->setGsmPhoneNumber('+905373257500'); //maybe I should not do that for web page
  $me->setBirthDay('11-04-1981'); //dd-mm-yyyy
  $me->setSex('male');
  $me->setArmyStatus('no'); // yes i do
 
  $me->setLivingFrom('İstanbul / Maltepe');  //string 
  $me->setLanguage('türkçe', 'main');  
  $me->setLanguage('english', 'beginer');
 
  $edu = new Education();
 
  $edu->setLastSchool('high'); 
  $edu->setLastSchoolName('Maltepe lisesi');
  $edu->setLastSchoolStatus('jump');
  $edu->setJumpFromClass(1); // integer
  $edu->setJumpYear(1996);  //integer
  $edu->setJumpFromSchoolTo('life');
 
  $me->setEducation($edu);
 
  $dahili_net = new Company();
  $dahili_net->setCompanyName('Dahili.net iletişim');
  $dahili_net->setPosition('linux system admininstration');
  $dahili_net->setPosition('web developer');
  $dahili_net->setTTL('3 month'); //time to live   
 
 
  $suntel = new Company();
  $suntel->setCompanyName('Suntel iletişim');
  $suntel->setPosition('web developer'); 
  $suntel->setTTL('20 month'); // month for greater than 1.5 year 
 
 
  $platform = new Company();  
  $platform->setCompanyName('Platform elektronik');
  $platform->setPosition('web developer');
  $platform->setTTL('1 month'); //time to live  
 
  $project = new Projects();
  $project->setProjectName('Ethernet network');
  $project->setProjectDescription('Belirli bölgelerde kurulan ethernet 
          networklerdeki linux sunucularının kurulumu, 
          bakımı, yönetimi ve ilgili konular için otomasyonu');  
 
  $project->addLanguage('bash');  //for otomation
 
  $dahili_net->addProject($project);  
 
  $project->clearAllInformation();
 
  $project->setProjectName('Web tabanlı Yazılım danışmanlığı');
  $project->setProjectDescription('Web tabanlı uygulamaların 
        network ile ilgili bölümleri için akış şemaları, 
        kod örnekleri, eğitim');  
  $project->addProgramingLanguages(array('bash', 'php4'));
 
  $dahili_net->addProject($project);
 
  $project->clearAllInformation();
 
  $project->setProjectName('Callmaster');
  $project->setProjectDescription('Callshop uygulaması için yönetim ve 
          raporlama arabirimi. Müşteri bilgi sistemi, 
          faturalama ve raporlama');
  $project->addProgramingLanguage('php4');
 
  $suntel->addProject($project);
 
  $project->clearAllInformation();
 
  $project->setProjectName('Saaas admin');
  $project->setProjectDescription('GPRS network için tasarlanmış 
           radius yönetim paneli / faturalama / 
           basit raporlama');
  $project->addProgramingLanguage('php5');                                                            
 
  $suntel->addProject($project);
 
  $project->clearAllInformation();
 
  $project->setProjectName('Saaas reports');
  $project->setProjectDescription('GPRS network için müşteri 
                 tabanlı raporlama / faturalama');
  $project->addProgramingLanguage('php5');   
 
  $suntel->addProject($project);
 
  $project->clearAllInformation();
 
  $project->setProjectName('AnotherDatingSite');
  $project->setProjectDescription('Populer web görselleri ve 
                  teknolojileri kullanılarak hazırlanan 
                  bir başka sanal arkadaşlık sitesi');
  $project->addProgramingLanguage('php5'); 
  $platform->addProject($project);  
 
  $me->addWorks(array($dahili_net, $suntel, $platform));
 
  $me->addProgramingLanguage('php4', 'good');
  $me->addProgramingLanguage('php5', 'good');
  $me->addProgramingLanguage('python', 'beginer');
  $me->addProgramingLanguage('ruby', 'beginer');  
 
  $me->addDatabaseInformation('MySQL', 'middle');
  $me->addDatabaseInformation('PostgreSQL', 'good');
  $me->addDatabaseInformation('plpgSQL', 'middle');
 
  $me->setArticleURI('http://ileriseviye.org/arasayfa.php?inode=php-form-security.html');
 
  $me->setInterests(array('web development', 
                       'web application security', 
                       'linux OS tools', 
                       'Databases'));
 
  $me->addAdditionalInformation(array('framework'=>'symfony'));
 
  $me->setBug('smoke', 'hard');
 
  $me->setWorkStatus(false);
 
?>