Skip to content

Instantly share code, notes, and snippets.

View aquaductape's full-sized avatar
🪼
ScyllaDB

Caleb Taylor aquaductape

🪼
ScyllaDB
View GitHub Profile
@aquaductape
aquaductape / strictEquals.js
Last active January 16, 2023 01:33
exercise if two are values are strictly equal without using Equality operators: `==`, `===`, `!=`, `!==`, or `Object.is()`
// exercise if two are values are strictly equal
// without using Equality operators: ==, ===, !=, !==
// or Object.is()
const isObject = (val) => {
if (!val) return false;
return (typeof val).match(/object|function/);
};
const strictEquals = (a, b) => {
// a and b are both objects
@aquaductape
aquaductape / windows.js
Created October 15, 2019 23:36
Based on Rust's windows iteration method
Object.defineProperty(Array.prototype, 'windows', {
// Based on Rust's windows iteration method
// Unlike regular slice, these slices overlap, or rather panes through the array, hence the name windows
// If the size is greater than the slice it will not include it.
value: function(size) {
const length = this.length;
const arr = [];
for (let i = 0; i < length - size + 1; i++) {
const slice = [];
@aquaductape
aquaductape / zshrc
Last active September 23, 2021 07:57 — forked from LukeSmithxyz/zshrc
# Luke's config for the Zoomer Shell
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
@aquaductape
aquaductape / understanding_this.md
Last active July 2, 2019 16:54
understanding THIS in JavaScript

Understanding THIS

my guide is just a reinforcement by different sayings, bunch of quick tips and links on how to eyeball the determination what 'this'.

Determining THIS in Regular Function Expressions

function () { console.log(this) }

1.

  if called in the form of obj.func()
                       "this" === obj
                                 else
@aquaductape
aquaductape / mergeBottomUp.js
Last active June 20, 2019 16:28
most merge sort solutions are top down, which copy the array. I need an approach to mutates the array which is merge bottom up
const mergeSortBottomUp = arr => {
const length = arr.length;
let step = 1;
while (step < length) {
let left = 0;
while (left + step < length) {
mergeBottomUp(arr, left, step);
left += step * 2;
}
step *= 2;
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
Object.defineProperty(Array.prototype, 'mySort', {
// webkit and chrome uses quicksort
// mozilla uses merge sort
// For my sort algorithm, it uses merge sort
// But I also chose chrome's interpretation of callback return boolean value, just because I mainly use chrome
value: function(callback) {
@aquaductape
aquaductape / myReduce.js
Last active June 19, 2019 20:43
emulating reduce method
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
Object.defineProperty(Array.prototype, 'myReduce', {
value: function(callback, initialValue) {
if (typeof callback !== 'function') {
throw new TypeError(`${callback} is not a function`);
}
// throw error if array is empty, even a sparse array
// use filter(or use myFilter) method to remove empty values
@aquaductape
aquaductape / myEvery.js
Last active June 19, 2019 20:58
emulation of every method
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
Object.defineProperty(Array.prototype, 'myEvery', {
// if callback is arrow function then context will be set to outer scope regardless of providing context argument
value: function(callback, context) {
if (typeof callback !== 'function') {
throw new TypeError(`${callback} is not a function`);
}
const length = this.length;
@aquaductape
aquaductape / mySome.js
Last active June 19, 2019 21:00
emulating some method
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
Object.defineProperty(Array.prototype, 'mySome', {
// if callback is arrow function then context will be set to outer scope regardless of providing context argument
value: function(callback, context) {
if (typeof callback !== 'function') {
throw new TypeError(`${callback} is not a function`);
}
const length = this.length;
@aquaductape
aquaductape / myFind.js
Last active June 19, 2019 20:54
emulating find method
// Array prototype method, however this is not safe, since it is added to the global scope
// definedProperty makes method non-enumerable as well as adding new property to in this case, to Array prototype
Object.defineProperty(Array.prototype, 'myFind', {
// if callback is arrow function then context will be set to outer scope regardless of providing context argument
value: function(callback, context) {
if (typeof callback !== 'function') {
throw new TypeError(`${callback} is not a function`);
}
const length = this.length;