Skip to content

Instantly share code, notes, and snippets.

View NerdyDeedsLLC's full-sized avatar
💣
Ministry of Code Deletion

Jason Jurusz (@JJ) NerdyDeedsLLC

💣
Ministry of Code Deletion
  • Nerdy Deeds, LLC
  • Kansas City, MO, USA
  • 17:42 (UTC -05:00)
View GitHub Profile
@NerdyDeedsLLC
NerdyDeedsLLC / Programming_Languages_Extensions.json
Created January 19, 2023 12:28 — forked from ppisarczyk/Programming_Languages_Extensions.json
Programming Languages and their File Extensions
[
{
"name":"ABAP",
"type":"programming",
"extensions":[
".abap"
]
},
{
"name":"AGS Script",
@NerdyDeedsLLC
NerdyDeedsLLC / SingletonDefaultExportInstance.js
Created November 23, 2019 20:22 — forked from dmnsgn/SingletonDefaultExportInstance.js
ES6 singleton pattern: module default exports an instance
class SingletonDefaultExportInstance {
constructor() {
this._type = 'SingletonDefaultExportInstance';
}
singletonMethod() {
return 'singletonMethod';
}
static staticMethod() {