Skip to content

Instantly share code, notes, and snippets.

View umairishaq's full-sized avatar

Umair Ishaq umairishaq

View GitHub Profile
@sathiyaseelan
sathiyaseelan / golang_setup.md
Last active April 1, 2024 18:51
Basics to setup a golang project repo in your local

Simple Guide to setup Golang in your Mac and clone a repo.

Setup Go and workspace

Type go in terminal, to verify the installation.

  • Create a Go workspace and set GO PATH
@jayhjkwon
jayhjkwon / BundleConfig.cs
Last active May 18, 2017 09:14
Minification of Require.js modules with ASP.NET Bundling and r.js
using System.Web;
using System.Web.Optimization;
namespace WebApplication4
{
public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
@cromwellryan
cromwellryan / Task.js
Created January 24, 2012 14:11
Knockout & Jasmine not mixing well
var TASKLISTMODULE = (function(module) {
module.Task = function (name, owner, duedate, status) {
var self = this;
self.name = ko.observable(name || '');
self.owner = ko.observable(owner || '');
self.duedate = ko.observable(duedate);
self.status = status || 'unassigned';