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
const express = require('express'); | |
const multer = require('multer'); | |
const path = require('path'); | |
const fs = require('fs'); | |
const { exec } = require('child_process'); | |
const Service = require('node-windows').Service; | |
const PRINTER_NAME = "Your_Printer_Name"; | |
const ACROBAT_PATH = 'C:\\Path\\To\\Acrobat\\Reader\\AcroRd32.exe'; | |
const app = 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
Verifying my Blockstack ID is secured with the address 1C5tqGcVFidGfhRbZdSaB7BMMg2c4DdAJL https://explorer.blockstack.org/address/1C5tqGcVFidGfhRbZdSaB7BMMg2c4DdAJL |
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
Test |
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
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script> | |
<script src="//cdn.rawgit.com/mckamey/countdownjs/master/countdown.min.js"></script> | |
<p>Accounting 2.2 due in <span id="acc22"><strong>3 days</strong>, <strong>10 hours</strong>, <strong>39 minutes</strong> and <strong>37 seconds</strong></span></p> | |
<p>Chemistry 2.7 due in <span id="chem27"><strong>3 days</strong>, <strong>10 hours</strong>, <strong>39 minutes</strong> and <strong>37 seconds</strong></span></p> | |
<p>500 Accounting Principles Assignment 2 is due in <span id="acc500"><strong>5 days</strong>, <strong>10 hours</strong>, <strong>39 minutes</strong> and <strong>37 seconds</strong></span></p> | |
<p>500 Accounting Principles Final Exam is due in <span id="acc500exam"><strong>24 days</strong>, <strong>10 hours</strong>, <strong>39 minutes</strong> and <strong>37 seconds</strong></span></p> | |
<script> | |
var acc22Due = "2015-10-12", | |
chem27Due = "2015-10-12", |
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
@import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Serif:400,700,400italic|Cantarell); | |
body { | |
background-color: #fff; | |
} | |
li, div, b, em, span, strong, i, p { | |
background-color: #fff; | |
font-family: 'PT Serif', serif; | |
font-size: 18px; |
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> | |
<head> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script> | |
<script src="//cdn.rawgit.com/mckamey/countdownjs/master/countdown.min.js"></script> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<p>Chemistry 2.3 is due in <span id="chem23"></span></p> | |
<p>500 Accounting Principles is due in <span id="acc500"></span></p> |
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() { | |
angular | |
.module('trackNCEA', []) | |
.controller('NceaController', function($scope) { | |
angular.extend(this, { | |
listOfSubjects: subjects, | |
level: 2, | |
sortType: 'standardNumber', |