Skip to content

Instantly share code, notes, and snippets.

View andylind's full-sized avatar

andylind andylind

View GitHub Profile
@andylind
andylind / git svn workflow.sh
Last active October 4, 2015 14:48
workflow for using git with svn
##############################
# Setup
##############################
# create local repo
git svn init -s http://url-of-repo
git svn fetch
git svn rebase
@andylind
andylind / jQuerycrossdomainajaxexample.html
Created May 11, 2011 01:04
jQuery cross domain ajax example
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>jQuery cross domain ajax example</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
@andylind
andylind / gist:720966
Created November 30, 2010 01:23
jquerymobiledemo.html
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Demo</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
</head>
<body>