Scroll to an element with scrolling and color animation to the concerned element with the URL hash (e.g. http://example.com/#somename)
Need jquery-color plugin for color animation
-- You know how accurate it is | |
SELECT * | |
FROM ADDRESS_TABLE | |
WHERE ( ADDRESS LIKE '%北京%' | |
OR ADDRESS LIKE '%湖南%' | |
OR ADDRESS LIKE '%長沙%' | |
OR ADDRESS LIKE '%天津%' | |
OR ADDRESS LIKE '%廣東%' | |
OR ADDRESS LIKE '%廣州%' | |
OR ADDRESS LIKE '%河北%' |
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head |
javascript:(function(){if(window._bak_md){document.onmousedown=window._bak_md;window._bak_md=null;}else{window._bak_md=document.onmousedown||function(){};document.onmousedown=function(e){e=e||window.event;t=e.target;if(t.tagName=='SELECT'){x=document.createElement('textarea');for(i=0;i<t.options.length;i++)x.value+=((i>0?'\n':'')+t.options[i].textContent);t.parentNode.insertBefore(x,t);e.preventDefault();e.stopPropagation();}};}})(); |
SELECT CUSTOMER_ID "Customer ID", | |
ID_TEXT "ID Text", | |
SUBSTR (ID_TEXT, 7, 8) "Birthday in ID", | |
TO_CHAR (DATE_OF_BIRTH, 'DD-MON-YYYY') "Birthday in DB", | |
CASE | |
WHEN SUBSTR (ID_TEXT, 7, 6) = TO_CHAR (DATE_OF_BIRTH, 'YYYYMM') | |
THEN | |
'Incorrect day, year and month correct' | |
WHEN SUBSTR (ID_TEXT, 11, 4) = TO_CHAR (DATE_OF_BIRTH, 'MMDD') | |
THEN |
.myTestAd {height: 1px;} |
rundll32.exe user32.dll,LockWorkStation |
// Parent Window | |
$('button').click(function(e) { | |
// This doesn't work | |
$('#container iframe').contents().find('body').trigger('myevent'); | |
// This works | |
$('#container iframe').each(function(){ | |
this.contentWindow.$('body').trigger('myevent'); | |
}); | |
}); |
# jekyll-less-nodejs.rb | |
# | |
# Jekyll plugin to convert Less files to CSS using node.js | |
# Modified from jekyll-less (https://github.com/zroger/jekyll-less, version 85d6e73dc7) | |
# | |
# Twitter: @angusdev | |
# Released under APL 2.0 | |
# | |
# | |
# In windows, there is not easy (or no solution) to install therubyracer, which is a dependency |
.bs-callout { | |
border-left: 3px solid #eee; | |
margin: 20px 0; | |
padding: 20px; | |
} | |
.bs-callout h4 { | |
margin-bottom: 5px; | |
margin-top: 0; | |
} | |
.bs-callout p:last-child { |
Scroll to an element with scrolling and color animation to the concerned element with the URL hash (e.g. http://example.com/#somename)
Need jquery-color plugin for color animation