This file contains hidden or 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
FLAWS: choose 1 or more | |
Addiction I must learn to conquer the addictions and demons that twist my better nature. | |
Ambition I must learn to value things other than power and control. | |
Anger I must learn to let go of my need for revenge. | |
Anxiety I must learn to be confident in my ability to protect those I love. | |
Apathy I must learn to hold hope again for the future. | |
Control I must learn to let go of my need to control those around me. | |
Cynicism I must learn to have faith in things greater than myself once again. | |
Denial I must learn to allow myself to grieve for the things I have lost. |
This file contains hidden or 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
Starting new log file. | |
Version: 1.168 | |
Processing Ini File { | |
Module_name = Viking_Conquest2025 | |
Num Hints = 12 | |
Setting Map Min X = -257.903931 | |
Setting Map Max X = 281.758240 | |
Setting Map Min Y = -281.854553 | |
Setting Map Max Y = 290.571899 |
This file contains hidden or 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
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins |
This file contains hidden or 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
function callTimer() { | |
$('.counter').counterUp({ | |
delay: 20, | |
time: 2000 | |
}); | |
} | |
$(document).ready(function() { | |
var target = $('#target'); | |
$(window).scroll(function() { |
This file contains hidden or 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
var searchWords; | |
var resultQuantity; | |
var searchURL; | |
$(document).ready(function(){ | |
$('#submitBtn').on('click', function(){ | |
searchWords = encodeURIComponent(document.getElementById("searchBox").value); | |
//$("#returnResults").append('<li><a href="/user/messages">'+ searchWords + '</a></li>')}; |
This file contains hidden or 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
<template> | |
<div> | |
<button @click="newWorkoutButton">New Workout</button><br><br> | |
<div id="workout-form" v-if="newWorkout"> | |
<h2>New Workout</h2> | |
<input type="text" placeholder="Area you worked out." v-model="areaWorkedOut"><br> | |
<input type="text" placeholder="Workout length in minutes" v-model="workoutLength"><br> | |
<input type="text" placeholder="Current mood, eg: lazy, tired etc." v-model="workoutMood"/><br> | |
<textarea name="textarea" rows="5" cols="25" placeholder="Notes" v-model="notes"></textarea><br><br> | |
<button @click="createWorkout">Submit</button> |
This file contains hidden or 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
<template> | |
<div> | |
<button @click="newWorkoutButton">New Workout</button><br><br> | |
<div id="workout-form" v-if="newWorkout"> | |
<h2>New Workout</h2> | |
<input type="text" placeholder="Area you worked out." v-model="areaWorkedOut"><br> | |
<input type="text" placeholder="Workout length in minutes" v-model="workoutLength"><br> | |
<input type="text" placeholder="Current mood, eg: lazy, tired etc." v-model="workoutMood"/><br> | |
<textarea name="textarea" rows="5" cols="25" placeholder="Notes" v-model="notes"></textarea><br><br> | |
<button @click="createWorkout">Submit</button> |
This file contains hidden or 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
<template> | |
<div> | |
<h1>{{ title }}</h1> | |
</div> | |
</template> | |
<script> | |
import Vue from 'vue' |
This file contains hidden or 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
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
sass = require('gulp-sass'), | |
csso = require('gulp-csso'), | |
uglify = require('gulp-uglify'), | |
jade = require('gulp-jade'), | |
concat = require('gulp-concat'), | |
livereload = require('gulp-livereload'), // Livereload plugin needed: https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei | |
tinylr = require('tiny-lr'), | |
express = require('express'), |
This file contains hidden or 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
export class App extends React.Component { | |
render() { | |
return ( | |
<div> | |
<RecipeForm /> | |
<Recipes /> | |
</div> | |
); | |
} | |
} |
NewerOlder