Repository Analysis

LeCoupa/awesome-cheatsheets

👩‍💻👨‍💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.

3.6 Likely human-written View on GitHub
3.6
Adjusted Score
3.6
Raw Score
100%
Time Factor
2026-04-12
Last Push
45,941
Stars
JavaScript
Language
19,822
Lines of Code
54
Files
54
Pattern Hits
2026-05-31
Scan Date

Score History

Severity Breakdown

CRITICAL 0HIGH 0MEDIUM 13LOW 41

Pattern Findings

54 matches across 5 categories. Click a row to expand file-level details.

Over-Commented Block38 hits · 38 pts
SeverityFileLineSnippet
LOWtools/nanobox_boxfile.yml1# *****************************************************************************
LOWtools/git.sh141# Key to Effective Debugging
LOWtools/git.sh161
LOWtools/puppeteer.js221// The events workercreated and workerdestroyed are emitted on the page object to signal the worker lifecycle.
LOWtools/curl.sh61# WRITE OUT PARAMETERS
LOWtools/curl.sh81# %{num_connects} # shows the number of new connects made in the recent transfer.
LOWtools/curl.sh101 # host (or proxy) was completed.
LOWfrontend/ember.js701 *
LOWfrontend/ember.js721//
LOWfrontend/ember.js741// Ember Meetups
LOWfrontend/react.js101 // tells React that this component and its children need to be re-rendered with the updated state.
LOWfrontend/react.js121 componentWillReceiveProps(nextProps) { }
LOWfrontend/react.js141
LOWfrontend/react.js201// Render a React element into the DOM in the supplied container and return a reference
LOWfrontend/angular.js81// Binds style property width to the result of expression mySize in pixels. Units are optional.
LOWfrontend/angular.js101// <button (click)="movieplayer.play()">
LOWfrontend/angular.js141// the current value of conditionExpression.
LOWfrontend/angular.js341 { path: '**', component: ... },
LOWfrontend/vue.js421 * https://vuejs.org/v2/api/#Options-Composition
LOWfrontend/vue.js461
LOWfrontend/vue.js501// The instantiation options used for the current Vue instance.
LOWfrontend/vue.js521// be found at vm.$slots.foo). The default property contains any nodes not included in a named slot.
LOWfrontend/vue.js641// <span v-text="msg"></span>
LOWfrontend/vue.js661
LOWfrontend/vue.js681// <!-- Attaches an event listener to the element. The event type is denoted by the argument. -->
LOWfrontend/vue.js701// Prevent default: <button @click.prevent="doThis"></button>
LOWfrontend/vue.js721// Style binding: <div :style="{ fontSize: size + 'px' }"></div>
LOWfrontend/vue.js741// <!-- Skip compilation for this element and all its children. -->
LOWfrontend/vue.js781// <!-- registered under the parent component’s $refs object. If used on a plain DOM element, the -->
LOWbackend/django.py1# *****************************************************************************
LOWbackend/django.py21
LOWbackend/django.py41# CODING STYLE > DATABASE
LOWbackend/django.py101django-admin startproject <ProjectName> # create a new project directory structure
LOWbackend/sails.js561// Specify a where clause for filtering a query.
LOWbackend/sails.js621// Retrieve the name of the PubSub “room” for a given record.
LOWbackend/feathers.js61 // Retrieves a single resource with the given id from the service.
LOWbackend/feathers.js541// This will only run a (fast) counting query against the database and return a page object with
LOWbackend/feathers.js561// │
Self-Referential Comments8 hits · 16 pts
SeverityFileLineSnippet
MEDIUMdatabases/mysql.sh24CREATE DATABASE database_name; # Create a new database
MEDIUMdatabases/mysql.sh26CREATE TABLE table_name (column1 datatype, column2 datatype, ...); # Create a new table
MEDIUMdatabases/mysql.sh100CREATE INDEX idx_name ON table_name (column_name); # Create a standard index to speed up queries
MEDIUMdatabases/mysql.sh101CREATE UNIQUE INDEX idx_name ON table_name (column_name); # Create a unique index (no duplicate values)
MEDIUMtools/heroku.sh84heroku create appname # Creating a new application on Heroku here ( appname ) represent the name u give to
MEDIUMtools/heroku.sh110heroku create appname # Creating a heroku application here ( appname ) represent the name u give to yo
MEDIUMtools/docker.sh78docker-machine create --driver virtualbox myvm1 # Create a VM (Mac, Win7, Linux)
MEDIUMtools/aws.sh29aws s3 mb s3://<bucket_name> # Create a specific S3 bucket
Slop Phrases4 hits · 11 pts
SeverityFileLineSnippet
MEDIUMtools/heroku.sh57# or you can try the below command also on macOS
MEDIUMtools/heroku.sh87heroku git:remote -a thawing-inlet-61413 # For an existing heroku app, you can add remote to the application
MEDIUMtools/git.sh52# git log by default uses less command so you can use these: f=next page, b=prev page, search=/<query>, n=next match, p=
MEDIUMlanguages/bash.sh374# There are three built-ins that you can use to override this order: `command`, `builtin` and `enable`.
Fake / Example Data3 hits · 3 pts
SeverityFileLineSnippet
LOWdatabases/mongodb.sh44 name: 'John Doe',
LOWlanguages/typescript.md577 name: "John Doe",
LOWlanguages/typescript.md657 name: "John Doe",
AI Slop Vocabulary1 hit · 3 pts
SeverityFileLineSnippet
MEDIUMfrontend/vue.js226 // An alternative to string templates allowing you to leverage the full programmatic power of JavaScript.