Skip to content

Instantly share code, notes, and snippets.

View tonyjoanes's full-sized avatar
😏
LLM Learning

Tony Joanes tonyjoanes

😏
LLM Learning
View GitHub Profile
@tonyjoanes
tonyjoanes / angularjs_controllers3.js
Created October 18, 2019 14:12
AngularJS Controllers function declaration at the top
(function () {
'use strict';
var MyController = function (dependencyOne, dependecyTwo) {
var vm = this;
vm.data = {
greetingMessage: 'Hello I am some data from the controller',
clickHandler: dependecyOne.click
}
@tonyjoanes
tonyjoanes / AngularJS_Services.js
Created October 21, 2019 11:23
AngularJS Services
(function () {
'use strict';
var serviceId = 'myService';
angular.module('app', serviceId);
myService.$inject = ['dependencyOne', 'dependencyTwo'];
function myService(
@tonyjoanes
tonyjoanes / 10xExcellenceAnalysisPrompt.md
Last active January 13, 2025 11:08
10X Excellence Analysis Template

You are tasked with analyzing a situation and providing exceptional, 10x solutions using a specific framework. Your goal is to go above and beyond standard approaches, identifying opportunities for differentiation and lasting advantages through exceptional effort.

Here's the situation you'll be analyzing:

<primary_challenge> {{PRIMARY_CHALLENGE}} </primary_challenge>

<current_industry_approach> {{CURRENT_INDUSTRY_APPROACH}}