Skip to content

Instantly share code, notes, and snippets.

View problem's full-sized avatar

Grayson Stebbins problem

View GitHub Profile
[8/26/15, 7:09:00 AM] Oleksandr Lukyanenko: https://metricinsights.atlassian.net/browse/MI-960
[8/26/15, 7:09:29 AM] Oleksandr Lukyanenko: What is 'Ability to Certify an element' ?
[8/26/15, 7:13:04 AM] Marius Moscovici: This came up with Adobe but was also requested by other customers (Pluralsight, etc..). They want to be able to identify certain elements as being certified. This typically means that someone in a centralized administration group has reviewed the metric/report/multi-metric/external report and validated that the logic used to build the object is consistent with the standards that exist in the organization. For instance, that sales or revenue or whatever is being measured in the visualization is defined correctly.
[8/26/15, 7:13:37 AM] Marius Moscovici: The idea is that many power users may create content but only certain content has been vetted and certified by a certification team.
[8/26/15, 7:14:11 AM] Marius Moscovici: This provides an indication to the user that they can definitely trust t
<html>
<head>
<title>Design @ MI</title>
<meta name="robots" content="noindex">
<link href='https://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<style>
body {font-family: arial;
color: #666;
padding:40px;}
h2 {font-family: 'Droid Serif', Georgia, serif; font-size: 16px; font-weight:normal; color:ccc;}
Delivered-To: grayson@metricinsights.com
Received: by 10.202.104.141 with SMTP id o13csp1687218oik;
Tue, 28 Jun 2016 10:10:02 -0700 (PDT)
X-Received: by 10.200.55.37 with SMTP id o34mr3869477qtb.70.1467133802767;
Tue, 28 Jun 2016 10:10:02 -0700 (PDT)
Return-Path: <notifications@app.metricinsights.com>
Received: from mailer.metricinsights.com (ec2-54-165-225-253.compute-1.amazonaws.com. [54.165.225.253])
by mx.google.com with ESMTP id y2si4317023qkb.121.2016.06.28.10.10.02
for <grayson@metricinsights.com>;
# Metric Editor --> Metrics
# Report Editor --> Reports
# Pivot Editor --> Pivots
# Chart Editor --> Charts
# Multi-Metric Editor --> Multi-Metrics
# External Report Editor --> External Reports
# External Content Editor --> Other External Content
# Bursts (right now Bursts function differently, we should show Bursts / Name of Burst)
# Dimension Editor --> Dimensions
# Measure Editor --> Measures
### Keybase proof
I hereby claim:
* I am problem on github.
* I am problem (https://keybase.io/problem) on keybase.
* I have a public key whose fingerprint is 1F49 4D0C 3306 4CAF E0FC 7272 B90E 7FBF 07C5 9A82
To claim this, I am signing this object:
@problem
problem / gist:b0d62fa31d28ee0741b4789c9c687f64
Created December 1, 2019 23:57
Metric Insights Monitoring Tool Events 2019-12-01
'The role <i>{role}</i> can not be confirmed on node {node}.' -> 'Attention: The role <i>{role}</i> can not be confirmed on node <strong>{node}</strong>.'
'The role <i>{role}</i> is determined on node {node}.' -> 'Attention: The role <i>{role}</i> has been assigned to node <strong>{node}</strong>.'
'The node <i>{name}</i> is registered by address {ip}' -> 'Attention: The node <i>{name}</i> is registered with address <strong>{ip}</strong>'
'The node <i>{name}</i> was restarted.' -> 'Attention: The node <i>{name}</i> was restarted.'
'The node <i>{name}</i> is unreachable for {min} minutes.' ->'Warning: The node <i>{name}</i> is unreachable for {min} minutes.'
'The node <i>{name}</i> is started to be available.' -> 'Attention: The node <i>{name}</i> is now available.'
'There is not enough disk space on node <i>{node}</i> ({path}).' -> 'Warning: Disk space is running low on node <strong>{node}</strong> ({path}).'
'There is high loading of CPU on node <i>{node}</i> for {min} minutes.' -> 'Warning: CPU usage high
<div class="sidebar left " style="display:inline-block;vertical-align: top;">
<div class="user-panel">
<div class="pull-left image">
<img src="/home/wall/image/type/user/thumb/comment/image/Y" class="rounded-circle" alt="User Image" />
</div>
<div class="pull-left info">
<p id="userNameP"></p>
</div>
</div>
<ul class="list-sidebar bg-default" style="height: 100%;">
@problem
problem / coding.mdc
Last active April 14, 2025 19:38
Cursor Rules for MI Apps
# Coding pattern preferences
– Always prefer simple solutions
– Avoid duplication of code whenever possible, which means checking for other areas of the codebase that might already have similar code and functionality
- Always implement handling for encoded HTML entities (decode them properly)
- Always implement alpha sorting when returning data for display in a table or list
- For date selection, implement date descending (most recent first)
– You are careful to only make changes that are: specifically requested, or that you are confident are well understood and related to the change being requested
– When fixing an issue or bug, do not introduce a new pattern or technology without first exhausting all options for the existing implementation. And if you finally do this, make sure to remove the old implementation afterwards so we don’t have duplicate logic.
– Keep the codebase very clean and organized
– Avoid writing scripts in files if possible, especially if the script is likely only to be run once