jump to navigation

Jquery Selector Filter Samples June 16, 2009

Posted by admin in : Jquery , add a comment

$(’div.panel’)
All divs with class=“panel”
$(’p#intro’)
The paragraph with id=“intro”
$(’div#content a:visible’)
All visible links inside the div with id=“content”
$(’input[@name=email]’)
All input fields with name=“email”
$(’input[id*=plan]’)
All input fields whose id contains string ‘plan’
$(”table.striped > tr:odd”)
Odd rows in a table with a striped class
$(’a[@href^="http://"]’)
All external links (links that start with http://)
$(’p[a]’)
All paragraphs that contain one or more links

$(”p:even”);
All even <p> elements.
$(”tr:nth-child(1)”);
The first row of each table.
$(”body > div”);
Direct <div> children of <body>.
$(”a[href$=pdf]“);
Links to PDF files.
$(”body > div:has(a)”)
Direct <div> children of <body>-containing links.

$(”td:empty)”)
Empty table cells
$(’#plugins td.name’).filter(’:contains(ImageManager)’)
In the <div id=plugins>, find <td class=name> which contains the text ImageManager

excel function: inet_aton May 25, 2009

Posted by admin in : Excel , add a comment

inet_aton() converts the Internet host address cp from the standard numbers-and-dots notation into binary data and stores it in the structure that inp points to. inet_aton returns nonzero if the address is valid, zero if not.

Let say for ip A.B.C.D, the formula is :
ip = ((A*256+B)*256+C)*256

For example, if you have an ip of 74.125.45.100 (google.com), the formula would give a result of :
ip = ((74*256+125)*256+45)*256 = 1249717504

(more…)

List of Public DNS Servers April 6, 2009

Posted by admin in : Web , 1 comment so far

Domain name resolution is a necessity, some providers are better than others that’s the reason why I keep a list of public DNS servers mostly for testing. The list includes the IP addresses for two public DNS providers (Level3 Communications and OpenDNS), use their services at your own discretion.
(more…)

Extremely useful ASP functions March 24, 2009

Posted by admin in : ASP , add a comment

Please report any problems found to me ASAP, so I may fix them and build another release. I get literally hundreds of emails asking how to use these functions, and questions relating to them, etc. If you have any enquiries regarding these scripts, email me, but please allow up to 36 Hours for a response.

If you are interested in functions similar to the above but allow interaction with databases, then these will be available soon.

(more…)

İnternet üzerinden büyük kumar February 14, 2009

Posted by admin in : WorkM , add a comment

Bir sayı düşünün, bunu 300 katı ile çarpın, Foreks ile her 1 dolar: 300 dolardır. Bir koy dört kazan… Bul karayı al parayı… İşsizliğin arttığı, krizin zirve yaptığı bir dönemde internet üzerinden ‘Foreks’ işlemlerine yönelik ilanların sayısı hızla artıyor.

(more…)

Corporate Finance January 27, 2009

Posted by admin in : Miscellaneous , add a comment

Arguably, the role of a corporation’s management is to increase the value of the firm to its shareholders while observing applicable laws and responsibilities. Corporate finance deals with the strategic financial issues associated with achieving this goal, such as how the corporation should raise and manage its capital, what investments the firm should make, what portion of profits should be returned to shareholders in the form of dividends, and whether it makes sense to merge with or acquire another firm.

(more…)

Fixed Footers without JavaScript January 26, 2009

Posted by admin in : css , 1 comment so far

This footer behaviour is not a new idea; I’ve seen it on a few sites over the years, the most well known probably being version 7 of Shaun Inman’s site. Take a look at the ‘Work’ page with JavaScript enabled, then disabled to see the effect in action.
(more…)

Mülakat Sorulari January 22, 2009

Posted by admin in : Workstuff , add a comment

Hem aday hem de mülakatı yapan kişi için oldukça stresli bir konu olan mülakatlarda, giriş konuşmalarının oldukça samimi ve beliren soğuk havayı ortadan kaldırıcı nitelikte olması gereklidir. Mülakatın başında yapılacak olan kısa, samimi bir sohbet iki tarafın da bilgi alışverişini daha verimli hale getirmesini sağlayacaktır. Bunu sağlamanın yolu da mülakatı yönlendiren mülakatçının, mülakatla doğrudan ilişkisi olan veya olmayan sohbet türü bir girişe zaman ayırmasıdır. Bu iki taraf içinde stresi az da olsa ortadan kaldırmak için en etkili yöntemdir. Aday olarak bu tip bir sohbeti siz de başlatabilirsiniz ama ülkemizde daha çok mülakatçının girişi yaptığı gözlemlenmektedir. Aday olarak aşağıda belirtilen sorulara kesinlikle negatif yönden yaklaşmamalısınız. Aşağıda girişi sağlayacak bazı soru örnekleri verilmiştir:
(more…)

Levent ve Bülent January 16, 2009

Posted by admin in : Miscellaneous , add a comment

Levent ve Bülent oğullarıyla balık tutmaya gittiler. Levent oğlunun tuttuğu balığın iki katı kadar balık tuttu. Bülent de oğlunun tuttuğu balığın iki katı kadar balık tuttu. Toplam 21 balık tutulmuştu. Levent’in oğlunun adı Mert’ti.
- Bülent’in oğlunun adı nedir?
- Her biri kaç balık tutmuştur?

(more…)

En İyi 50 CSS Makalesi January 16, 2009

Posted by admin in : Movies, css , add a comment

Modern web tasarımı CSS olmadan olmaz. CSS’in esnekliği web geliştiricilerine güncellemesi daha kolay ve daha hızlı web siteleri yaratmasına olanak sağlar. Toxel, bu konuda müthiş bir arşiv oluşturmuş. İpuçları, teknikler, şablonlar, dersler, galeriler, kaynaklar ve araçlar hakkında bir 50 adet makaleyi bir araya toplamış. Mutlaka inceleyin.

(more…)