Skip to content

Instantly share code, notes, and snippets.

View mahboob-awan's full-sized avatar

Mahboob Ur Rasheed mahboob-awan

  • Netset AB
  • World Wide Web
View GitHub Profile
//=========== Tracking Code: Current Page/Custom page
//OLD
_gaq.push(["_trackPageview","/page-tracking-old"]);
//NEW
ga('send', 'pageview', '/page-tracking-new');
//Scala
def add(a: Int, b: Int): Int = a + b
//JavaScript
function add(a,b){ return a+b; }