Skip to content

Instantly share code, notes, and snippets.

View 65's full-sized avatar

Duncan Isaksen-Loxton 65

View GitHub Profile
@65
65 / pinterest.js
Created February 26, 2012 01:28
pinterest buttons on every image in a blog post using jquery
$().ready(function() {
$('.entry-body img').each(function(){
var $permalink = $(this).parents('.entry').find('.permalink').attr('href');
$(this).wrap('<div class="pinme" style="' + $(this).attr('style') + '" />').after('<a href="http://pinterest.com/pin/create/button/?url=' + $permalink + '&media=' + $(this).attr('src') + '&description=' + $(this).attr('alt') + '" class="pin-it-button" count-layout="vertical">Pin It</a>');
});
$('.pinme').hover(function() {
$(this).children('iframe').css('display','block');
}, function() {
$(this).children('iframe').css('display','none');
@65
65 / error.txt
Created February 26, 2012 22:59
Gist embed code, and Wordpress shortcode
Error when loading gists from http://gist.github.com/.
@65
65 / comments.html
Created February 27, 2012 06:20
Typepad connect comments in advanced template
<MTEntryIfAllowComments>
<a id="comments"></a>
<h3 class="comments-header"><$MTTrans phrase="Comments"$></h3>
<div class="comments-content">
<div id="tpc_thread"></div>
<div style="display:none;" id="tpc_post_title"><$MTEntryTitle$></div>
<div style="display:none;" id="tpc_post_message"><$MTEntryBody$></div>
<script type="text/javascript">
var TPConnect = {};
@65
65 / bad.cfm
Created March 5, 2012 05:23
cf loop
<cfloop from="1" to="#upperLimit#" index="myIndex">
@65
65 / dsn.cfm
Created March 5, 2012 08:55
create coldfusion DSN via admin API
stDSN.driver = "MSSQLServer";
stDSN.name= "DBDSN";
stDSN.host = "192.168.101.109";
stDSN.port = "1433";
stDSN.selectmethod = "direct";
stDSN.database = "DBDSN";
stDSN.username = "DBUsername";
stDSN.password = "DBPassword";
// now create
dsObj.setMSSQL(argumentCollection=stDSN);
sp_fulltext_catalog 'SearchIndexName', 'drop'
go
sp_fulltext_service 'clean_up'
go
@65
65 / cfobject.net.cfm
Created March 5, 2012 09:20
using coldfusion .net integration
<!--- connect to the .NET object --->
<cfobject type=".NET" name="v3assembly.obj" class="V3Leisure.CABS.WebServices.Examples.CABSExamplesUI.BLL.#Method#" assembly="#application.path#\lib\CABSExamplesUI.BLL.dll" />
<!--- build up the info to send to the .NET assembly --->
<cfset v3assembly.uri = JavaCast("string","http://www.au.v3travel.com/CABS.WebServices/SearchServiceAdapters.asmx")>
<cfset v3assembly.xml = JavaCast("string",XMLParse(XML))>
<cfset v3assembly.bool = JavaCast("boolean",true)>
<cftry>
<!--- return the response from the V3 assembly --->
<cfreturn XmlParse(v3assembly.obj.SendRequest(v3assembly.uri,v3assembly.xml,v3assembly.bool))>
<cfcatch>
@65
65 / sshant.xml
Created March 5, 2012 09:26
ssh in ant build file
<target name="SSHunzip">
<echo message="Unzipping Zip file" />
<sshexec host="${projectURL}" username="${SSH.Username}" password="${SSH.Password}" trust="true" command="unzip -o ${FTP.Development.RemoteLocation}/${projectName}.${build.number}.${svn.info.rev}.zip -d ${FTP.Development.RemoteLocation}"/>
</target>
@65
65 / geocoded.sql
Created March 5, 2012 09:34
finding distance using SQL server between geocoded points
SELECT postcode, (3959*acos((sin(#latitude#/57.3) * sin(latitude/57.3))+ (cos(#latitude#/57.3) * cos(latitude/57.3) * cos((#longitude# - longitude)/57.3))))*8/5 AS exactDistance
FROM postcode
WHERE 1=1
ORDER BY (3959*acos((sin(#latitude#/57.3) * sin(latitude/57.3))+ (cos(#latitude#/57.3) * cos(latitude/57.3) * cos((#longitude# - longitude)/57.3))))*8/5
@65
65 / cfant.cfm
Created March 5, 2012 09:43
cfant tag
<cfset buildFile = 'e:\sites\' & SiteName & '\httpdocs\build\build.xml'>
<cfant buildFile="#buildFile#" defaultDirectory="" anthome="C:\Program Files\apache-ant-1.7.1\" messages="output" target="updateserver"/>