Skip to content

Instantly share code, notes, and snippets.

@bayleedev
Created October 3, 2016 16:23
Show Gist options
  • Save bayleedev/ca5d60c08e889a9d8d77009f70b7ca56 to your computer and use it in GitHub Desktop.
Save bayleedev/ca5d60c08e889a9d8d77009f70b7ca56 to your computer and use it in GitHub Desktop.
> JSON.parse(fs.readFileSync('./results.dat'))
[ { title: 'FeatureFlag',
subtitle: 'https://featureflag.nr-ops.net/' },
{ title: 'FeatureFlag',
subtitle: 'https://staging-featureflag.newrelic.com/' },
{ title: 'Filterable Errors' },
{ title: 'Google Analytics' },
{ title: 'Thread Profile' },
{ title: 'Floorplan for 28' },
{ title: 'Floorplan for 29' },
{ title: 'GHE Notifications' },
{ title: 'Javascript Formatters' },
{ title: 'Confluence' },
{ title: 'BAM UI' },
{ title: 'Browser Agent' },
{ title: 'BAM Geo Backend' } ]
> JSON.parse(fs.readFileSync('./results.dat')).sort(function(a, b) { return 0 })
[ { title: 'Floorplan for 29' },
{ title: 'FeatureFlag',
subtitle: 'https://featureflag.nr-ops.net/' },
{ title: 'Filterable Errors' },
{ title: 'Google Analytics' },
{ title: 'Thread Profile' },
{ title: 'Floorplan for 28' },
{ title: 'FeatureFlag',
subtitle: 'https://staging-featureflag.newrelic.com/' },
{ title: 'GHE Notifications' },
{ title: 'Javascript Formatters' },
{ title: 'Confluence' },
{ title: 'BAM UI' },
{ title: 'Browser Agent' },
{ title: 'BAM Geo Backend' } ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment