Skip to content

Instantly share code, notes, and snippets.

View NathalieLarsson's full-sized avatar

Nathalie Festin NathalieLarsson

View GitHub Profile
@amit1952
amit1952 / common.scss
Created March 16, 2012 04:45 — forked from eijik/common.scss
SCSS: Common scss
// COLOR ****************************************************/
$bordercolor: #888;
$activecolor: #D61518;
$aqua:#00FFFF;
$bisque:#ffe4c4;
$black:#000000;
$blue:#0000FF;
$brown:#A52A2A;
@perploug
perploug / gist:7334403
Last active October 11, 2016 12:57
how to hook into tree menus in V7
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Umbraco.Core;
namespace Meh.App_Code
{
public class ChangeMenu : ApplicationEventHandler
{
@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>