Skip to content

Instantly share code, notes, and snippets.

View rohit-lakhanpal's full-sized avatar

Rohit Lakhanpal rohit-lakhanpal

  • Melbourne, VIC, Australia
  • 03:16 (UTC +10:00)
View GitHub Profile
@rohit-lakhanpal
rohit-lakhanpal / discovery-workshop.md
Last active May 9, 2024 04:01
The goal of this interactive session is to deeply understand your business and technology objectives. Through a blend of discussions around business landscape, product offerings, and technical deep dives, we aim to identify areas of opportunity and innovation that align with your goals. We encourage open dialogue and look forward to learning mor…

🌟 Discovery Workshop Agenda

Welcome to our discovery workshop. The goal of this interactive session is to deeply understand your business and technology objectives. Through a blend of discussions around business landscape, product offerings, and technical deep dives, we aim to identify areas of opportunity and innovation that align with your goals. We encourage open dialogue and look forward to learning more about your business.

Part 1: 🚀 Business Landscape & Vision

  • Introduction: Get to know the Organization
    • Organization Snapshot: Size, locations, operating geos (business & customers), key roles and responsibilities, tech partners
    • Sharing your Story: What is your mission and vision?
    • Business Reality: Current metrics (ARR v/s Services)
@ju2wheels
ju2wheels / Dockerfile
Last active March 9, 2024 13:37
Docker Dockerfile reference template
# Last updated: 08/24/2916
#
# Total instructions available: 18
#
# https://docs.docker.com/engine/reference/builder/
#
# You can use a .dockerignore file in the same context directory as
# your Dockerfile to ignore files in the context before sending them
# to the Docker daemon for building to speed up building.
@jkresner
jkresner / Global.asax
Created October 30, 2012 20:20
Asp .net Mvc 4 Proxy Server/Controller (For help with Cross Domain Request)
public class WebApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
RouteTable.Routes.MapRoute("HttpProxy", "proxy/{*path}", new { controller = "Proxy", action = "Http" })
}
}