Skip to content

Instantly share code, notes, and snippets.

View agilare's full-sized avatar

Michel agilare

  • Genève
  • 13:16 (UTC +01:00)
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active March 25, 2025 08:20
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@vikeri
vikeri / symbolicapache
Created January 23, 2015 22:03
create symbolic link serving as url (apache in linux)
# Useful way to manage urls in Apache, this creates a symbolic link in the /var/www folder
sudo ln -s /dir/with/files /var/www/yoururl
@mindplay-dk
mindplay-dk / jquery.column.js
Created July 30, 2012 20:31
jQuery: find all cells (td/th) in a column of a table
/**
* Find all cells (td/th) in the column of the current cell.
* (excluding rows with cells that span multiple columns.)
*/
(function($) {
$.fn.column = function() {
return $(this)
.filter('th, td')