Skip to content

Instantly share code, notes, and snippets.

View paulallies's full-sized avatar
🖥️
Coding

Paul Allies paulallies

🖥️
Coding
View GitHub Profile
@paulallies
paulallies / dabblet.css
Created December 18, 2012 08:43
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@paulallies
paulallies / dabblet.html
Created December 18, 2012 08:44
Untitled
<!doctype html>
<head>
<head>
<title>This is a test</title>
</head>
<body>
<h2>Testing</h2>
</body>
</head>
@paulallies
paulallies / dabblet.html
Created December 18, 2012 09:52
Untitled
<!doctype html>
<head>
<head>
<title>This is a test</title>
</head>
<body>
<h2>Testing</h2>
</body>
</head>
@paulallies
paulallies / nodeinstall
Last active December 11, 2015 18:38
Installation of nodejs and npm on ubuntu
sudo apt-get install python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
@paulallies
paulallies / installsublimetext
Created January 26, 2013 13:58
Installation of sublime text 2 on ubuntu desktop
sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text
@paulallies
paulallies / Invoke Sql Backup
Created April 26, 2013 09:06
Powershell script for backing up database
## <Script>
### <Author>
### Chad Miller
### </Author>
### <Description>
### Excerpt from SQL Server Powershell Extensions (sqlpsx)
### http://sqlpsx.codeplex.com
### Defines backup and restore functions
### </Description>
### <Usage>
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active November 12, 2023 23:00
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>
@paulallies
paulallies / jsbin.saleso.html
Last active August 29, 2015 14:04
Google Maps Geoservice
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Geocoding service</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
@paulallies
paulallies / index.html
Created August 17, 2014 07:03
JQuery UI AutoComplete JQuery UI AutoComplete // source http://jsbin.com/lobaj/3
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="JQuery UI AutoComplete: Static DataSource" />
<link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<meta charset="utf-8">
<title>JQuery UI AutoComplete</title>
</head>
@paulallies
paulallies / nvm
Created August 20, 2014 11:29
install nvm
curl https://raw.github.com/creationix/nvm/master/install.sh | sh