Skip to content

Instantly share code, notes, and snippets.

View ctsstc's full-sized avatar
🔥
me = new Person(new Year(2019+5));

Cody Swartz ctsstc

🔥
me = new Person(new Year(2019+5));
View GitHub Profile
@ctsstc
ctsstc / tabs-outliner-collapse-all.js
Last active June 15, 2023 19:24
Tabs Outliner - Collapse All
treeView.treeModel.currentSession_rootNode.subnodes.forEach(node => node.setCollapsing(true))
class Animal {
static emote() {
let className = this.name;//this.constructor.name;
debugger
let emote = className == 'Animal' ? 'Cannot call emote() directly from Animal class' : `${className} does not implement execute()`;
console.log(emote);
return emote;
}
}
const express = require('express');
const router = express.Router();
const Product = require('../models/Product');
router.get('/', function (req, res, next) {
let perPage = 3;
let page = parseInt(req.query.page) || 0;
let pages = 0;
let nextUrl = '';
@ctsstc
ctsstc / .eslintrc.json
Created May 20, 2017 00:26
eslint for sanity
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
var qpNotification = {
enabled: true,
notificationTimeout: 5000,
getPermission: function(callback) {
if (typeof Notification == 'undefined') {
return false;
}
Notification.requestPermission(function (permission) {
if (callback !== undefined)
{
var YTThumbQuality = {
_default: "default",
mqdefault: "mqdefault",
sddefault: "sddefault",
hqdefault: "hqdefault"
}
var qpNotification = {
enabled: true,
notificationTimeout: 5000,
$('#staff_mgmt_org_chart_open_positions>tbody>tr>td>table>tbody>tr td.kc-staffchart-column').each(function(){
if ($(this).text().indexOf("position closed") > -1) {
//$(this).css('background-color', "red");
// Get the parent container and the next container with the description
var container = $(this).parent().parent().parent().parent().parent();
var description = container.next();
// Fade out closed positions and their description
container.css('opacity', '.4');