ERENSENELMIS.BLOGSPOT.COM
Yazılım TeknolojileriJava, Linux
http://erensenelmis.blogspot.com/
Java, Linux
http://erensenelmis.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.2 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
13
SSL
EXTERNAL LINKS
10
SITE IP
172.217.6.65
LOAD TIME
0.246 sec
SCORE
6.2
Yazılım Teknolojileri | erensenelmis.blogspot.com Reviews
https://erensenelmis.blogspot.com
Java, Linux
erensenelmis.blogspot.com
Yazılım Teknolojileri: Dosyanın Hangi RPM Paketinde Yer Aldığını Bulmak
http://erensenelmis.blogspot.com/2013/09/dosyann-hangi-rpm-paketinde-yer-aldgn.html
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 23 Eylül 2013 Pazartesi. Dosyanın Hangi RPM Paketinde Yer Aldığını Bulmak. Sisteminizde kurulu bir pakete ait bir dosyanın tam path'ini biliyorsanız bu dosyanın hangi pakete ait olduğunu aşağıdaki komutla bulabilirsiniz. Rpm -qf [dosya adı]. Paket, sisteminizde kurulu değilse adını bildiğiniz dosyanın hangi pakette yer aldığını aşağıdaki betik ile bulabilirsiniz. Bu betik, repoquery komutundan faydalanır ve yum repository'lerinde arama yapar.
Yazılım Teknolojileri: Eylül 2013
http://erensenelmis.blogspot.com/2013_09_01_archive.html
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 24 Eylül 2013 Salı. Yerel Yum Deposu Oluşturmak. Rpm komutu ile bir paket kurmak istediğimizde eğer bağımlı paketler sistemimizde kurulu değilse paketi kurmamıza izin vermeyecektir. Yum ise bağımlı paketleri de kurabiliyor. O nedenle önemli kullanım kolaylığı sağlıyor. RHEL'e kayıtlı olmadığınız için yum'u kullanamıyorsanız, bu yazıda anlatılanları yaparak sisteminizde yerel bir yum deposu oluşturabilir ve yum'u kullanabilirsiniz. Bundan sonra yum'u ku...
Yazılım Teknolojileri: Ağustos 2013
http://erensenelmis.blogspot.com/2013_08_01_archive.html
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 20 Ağustos 2013 Salı. Linux'te Java'nın Cryptography kütüphanesi yavaş çalışıyor. Kamu SM'nin Zaman Damgası console uygulaması çok yavaş çalışıyordu. Yavaşlığın sebebinin RHEL'de (6.4 versiyonu) kullanılan (aynı problem Debian'da (7.1 versiyonu) da gözlendi) random number generator'ın yavaş çalışmasından kaynaklandığı anlaşıldı. Linux'taki rngd/rng-tools servisi bu değerin her zaman yüksek olmasını sağlıyor. Maybe RNG device modules are not loaded.
Yazılım Teknolojileri: Ekim 2010
http://erensenelmis.blogspot.com/2010_10_01_archive.html
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 20 Ekim 2010 Çarşamba. Gazetteer, Coğrafi Bilgi Sistemleri ile ilgili bir kavram. Gazetteer, yerleşim yerleri hakkında çeşitli bilgiler sağlar. En azından bu yerleşim yerinin adı ve coğrafi olarak koordinatlarını verir. Bunun yanında nüfus, dağlar, yollar, gelir düzeyi gibi bilgilerde içerebilir. Http:/ local.yahooapis.com/MapsService/V1/geocode? Http:/ local.yahooapis.com/MapsService/V1/geocode? Bu yayına verilen bağlantılar. Java, Linux, CMMI, Agile.
Yazılım Teknolojileri: Eylül 2009
http://erensenelmis.blogspot.com/2009_09_01_archive.html
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 2 Eylül 2009 Çarşamba. CMMI; süreç iyileştirme yaklaşımıdır. Capability Maturity Model Integration. Standart CMMI Appraisal Method for Process Improvement. Project Monitoring and Control. Process and Product Quality Assurance. Organizational Process Definition IPPD. Integrated Project Management IPPD. Decision Analysis and Resolution. Organizational Innovation and Deployment. Causal Analysis and Resolution. Bu yayına verilen bağlantılar.
TOTAL PAGES IN THIS WEBSITE
13
A curious developer's blog: Two Columned Layout for standart forms
http://saracogl.blogspot.com/2010/10/two-columned-layout-for-standart-forms.html
A curious developer's blog. 28 Ekim 2010 Perşembe. Two Columned Layout for standart forms. I have implemented a layout for panels with two columns. It calculates the width of the first column according to the widest component of first column. And, uses remained space for second column components. Besides, each row height is calculated according to each row's two inner components' heights. It may be useful for some cases. Import java.awt.Component;. Import java.awt.Container;. Private int verticalGap = 0;.
A curious developer's blog: What is agile?
http://saracogl.blogspot.com/2009/12/what-is-agile.html
A curious developer's blog. 26 Aralık 2009 Cumartesi. I decided to write about Agile development and Agile practices days ago. But I coudn't have time to write. At last I've decided to write all as a series of short blog-posts. In this post, I'll try to explain "what is agile? Over processes and tools. Over following a plan. Customer satisfaction through early and continuous delivery of valuable software. Welcome changing requirements, even late. Deliver working software frequently (iterations). These pr...
A curious developer's blog: Aralık 2009
http://saracogl.blogspot.com/2009_12_01_archive.html
A curious developer's blog. 28 Aralık 2009 Pazartesi. How to read Excel sheet in Java? An example of reading and parsing an Excel file. We have a class (HomeObject) and this class has two attributes ('doorNo' and 'ownerName'). Public class HomeObject {. Private int doorNo;. Private String ownerName;. Public int getDoorNo() {. Public void setDoorNo(int doorNo) {. ThisdoorNo = doorNo;. Public String getOwnerName() {. Public void setOwnerName(String ownerName) {. ThisownerName = ownerName;. Result = " ;.
A curious developer's blog: Setting focus traversal keys for JTextArea
http://saracogl.blogspot.com/2010/01/setting-focus-traversal-keys-for.html
A curious developer's blog. 2 Ocak 2010 Cumartesi. Setting focus traversal keys for JTextArea. It's unable to use the "Tab" key for JTextArea to focus next swing component. The next code fixes this problem, and makes the Tab and Shift-Tab keys usable to focus forward or backward. JTextArea textArea = new JTextArea();. TextArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD TRAVERSAL KEYS,null);. TextArea.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD TRAVERSAL KEYS,null);. Follow me on Twitter.
A curious developer's blog: Ocak 2010
http://saracogl.blogspot.com/2010_01_01_archive.html
A curious developer's blog. 2 Ocak 2010 Cumartesi. Setting focus traversal keys for JTextArea. It's unable to use the "Tab" key for JTextArea to focus next swing component. The next code fixes this problem, and makes the Tab and Shift-Tab keys usable to focus forward or backward. JTextArea textArea = new JTextArea();. TextArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD TRAVERSAL KEYS,null);. TextArea.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD TRAVERSAL KEYS,null);. Follow me on Twitter.
A curious developer's blog: Hello World
http://saracogl.blogspot.com/2009/02/hello-world.html
A curious developer's blog. 3 Şubat 2009 Salı. Public class HelloWorld {. Public static void main(String[] args) {. System.out.println("Hello, World");. Kaydol: Kayıt Yorumları (Atom). Interested in Agile, CMMI, Java, Spring, SOA, OSGI, HLA, Design Patterns, Defence Techs, Literature, Metaphysics, Self-Development. Follow me on Twitter. Bekir S. Ertugrul. C) A curious developer's blog. Created by Deluxe Templates. Design by ChocoTemplates.com.
A curious developer's blog: How to read Excel sheet in Java?
http://saracogl.blogspot.com/2009/12/how-to-read-excel-sheet-in-java.html
A curious developer's blog. 28 Aralık 2009 Pazartesi. How to read Excel sheet in Java? An example of reading and parsing an Excel file. We have a class (HomeObject) and this class has two attributes ('doorNo' and 'ownerName'). Public class HomeObject {. Private int doorNo;. Private String ownerName;. Public int getDoorNo() {. Public void setDoorNo(int doorNo) {. ThisdoorNo = doorNo;. Public String getOwnerName() {. Public void setOwnerName(String ownerName) {. ThisownerName = ownerName;. Result = " ;.
A curious developer's blog: Şubat 2009
http://saracogl.blogspot.com/2009_02_01_archive.html
A curious developer's blog. 3 Şubat 2009 Salı. Public class HelloWorld {. Public static void main(String[] args) {. System.out.println("Hello, World");. Interested in Agile, CMMI, Java, Spring, SOA, OSGI, HLA, Design Patterns, Defence Techs, Literature, Metaphysics, Self-Development. Follow me on Twitter. Bekir S. Ertugrul. C) A curious developer's blog. Created by Deluxe Templates. Design by ChocoTemplates.com.
A curious developer's blog: Ekim 2010
http://saracogl.blogspot.com/2010_10_01_archive.html
A curious developer's blog. 28 Ekim 2010 Perşembe. Two Columned Layout for standart forms. I have implemented a layout for panels with two columns. It calculates the width of the first column according to the widest component of first column. And, uses remained space for second column components. Besides, each row height is calculated according to each row's two inner components' heights. It may be useful for some cases. Import java.awt.Component;. Import java.awt.Container;. Private int verticalGap = 0;.
TOTAL LINKS TO THIS WEBSITE
10
Erens's Blog
Selingkuh, Ayah Tembak Mati Anaknya Dihadapan Ratusan Penduduk Desa. Di depan sekitar 300 pasang mata penduduk desa, seorang ayah yang menggenggam senjata AK-47 memberondong anak perempuannya sendiri yang sebelumnya disuruh membelakanginya. Baca lebih lanjut →. Kematian Osama bin Laden Diperingati. Ratusan orang di di kota Quetta, Pakistan, pada Kamis (2/5/2013), turun kejalan-jalan untuk memperingati dua tahun kematian Osama bin Laden, pendiri organisasi terorisme internasional al Qaeda. Umar Shihab ber...
erensel.com
Uzantısı sadece 56.99 TL. Bu web sayfası TURKTICARET.Net. Tarafından ücretsiz park edildi. İletişime Geç - erensel.com. Satılık Domain Alan Adı. Türkçe Domain Alan Adı. Mobil Ödeme ile Domain. Alan Adı Tahsis Formu. TR Domain İçin Gerekli Belgeler. Tek Sayfa Web Sitesi. Marka Tescili Nasıl Yapılır? Marka Tescil için Gerekli Evraklar. Online Marka Tescili Sorgulama. Yurt Dışı Marka Tescili. Bilg Prog. ve Veritabanı Tescili. Marka Tescil Belgesi Nasıl Alınır? Telif Hakkı Nasıl Alınır? Web Sitesi Satın AL.
Erensen.com
Home
Powered By Mega Holdings. Online, builder, online builder. MobileApps Co. best app maker in the market! What makes us so success in the smartphone industry? The standard Lorem Ipsum passage, used since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typese...Lorem Ips...
TTNet Webim
Yazılım Teknolojileri
Yazılım Teknolojileri, Java, CMMI, Agile, XP, Scrum. 24 Eylül 2013 Salı. Yerel Yum Deposu Oluşturmak. Rpm komutu ile bir paket kurmak istediğimizde eğer bağımlı paketler sistemimizde kurulu değilse paketi kurmamıza izin vermeyecektir. Yum ise bağımlı paketleri de kurabiliyor. O nedenle önemli kullanım kolaylığı sağlıyor. RHEL'e kayıtlı olmadığınız için yum'u kullanamıyorsanız, bu yazıda anlatılanları yaparak sisteminizde yerel bir yum deposu oluşturabilir ve yum'u kullanabilirsiniz. Bundan sonra yum'u ku...
EReNSEP - Home
RMF Occasional Policy Papers. Why Donald Trump's China policy is a trade war in the making. Onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow". Published: Wednesday, 04 January 2017 20:36. Written by John Weeks. What to do in Europe? Proposals from the Left. Published: Wednesday, 21 December 2016 11:09. Published: Sunday, 11 December 2016 23:03. The European Moneta...
erensertdemir7
3 Takipçi 2 Takip. Gerek internete bağlanmak gerekse birden çok bilgisayarda oyun oynamak için kullanıldığına sık sık şahit olduğumuz kablolu ağların ayrıntılarını biliyor muydunuz? Günümüzde kullanımı git gide azalsa da hala sık sık karşılaştığımız kablolu ağları biraz daha yakından tanıyalım ister misiniz? Kişisel bilgisayarınızın diğer bilgisayarlarla arasında dosya aktarımı yapmak , oyun oynamak , medya paylaşmak veya internete bağlanıp her şeyi yapmak için ihtiyaç duyduğumuz ağ bağlant...
Eren Ses Işık & Görüntü Sistemleri
153 Sok. No:24/A Bornova / İZMİR. 90(232) 339 83 64. 90(532) 692 43 70. 90(532) 308 34 74.