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
// Animation Specfic stuff related to carousel | |
// All of the following mixins were built by me | |
// so... blame me if they don't work | |
// | |
// This file is not repsonsive. I am working on that right, in a project | |
// | |
// This file does not rely on any other libraries to work. Only SASS | |
@mixin keyframes($name) { | |
@-webkit-keyframes #{$name} { |
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
@mixin keyframes( $animationName ) | |
{ | |
@-webkit-keyframes $animationName { | |
@content; | |
} | |
@-moz-keyframes $animationName { | |
@content; | |
} | |
@-o-keyframes $animationName { | |
@content; |
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 plusCtrl($scope, $resource){ | |
$scope.UserID = '<!-- User ID Here! -->'; | |
$scope.Key = '<!-- GoogleAPI Access Key Here! -->'; | |
$scope.Activity = $resource( | |
'https://www.googleapis.com/plus/v1/people/:id/activities/public?key=:key&callback=JSON_CALLBACK', | |
{ | |
id: $scope.UserID, key: $scope.Key | |
}, | |
{ |
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 plusCtrl($scope, $resource){ | |
$scope.plus = $resource('https://www.googleapis.com/plus/v1/people/<!--Google User ID Here-->', | |
{key: '<!--Your Google Access Key Here!-->', callback: 'JSON_CALLBACK'}, | |
{get: {method: 'JSONP'}}); | |
$scope.plusFeed = $scope.plus.get(); | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Arrays | |
{ | |
class List | |
{ |
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
class Timesheet_model extends CI_Model{ | |
public function insert($name, $date, $wrkHrs, $vacHrs, $sickHrs, $holiday){ | |
/** Check the date that the client is trying to insert for, | |
* see if it already exists. If so, return a error message. | |
* If not, then perform the insert statment. | |
*/ | |
//Prepare the query |
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
class Users extends CI_Model { | |
public function __construct() | |
{ | |
parent::__construct(); | |
} | |
public function getUser($user) | |
{ |
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 circle(){ | |
canvas = document.getElementById('canvas'); | |
ctx = canvas.getContext('2d'); | |
x = 115; | |
y = canvas.height / 2; | |
radius = 95; | |
counterClockwise = false; | |
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 data = { | |
contact :'http://www.raycocopiers.com/salesquote.php', | |
products : { | |
bwprinters : { | |
MLP150 : { | |
model: 'MLP150', | |
img: 'img/printers_bw/MLP150DN.gif', | |
link: "products/bwprinters/mlp150.php", | |
desc: [ | |
'Fast, 50 page per minute print speed', |
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
<!DOCTYPE html> | |
<html lang=en> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Adventure Time!</title> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> |