DİKKAT!
Sağda solda “BLOGGER DNS EKLEYİCİ”, “BLOGGER DNS DEĞİŞTİRİCİ”, “BLOGSPOT PROGRAMI” gibi içerikleri yayınlayan sakın sitelere itibar etmeyin! O sitelerden bu gibi dosyaları indirmeyin, açmayın. Böyle bir program yoktur…
Açıkcası çok fazla söze hacet yok zannımca Blogspot’un kapatılması mevzusu üzerine. O yüzden, ben sadece blogspot.com‘a nasıl girilir onu anlatmaya çalışacağım, naçizane.
Resimlerdeki sıralamayla şıppadarak girebilirsiniz Blogspot’a engelleri aşıp…
// Hatırlatma: Bu ayarlar “Windows XP” için geçerlidir. Ayrıca tüm işlemleri yaptığınız halde giriş yapamazsanız, sayfayı Ctrl+F5 yaparak yenileyiniz. Gene olmazsa Ağ Bağlantısı’nı devre dışı bırakıp tekrar aktif ediniz. Gene olmazsa PC’yi reset’leyiniz. Daha da olmazsa kapatıp yatınız (gerilmeye gerek yok yani).
Evet, başlayalım…
1. Görev çubuğundaki Kablolu/Kablosuz Ağ Bağlantısı ikonu’na tık (tık).
2. Özelliklere tık.
3. Internet Erişimi Kuralları (TCP/IP) şeysine tık tık.
4. Aşağıdaki DNS adreslerini kullan’a tık.
5. Buradaki kutucuklara aşağıdaki DNS adreslerini yazıyoruz.
// Adresleri yazarken atlama yapmak için Boşluk tuşuna basılacak!
- 156.154.70.22, 156.154.71.22
- Açık olan tüm Ağ Bağlantısı pencerelerine Tamam, Tamam deyip bekliyoruz.
- 1, 2, 3, goo…
// Elinize sağlık.
// If you do not need Inheritances or constructors!
Sometimes, it could be really annoying to use ‘new’ keyword in JavaScript. If I use an object recursively and use new and new and new new new, then I know that I will be annoyed by this… Also I know that, if I will use new, then I must construct the objects using prototypes (not always). Besides, off course others could say, hey man what does it matter to use it or not, it’s just tree chars. Yes, it is true, just tree chars. But, I think I love to make my works by the handiest way and thus I will talk about how to realize it now.
1. Using new’s
Without prototype;
function User(id, name, pass) {
this.id = id;
this.name = name;
this.pass = pass;
this.write = function(x) {
document.write(this[x]);
}
}
Hi all!
I know that is true, CodeIgniter is very powerful framework and I’m really happy for using it. But I must admit that I didn’t like its Pagination links. :)
Why?
Because, I can’t do paging with page numbers. So, when I click on (for example) 2th link from page links (like 1 2 3), it is setting the page value as 10 on the URL (by $per_page = 10), then URL looks like this; ../blog/page/10. And if link is 3, URL will be like ../blog/page/20. But I’m not viewing 10th page at that moment, I’m viewing the 2th page.
So, I thought to change this simply and made the work below.
Herkese merhaba!
CodeIgniter MVC yapısına sahip, belki de en harika framework’lerden bir tanesi şu an itibariyle. Zira içerdiği bir çok özellik sayesinde, bize yapmak istediklerimizi sadece bir kaç satır kod yazarak gerçekleştirebilme imkanı veriyor. Ancak doğruyu söylemek gerekirse, bu pratik özellikleriyle beraber bazı eksiklerinin olduğu da bir gerçek.
Eğer meydana getirdiğimiz tüm projelerde SEO’ın öneminin farkında isek, bizim için vazgeçilmez şeylerden birinin de ‘readable urls’ olması gerekir. CodeIgniter içerisinde barındırdığı url_title ile bunu zaten yapabilmemize olanak sağlıyor, ancak söz konusu metin Türkçe karakterler içeriyorsa metin içerisinden bu karakterlerin de temizlendiğini göreceksiniz.
The images on your pages ever not loaded? Maybe… Well, have you ever noticed that?
1- Yes, I have.
2- No, how would it be?
If your answer is alike the second answer, now I am gonna talk about a quite simple method. With this method, you can informed easily and instantly about that your images not loaded and maybe you must. Yes, sometimes we need to know those image load failures, otherwise we can lose our visitors as a result of this non-tracking.
I want to talk about a method which I use on buttons and it should be different from others by you. With this method, you will see a little animation on the buttons when they pressed on. I recommend you to see this article if you are bored with the fixed buttons.
The buttons could be fixed when some CSS codes applied on them. For example, the CSS codes below will disable the animation of which button got applied.
.button {
background-color: #ccc;
border-width: 2px;
border-style: solid;
border-color: #eee #999 #999 #eee;
}
In fact, I was very excited when I heard its “pipelining” feature as a Firefox user. Because, this feature does speed up the Firefox 100% according to rumors and thence I had decided to try it. After using the Firefox with this for quite a while, I noticed the slowness on the page load. So I was going crazy when I try to open Facebook because of images loadings. I could not bear this situation because it was lasting a long time and I have not used Firefox for a while. So, I was broken with Firefox now :).
A few months ago I was designing an image gallery contains thumbnails. But I saw the thumbnails were in a mess. In order to fix this distorted preview, I thought about a solution method and applied it because of I got annoyed of this. Now, I am gonna talk about this method.
Yes, we can not expect that the thumbnails should be a fixed size every time if the image gallery has a dynamic content. Because, the thumbnails will be uploaded to server resizing by uploader program (PHP etc) depending on a resize algorithm. Therefore, it is possible to see a distorted preview where are the thumbnails.
Sometimes, we want that the pages which we code are have same action in all browsers and for that we do some extra operations. Now, I will explain how can we restrict or stop the resizing feature on Safari for the textarea elements and remove online style for the textarea and input elements.
Hi everyone!
Yes, I think the time had come to have a blog page belongs to me. In the end I have been able to open my blog page even it is a little bit late because of my indecision on to determine the domain name and my some works on WordPress theme. In fact, it is important to fill it with useful informations and articles rather than open it and as I find time I will try for this.