Protected: My Excel Functions
Protected: My SAS Notes
Describe your most difficult jobs/assignment
1) Describe your most difficult jobs/assignment
I have worked at Pacha Tour as a transfer guide, one day it was snowing and i was receiving about 20 clients at the airport, there was an enormous trafic jam, so i was late to welcome the tourists. When i went to the airport, there has been 1 hour when the tourists came in the airport, so before coming the airport, i called the help desk to say to announce for the clients to wait for me, when i met them, the tourists were angry but i apologized and explained the situation, also during the transfer, i sold all of the the excursions of Pacha Tours.
ASP – Jquery Ajax Form Post Türkçe karakter problemi
ASP - Jquery Ajax Form Post Türkçe karakter problemi için php deki "iconv" benzeri bir asp fonksiyonu....
Function ConvertFromUTF8(sIn)
Dim oIn: Set oIn = CreateObject("ADODB.Stream")
oIn.Open
oIn.CharSet = "WIndows-1254"
oIn.WriteText sIn
oIn.Position = 0
oIn.CharSet = "UTF-8"
ConvertFromUTF8 = oIn.ReadText
oIn.Close
End Function
kaynak: http://stackoverflow.com/questions/916118/classic-asp-how-to-convert-string-to-utf8-to-usc2
Brand Scorecard for Marketers
While the creative aspects of marketing come to mind first when most people think about an enterprise’s marketing function, it is really the analytical aspects that guide the overall implementation of programs and allocation of funds. We all like to admire the slick deliverables having to do with advertising and promotion, but let’s all be sure to pay attention to the tracking tools necessary to make executive decisions.
10 jQuery and non-jQuery javascript Rich Text Editors
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.
Çalışmaları Baskıya Yollarken Dikkat Edilmesi Gerekenler
Ç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.
List User Domains using GetObject
This article gives you some code to list or manage users from a domain using GetObject
Jquery Selector Filter Samples
Some Jquery Selector Examples
$(’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
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