ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Ruby ile tan??ma!
U?ur "vigo" ?zy?lmazel
vigobronx vigo
webboxio
http://webbox.io
PROGRAMLAMA D?L?
Ruby ile tan??ma!
Ruby, programc?lar?
mutlu etmek ¨¹zere
tasarlanm??t?r!
- Matz
Ruby ile tan??ma!
T?RK?E B?L?YOR!
?ehirler = %w[?stanbul Ankara Viyana Paris]
gitti?im_?ehirler = %w[?stanbul Viyana]
puts "Gitmem gereken ?ehirler", ?ehirler - gitti?im_?ehirler
Gitmem gereken ?ehirler
Ankara
Paris
Perl'den g¨¹?l¨¹
python'dan daha
object or?ented
Her?ey : nesne
5.class # => Fixnum
5.class.superclass # => Integer
5.class.superclass.superclass # => Numeric
5.class.superclass.superclass.superclass # => Object
5.class.superclass.superclass.superclass.superclass # => BasicObject
Fixnum
Integer
Numeric
Object
Basic Object
5.methods # => [:to_s, :inspect, :-@, :+, :-, :*, :/, :div, :
%, :modulo, :divmod, :fdiv, :**, :abs, :magnitude, :==, :===, :<=>, :
>, :>=, :<, :<=, :~, :&, :|, :^, :
[], :<<, :>>, :to_f, :size, :bit_length, :zero?, :odd?, :even?, :succ
, :integer?, :upto, :downto, :times, :next, :pred, :chr, :ord, :to_i,
:to_int, :floor, :ceil, :truncate, :round, :gcd, :lcm, :gcdlcm, :nume
rator, :denominator, :to_r, :rationalize, :singleton_method_added, :c
oerce, :i, :
+@, :eql?, :remainder, :real?, :nonzero?, :step, :quo, :to_c, :real,
:imaginary, :imag, :abs2, :arg, :angle, :phase, :rectangular, :rect,
:polar, :conjugate, :conj, :between?, :nil?, :=~, :!~, :hash, :class,
:singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust
, :untrusted?, :trust, :freeze, :frozen?, :methods, :singleton_method
s, :protected_methods, :private_methods, :public_methods, :instance_v
ariables, :instance_variable_get, :instance_variable_set, :instance_v
ariable_defined?, :remove_instance_variable, :instance_of?, :kind_of?
, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display,
:method, :public_method, :singleton_method, :define_singleton_method,
:object_id, :to_enum, :enum_for, :equal?, :!, :!
=, :instance_eval, :instance_exec, :__send__, :__id__]
T?M SINIFLAR A?IKTIR!
class Fixnum
def kere(n)
self * n
end
end
5.kere(5) # => 25
5.kere(5).kere(2) # => 50
class Fixnum
def g¨¹n
self * 24 * 60 * 60
end
def ?nce
Time.now - self
end
def sonra
Time.now + self
end
end
Time.now # => 2015-01-12 12:30:37 +0200
5.g¨¹n.?nce # => 2015-01-07 12:30:37 +0200
1.g¨¹n.sonra # => 2015-01-13 12:30:37 +0200
PHP?
konu?ma d?l?ne benzer
5.times do |i|
puts "Ruby¡¯i seviyorum, i = #{i}" if i > 2
end
# Ruby¡¯i seviyorum, i = 3
# Ruby¡¯i seviyorum, i = 4
meals = %w[Pizza D?ner Kebab]
print "Let¡¯s eat here!" unless meals.include? "Soup"
men¨¹'de ?orba yoksa
yeme?? burada Y?YEL?M!
KOD ?
var?able
merhaba = "D¨¹nya" # De?i?ken
@merhaba # Instance Variable
@@merhaba # Class Variable
$merhaba # Global Variable
MERHABA # Constant
ARRAY
[] # => []
[1, "Merhaba", 2]
# => [1, "Merhaba", 2]
[[1, 2], ["Merhaba", "D¨¹nya"]]
# => [[1, 2], ["Merhaba", "D¨¹nya"]]
hash
{} # => {}
{:foo => "bar"} # => {:foo=>"bar"} # Eski
{foo: "bar"} # => {:foo=>"bar"} # Yeni
parantez?
def merhaba kullan?c?
"Merhaba #{kullan?c?}"
end
merhaba "vigo" # => "Merhaba vigo"
SORU ??ARET?
[].empty? # => true
["vigo", "ezel"].include? "vigo" # => true
user.admin? # => false
?NLEM ??ARET?
isim = "vigo"
isim.reverse # => "ogiv"
isim # => "vigo"
isim.reverse! # => "ogiv"
isim # => "ogiv"
z?NC?RLEME METHODLAR
"vigo".reverse.reverse # => "vigo"
["v", "i", "g", "o"].join.reverse.split(//).join.reverse
# => "vigo"
?terasyon
[1, "merhaba", 2, "d¨¹nya"].each do |eleman|
puts eleman
end
[1, "merhaba", 2, "d¨¹nya"].each {|eleman| puts eleman}
# 1
# merhaba
# 2
# d¨¹nya
?terasyon
[1, 2, 3, 4, 5].select{|number| number.even?}
# => [2, 4]
[1, 2, 3, 4, 5].inject{|sum, number| sum + number}
# => 15
[1, 2, 3, 4, 5].map{|number| number * 2}
# => [2, 4, 6, 8, 10]
class
class Person
attr_accessor :age
end
vigo = Person.new
vigo # => #<Person:0x007f98820e6ab0>
vigo.age = 43
vigo # => #<Person:0x007f98820e6ab0 @age=43>
vigo.age # => 43
class
class Person
attr_accessor :age # Getter & Setter
def initialize(name)
@name = name
end
def greet
"Hello #{@name}"
end
end
vigo = Person.new "U?ur"
vigo.age = 43
vigo # => #<Person:0x007fc2810436c0 @name="U?ur", @age=43>
vigo.greet # => "Hello U?ur"
class
class Person
def initialize(name)
@name = name
end
def age=(value)
@age = value
end
def age
@age
end
def greet
"Hello #{@name}"
end
end
vigo = Person.new "U?ur"
vigo.age = 43
Getter
Setter
attr_accessor :age
}
class
class Person
def is_human?
true
end
end
class Cyborg < Person
def is_human?
false
end
end
vigo = Person.new # => #<Person:0x007faa7291d268>
vigo.is_human? # => true
t800 = Cyborg.new # => #<Cyborg:0x007faa7291cbd8>
t800.is_human? # => false
module + MIXIN
module Greeter
def say_hello
"Hello #{@name}"
end
end
class Person
include Greeter
def initialize(name)
@name = name
end
end
vigo = Person.new "U?ur"
vigo.say_hello # => "Hello U?ur"
haz?r?m!
?LER? SEV?YE KONULAR
Meta Programming
Monkey Patching
Block & Proc & Lambda
Functional Programming
kaynaklar
http://www.ruby-doc.org/
http://vigo.gitbooks.io/ruby-101/
http://tryruby.org/
http://rubykoans.com/
https://rubymonk.com/
https://www.ruby-lang.org/en/documentation/quickstart/
https://www.ruby-lang.org/en/documentation/ruby-from-other-languages/
foto?raflar
http://www.sitepoint.com/
https://500px.com/photo/72621187/let-me-fly-by-kshitij-bhardwaj
http://www.gratisography.com/

More Related Content

What's hot (20)

CGI.pm - 3§Ý§à?!
CGI.pm - 3§Ý§à?!CGI.pm - 3§Ý§à?!
CGI.pm - 3§Ý§à?!
Anatoly Sharifulin
?
Coffeescript - Getting Started
Coffeescript - Getting StartedCoffeescript - Getting Started
Coffeescript - Getting Started
JeongHun Byeon
?
Tripwon gathering presentation
Tripwon gathering presentationTripwon gathering presentation
Tripwon gathering presentation
tripwon
?
Getfilestruct zbksh(1)
Getfilestruct zbksh(1)Getfilestruct zbksh(1)
Getfilestruct zbksh(1)
Ben Pope
?
Islam House
Islam HouseIslam House
Islam House
Haris Padinharethil
?
Mojolicious: what works and what doesn't
Mojolicious: what works and what doesn'tMojolicious: what works and what doesn't
Mojolicious: what works and what doesn't
Cosimo Streppone
?
London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)
Dennis Knochenwefel
?
Nomethoderror talk
Nomethoderror talkNomethoderror talk
Nomethoderror talk
Jan Berdajs
?
JavaScript - Like a Box of Chocolates - jsDay
JavaScript - Like a Box of Chocolates - jsDayJavaScript - Like a Box of Chocolates - jsDay
JavaScript - Like a Box of Chocolates - jsDay
Robert Nyman
?
Rails by example
Rails by exampleRails by example
Rails by example
Angelo van der Sijpt
?
SQL Injection Part 2
SQL Injection Part 2SQL Injection Part 2
SQL Injection Part 2
n|u - The Open Security Community
?
TDDBC ¤ªî}
TDDBC ¤ªî}TDDBC ¤ªî}
TDDBC ¤ªî}
Takuto Wada
?
Import o matic_higher_ed
Import o matic_higher_edImport o matic_higher_ed
Import o matic_higher_ed
carolinestallings
?
DOS
DOSDOS
DOS
Papun Papun
?
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
Kazuki KOMORI
?
Blog Hacks 2011
Blog Hacks 2011Blog Hacks 2011
Blog Hacks 2011
Yusuke Wada
?
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
Yasuharu Nakano
?
Python Developer's Daily Routine
Python Developer's Daily RoutinePython Developer's Daily Routine
Python Developer's Daily Routine
Maxim Avanov
?
Michelle Morin: Recess for the Soul
Michelle Morin: Recess for the SoulMichelle Morin: Recess for the Soul
Michelle Morin: Recess for the Soul
Nerd Nite Siem Reap
?
Barcelona.pm Curs1211 sess01
Barcelona.pm Curs1211 sess01Barcelona.pm Curs1211 sess01
Barcelona.pm Curs1211 sess01
Javier Arturo Rodr¨ªguez
?
Coffeescript - Getting Started
Coffeescript - Getting StartedCoffeescript - Getting Started
Coffeescript - Getting Started
JeongHun Byeon
?
Tripwon gathering presentation
Tripwon gathering presentationTripwon gathering presentation
Tripwon gathering presentation
tripwon
?
Getfilestruct zbksh(1)
Getfilestruct zbksh(1)Getfilestruct zbksh(1)
Getfilestruct zbksh(1)
Ben Pope
?
Mojolicious: what works and what doesn't
Mojolicious: what works and what doesn'tMojolicious: what works and what doesn't
Mojolicious: what works and what doesn't
Cosimo Streppone
?
London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)
Dennis Knochenwefel
?
JavaScript - Like a Box of Chocolates - jsDay
JavaScript - Like a Box of Chocolates - jsDayJavaScript - Like a Box of Chocolates - jsDay
JavaScript - Like a Box of Chocolates - jsDay
Robert Nyman
?
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
PHPer¤Î¤¿¤á¤ÎPerlÈëéT@ Kansai.pm#12
Kazuki KOMORI
?
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
¥ì¥Ã¥Ä¥´©`¥Ç¥Ù¥í¥Ã¥Ñ©`2011¡¸¥×¥í¥°¥é¥ß¥ó¥°³Ò°ù´Ç´Ç±¹²â?³Ò*¥¨¥³¥·¥¹¥Æ¥à±à¡¹
Yasuharu Nakano
?
Python Developer's Daily Routine
Python Developer's Daily RoutinePython Developer's Daily Routine
Python Developer's Daily Routine
Maxim Avanov
?
Michelle Morin: Recess for the Soul
Michelle Morin: Recess for the SoulMichelle Morin: Recess for the Soul
Michelle Morin: Recess for the Soul
Nerd Nite Siem Reap
?

Similar to Ruby ile tan??ma! (20)

An introduction to Ruby
An introduction to RubyAn introduction to Ruby
An introduction to Ruby
Wes Oldenbeuving
?
[PL] Jak nie zosta? "programist?" PHP?
[PL] Jak nie zosta? "programist?" PHP?[PL] Jak nie zosta? "programist?" PHP?
[PL] Jak nie zosta? "programist?" PHP?
Radek Benkel
?
Blocks by Lachs Cox
Blocks by Lachs CoxBlocks by Lachs Cox
Blocks by Lachs Cox
lachie
?
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖRuby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Wen-Tien Chang
?
Refactor like a boss
Refactor like a bossRefactor like a boss
Refactor like a boss
gsterndale
?
Ruby 2.0
Ruby 2.0Ruby 2.0
Ruby 2.0
U?is Ozols
?
Ruby - Uma Introdu??o
Ruby - Uma Introdu??oRuby - Uma Introdu??o
Ruby - Uma Introdu??o
?gor Bonadio
?
Word Play in the Digital Age: Building Text Bots with Tracery
Word Play in the Digital Age: Building Text Bots with TraceryWord Play in the Digital Age: Building Text Bots with Tracery
Word Play in the Digital Age: Building Text Bots with Tracery
Sarah Sexton
?
?vod do programov¨¢n¨ª 5
?vod do programov¨¢n¨ª 5?vod do programov¨¢n¨ª 5
?vod do programov¨¢n¨ª 5
Karel Minarik
?
RubyMotion
RubyMotionRubyMotion
RubyMotion
Mark
?
PHP Basics and Demo HackU
PHP Basics and Demo HackUPHP Basics and Demo HackU
PHP Basics and Demo HackU
Anshu Prateek
?
2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws
loffenauer
?
Swift Basics
Swift BasicsSwift Basics
Swift Basics
Jong-Hyun Kim
?
Getting Started with Microsoft Bot Framework
Getting Started with Microsoft Bot FrameworkGetting Started with Microsoft Bot Framework
Getting Started with Microsoft Bot Framework
Sarah Sexton
?
PHP and MySQL
PHP and MySQLPHP and MySQL
PHP and MySQL
Sanketkumar Biswas
?
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½é
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½éRuby ³ÌʽÕZÑÔ¾CÓ[º†½é
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½é
Wen-Tien Chang
?
Ruby
RubyRuby
Ruby
Kerry Buckley
?
"Javascript" por Tiago Rodrigues
"Javascript" por Tiago Rodrigues"Javascript" por Tiago Rodrigues
"Javascript" por Tiago Rodrigues
N¨²cleo de Electr¨®nica e Inform¨¢tica da Universidade do Algarve
?
Nigel hamilton-megameet-2013
Nigel hamilton-megameet-2013Nigel hamilton-megameet-2013
Nigel hamilton-megameet-2013
trexy
?
Joomla! Day UK 2009 .htaccess
Joomla! Day UK 2009 .htaccessJoomla! Day UK 2009 .htaccess
Joomla! Day UK 2009 .htaccess
Andy Wallace
?
[PL] Jak nie zosta? "programist?" PHP?
[PL] Jak nie zosta? "programist?" PHP?[PL] Jak nie zosta? "programist?" PHP?
[PL] Jak nie zosta? "programist?" PHP?
Radek Benkel
?
Blocks by Lachs Cox
Blocks by Lachs CoxBlocks by Lachs Cox
Blocks by Lachs Cox
lachie
?
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖRuby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Wen-Tien Chang
?
Refactor like a boss
Refactor like a bossRefactor like a boss
Refactor like a boss
gsterndale
?
Ruby - Uma Introdu??o
Ruby - Uma Introdu??oRuby - Uma Introdu??o
Ruby - Uma Introdu??o
?gor Bonadio
?
Word Play in the Digital Age: Building Text Bots with Tracery
Word Play in the Digital Age: Building Text Bots with TraceryWord Play in the Digital Age: Building Text Bots with Tracery
Word Play in the Digital Age: Building Text Bots with Tracery
Sarah Sexton
?
?vod do programov¨¢n¨ª 5
?vod do programov¨¢n¨ª 5?vod do programov¨¢n¨ª 5
?vod do programov¨¢n¨ª 5
Karel Minarik
?
RubyMotion
RubyMotionRubyMotion
RubyMotion
Mark
?
PHP Basics and Demo HackU
PHP Basics and Demo HackUPHP Basics and Demo HackU
PHP Basics and Demo HackU
Anshu Prateek
?
2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws
loffenauer
?
Getting Started with Microsoft Bot Framework
Getting Started with Microsoft Bot FrameworkGetting Started with Microsoft Bot Framework
Getting Started with Microsoft Bot Framework
Sarah Sexton
?
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½é
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½éRuby ³ÌʽÕZÑÔ¾CÓ[º†½é
Ruby ³ÌʽÕZÑÔ¾CÓ[º†½é
Wen-Tien Chang
?
Nigel hamilton-megameet-2013
Nigel hamilton-megameet-2013Nigel hamilton-megameet-2013
Nigel hamilton-megameet-2013
trexy
?
Joomla! Day UK 2009 .htaccess
Joomla! Day UK 2009 .htaccessJoomla! Day UK 2009 .htaccess
Joomla! Day UK 2009 .htaccess
Andy Wallace
?

More from U?ur ?zy?lmazel (7)

Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
Test'le Y¨¹r¨¹yen Geli?tirme (TDD)Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
U?ur ?zy?lmazel
?
Vagrant 101
Vagrant 101Vagrant 101
Vagrant 101
U?ur ?zy?lmazel
?
Yazilimci kimdir?
Yazilimci kimdir?Yazilimci kimdir?
Yazilimci kimdir?
U?ur ?zy?lmazel
?
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmakNginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
U?ur ?zy?lmazel
?
?nsanlar i?in GIT
?nsanlar i?in GIT?nsanlar i?in GIT
?nsanlar i?in GIT
U?ur ?zy?lmazel
?
Merhaba Sinatra
Merhaba SinatraMerhaba Sinatra
Merhaba Sinatra
U?ur ?zy?lmazel
?
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirmePython ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
U?ur ?zy?lmazel
?
Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
Test'le Y¨¹r¨¹yen Geli?tirme (TDD)Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
Test'le Y¨¹r¨¹yen Geli?tirme (TDD)
U?ur ?zy?lmazel
?
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmakNginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
Nginx ve Unicorn'la Rack Uygulamalar?n? Ko?turmak
U?ur ?zy?lmazel
?
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirmePython ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
Python ve Django'da Test'le Y¨¹r¨¹yen Geli?tirme
U?ur ?zy?lmazel
?

Recently uploaded (20)

Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
?
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga?l Gu¨¦h¨¦neuc
?
Digital Application Development Services
Digital Application Development ServicesDigital Application Development Services
Digital Application Development Services
daavishenry
?
Byteexpo Call Center - Presentation.pptx
Byteexpo Call Center - Presentation.pptxByteexpo Call Center - Presentation.pptx
Byteexpo Call Center - Presentation.pptx
hmk11790
?
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
?
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
Shubham Joshi
?
4K Video Downloader Crack FREE Latest Version
4K Video Downloader Crack FREE Latest Version4K Video Downloader Crack FREE Latest Version
4K Video Downloader Crack FREE Latest Version
uw801424
?
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
?
E-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdfE-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdf
sandeepjangidimg
?
wAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptxwAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptx
SimonedeGijt
?
Typing Master Pro 12 Crack Updated Version [April-2025]
Typing Master Pro 12 Crack Updated Version [April-2025]Typing Master Pro 12 Crack Updated Version [April-2025]
Typing Master Pro 12 Crack Updated Version [April-2025]
jhonjosh91
?
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlanMaximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
OnePlan Solutions
?
UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]
umeerbinfaizan
?
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
?
Wondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free DownloadWondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free Download
anglekaan18
?
Oracle Database administration Security PPT
Oracle Database administration Security PPTOracle Database administration Security PPT
Oracle Database administration Security PPT
pshankarnarayan
?
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: OverviewChoreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
?
Wondershare Filmora Crack 2025 For Windows Free
Wondershare Filmora Crack 2025 For Windows FreeWondershare Filmora Crack 2025 For Windows Free
Wondershare Filmora Crack 2025 For Windows Free
mohsinrazakpa43
?
TVersity Pro Media Server Free CRACK Download
TVersity Pro Media Server Free CRACK DownloadTVersity Pro Media Server Free CRACK Download
TVersity Pro Media Server Free CRACK Download
mohsinrazakpa43
?
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
?
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga?l Gu¨¦h¨¦neuc
?
Digital Application Development Services
Digital Application Development ServicesDigital Application Development Services
Digital Application Development Services
daavishenry
?
Byteexpo Call Center - Presentation.pptx
Byteexpo Call Center - Presentation.pptxByteexpo Call Center - Presentation.pptx
Byteexpo Call Center - Presentation.pptx
hmk11790
?
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
?
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
CoTester vs. Other Agentic AI Testing Platforms: Which One is Right for You?
Shubham Joshi
?
4K Video Downloader Crack FREE Latest Version
4K Video Downloader Crack FREE Latest Version4K Video Downloader Crack FREE Latest Version
4K Video Downloader Crack FREE Latest Version
uw801424
?
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
?
E-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdfE-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdf
sandeepjangidimg
?
wAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptxwAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptx
SimonedeGijt
?
Typing Master Pro 12 Crack Updated Version [April-2025]
Typing Master Pro 12 Crack Updated Version [April-2025]Typing Master Pro 12 Crack Updated Version [April-2025]
Typing Master Pro 12 Crack Updated Version [April-2025]
jhonjosh91
?
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlanMaximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
Maximizing PMI Chapter Success to Streamline Events + Programs with OnePlan
OnePlan Solutions
?
UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]
umeerbinfaizan
?
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
?
Wondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free DownloadWondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free Download
anglekaan18
?
Oracle Database administration Security PPT
Oracle Database administration Security PPTOracle Database administration Security PPT
Oracle Database administration Security PPT
pshankarnarayan
?
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: OverviewChoreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
?
Wondershare Filmora Crack 2025 For Windows Free
Wondershare Filmora Crack 2025 For Windows FreeWondershare Filmora Crack 2025 For Windows Free
Wondershare Filmora Crack 2025 For Windows Free
mohsinrazakpa43
?
TVersity Pro Media Server Free CRACK Download
TVersity Pro Media Server Free CRACK DownloadTVersity Pro Media Server Free CRACK Download
TVersity Pro Media Server Free CRACK Download
mohsinrazakpa43
?

Ruby ile tan??ma!