jump to navigation

10 jQuery and non-jQuery javascript Rich Text Editors October 22, 2009

Posted by admin in : ASP, Jquery, PHP, css , add a comment

10 amazing free rich text editors that will boost your website functionality. I have collected 5 jQuery and 5 non-jQuery RTEs that come with simple features to office-like features. (more…)

Çalışmaları Baskıya Yollarken Dikkat Edilmesi Gerekenler September 9, 2009

Posted by admin in : Miscellaneous , 1 comment so far

ÇALIŞMAYI BASKIYA HAZIRLARKEN DİKKAT EDİLECEKLER
- Çalışmada kullanılan farklı resimlere aynı isimlerin verilmediğine dikkat edilmelidir.
Aynı isim verilen farklı resimlere sahip iş, servis bürosunda açıldığında bir resmi iki alanda da görebiliriz. Normalde çıkış ile ilgili bir hata (eksik resim) göremeyen çalışan bu işin film çıkışını alacaktır. Bu aşamadan sonra işteki hatanın ortaya çıkma sürecide tamamen şansa kalacaktır. Şanslı bir tasarımcı değilseniz iş basıldıktan sonra bu hata görülebilir ki bu da film çıkış, kalıp, kağıt, baskı gibi maliyetlerin karşılanması ve asla geri gelmeyecek zamanın kaybı demektir.

(more…)

List User Domains using GetObject July 16, 2009

Posted by admin in : ASP , 3comments

This article gives you some code to list or manage users from a domain using GetObject
(more…)

Jquery Selector Filter Samples June 16, 2009

Posted by admin in : Jquery , 2comments

$(’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…)