Skip to content

Instantly share code, notes, and snippets.

@sdevore
sdevore / CommentForm.vue
Created November 27, 2019 21:23 — forked from JamesRagonesi/CommentForm.vue
Reusable form with Vuex ORM
<form v-model="$v.valid" @submit.prevent="submit">
<input
type="text"
v-model.trim="$v.form.text.$model"
@input="$v.form.text.$touch()"
@blur="$v.form.text.$touch()"
/>
<button @click="submit">Submit</button>
</form>
@sdevore
sdevore / Comment.js
Created November 27, 2019 21:23 — forked from JamesRagonesi/Comment.js
Reusable Forms - Model
import { Model } from "@vuex-orm/core";
import { required, maxLength, minLength } from "vuelidate/lib/validators";
export default class Comment extends Model {
static fields() {
return {
id: this.attr(null),
text: this.string(""),
};
}
@sdevore
sdevore / 0_reuse_code.js
Created January 30, 2014 04:38
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# Copies the selected tweet's URL from Twitter.app, and
# opens corresponding page for Aaron Swartz's Twitter Viewer.
#
# Original by John Gruber: https://gist.github.com/1440914
# This version by Daniel Jalkut
#
# I'm hooking this up to a keyboard shortcut specifically in Twitter.app,
# using my scripting utility FastScripts.
#
# Requires "Access for Assistive Devices" to be enabled.
# Uncrustify 0.59
#
# General options
#
# The type of line endings
newlines = auto # auto/lf/crlf/cr
# The original size of tabs in the input
@sdevore
sdevore / gist:1267198
Created October 6, 2011 11:35 — forked from redsweater/gist:1266047
If you ship Growl framework in a Mac App Store target… add this build phase to strip PPC
#!/bin/sh
echo "Stripping PPC from Growl framework..."
cd "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Contents/Frameworks/Growl.framework/Versions/Current"
lipo ./Growl -verify_arch ppc
if test $? -ne 1 ; then
lipo ./Growl -remove ppc -output ./Growl
fi
- (void)loadDefaultSettings
{
NSMutableDictionary *defaults = [NSMutableDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Default-Settings" ofType:@"plist"]];
// other setup...
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithDictionary:defaults]];
}
- (void)resetDefaultSettings