Skip to content

Instantly share code, notes, and snippets.

View SarKurd's full-sized avatar
🤓
Java

Sarbast SarKurd

🤓
Java
View GitHub Profile
@Ginsor
Ginsor / gist:842ad581e5b98248a0413a0e19788d05
Created August 24, 2021 19:23
Destiny 2 - Season of the Lost- 3.3.0 - All new Text Strings
Destiny 2 - Season of the Lost - 3.3.0
All new Text Strings
-- BY GINSOR --
[A67FBD80][6E3E51D3]Represents consecutive matches completed in this activity.
Each match completed increases the reputation earned at the end of the match.
[46D8DE80][72CB5900]The Vanguard firmly believe that who you were before you become a Guardian holds no bearing on your new life.
[46D8DE80][52BF8000]The energy of the Ley Lines is too great for the Blind Well to handle all at once.
@merlinmann
merlinmann / wisdom.md
Last active November 14, 2025 03:16
Merlin's Wisdom Project (Draft)

Merlin's Wisdom Project

Or: “Everybody likes being given a glass of water.”

By Merlin Mann.

It's only advice for you because it had to be advice for me.

@sindresorhus
sindresorhus / esm-package.md
Last active December 5, 2025 20:00
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
  3. Stay on the existing version of the package until you can move to ESM.
@mweststrate
mweststrate / mobx.js
Created June 15, 2016 19:20
Local component state with MobX
import {observable} from "mobx"
import {observer} from "mobx-react"
@observer class Select extends React.Component {
@observable selection = null; /* MobX managed instance state */
constructor(props, context) {
super(props, context)
this.selection = props.values[0]
}
@alexhawkins
alexhawkins / nativeJavaScript.js
Last active November 1, 2024 12:00
Implementation of Native JavaScript Methods (forEach, Map, Filter, Reduce, Every, Some)
'use strict';
/*****************NATIVE forEACH*********************/
Array.prototype.myEach = function(callback) {
for (var i = 0; i < this.length; i++)
callback(this[i], i, this);
};
//tests