Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name SportBort
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Away with the sport articles!
// @author Prikkprikkprikk
// @match https://www.nrk.no/
// @icon https://www.google.com/s2/favicons?domain=nrk.no
// @grant none
// ==/UserScript==
@prikkprikkprikk
prikkprikkprikk / Superkontraktmal.md
Created April 9, 2021 11:04 — forked from poacher2k/Superkontraktmal.md
En åpen kildekode-kontrakt for web-designere og -utviklere av Fjellstad & Skogly Web

Superkontraktmal

En åpen kildekode-kontrakt for web-designere og -utviklere av [Fjellstad & Skogly] (http://www.fjellstadskogly.no/) basert på ["Contract Killer"] (http://stuffandnonsense.co.uk/projects/contract-killer/) av [Stuff & Nonsense] (http://stuffandnonsense.co.uk/) og [eksempler på oppdragsavtaler] (http://www.frilansinfo.no/nedlasting) av [Frilansinfo] (http://www.frilansinfo.no/).

  • Originalt utgitt: 12.02.2014
  • Revidert dato: 16.06.2015

Logo

NAVN - E-POST - TELEFON - NETTSIDE - ADRESSE - ORG.NR. - osv.

@prikkprikkprikk
prikkprikkprikk / gist:701d45dedc0f43ba075b6cfdc6fc25e8
Last active June 15, 2019 09:33
Excel: Split names (regardless of number of first and middle names)
These formulas will split names into first and middle names, and last name, respectively.
Alan Bega => Alan / Bega
Alan Brian Carr => Alan Brian / Carr
Alan Brian Cory Dorset => Alan Brian Cory / Dorset
… etc
Extract first and middle names:
= LEFT( B2; SEARCH("#"; SUBSTITUTE(B2;" "; "#"; LEN(B2) − LEN(SUBSTITUTE(B2; " "; "")))) -1 )