This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mongoose from 'mongoose'; | |
const Schema = mongoose.Schema; | |
const schemaOptions = { | |
timestamps: true | |
}; | |
// this defines a sub-schema that will be used inside the Product schema... | |
const variantSchema = new Schema({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parent child | |
request lock on mutex :loop | |
create child thread request lock on mutex (may be a timeout) | |
:loop | |
poll for button change | |
release lock on mutex | |
wait on barrier release lock on mutex (if not timeout) | |
wait on barrier (if not timeout) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# git change log generator | |
# https://gist.github.com/bnielsen1965 | |
# | |
# THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. | |
# EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES | |
# PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, | |
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# NodeJS Installer based on https://gist.github.com/trajakovic/ad9f91776dea3b495db0 | |
# | |
# Added version option and distinct commands for install, uninstall, path setting, | |
# and removepath setting. | |
# | |
# https://gist.github.com/bnielsen1965 | |
# | |
# THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Extend an objects properties by merging with additional object arguments. | |
* The source objects should be in a comma separated list after the target | |
* parameter. | |
* @param {object} target - The target object for the merge. | |
* @return {object} The final object from target merged with additional objects in the argument list. | |
*/ | |
self._extend = function _extend(target) { | |
var sources = [].slice.call(arguments, 1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# default settings | |
MOUNT_OPTIONS= | |
MOUNT_POINT= | |
MOUNT_PATH= | |
MOUNT_USER= | |
MOUNT_PASSWORD= | |
MOUNT_HOST= | |
MOUNT_COMMAND=mount |