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> | |
); | |
} | |
} |
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
This is a practice specification of a 4-function calculator. | |
User Stories: | |
User presses number buttons | |
User presses operation buttons to calculate the total | |
User is shown the result of calculation | |
User can clear the display | |
Psuedo: |
NewerOlder