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_GROUP": [ | |
{ | |
"name": "Past event 1", | |
"start": 1663014210606, | |
"end": 1663037599606, | |
"type": "TEST-GROUP", | |
"color": "orange", | |
"textColor": "white" | |
} |
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"type": "shell", | |
"command": "make", | |
"group": { |
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "assemble", | |
"type": "shell", | |
"args": [ | |
"/c", |
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
conky.config = { | |
alignment = 'top_left', | |
maximum_width = 500, | |
minimum_width = 300, | |
border_width = 1, | |
font = 'Terminus:size=10', | |
gap_x = 20, | |
gap_y = 20, | |
default_color = FFFFFF, | |
own_window = true, |
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
background yes | |
use_xft yes | |
xftfont Liberation Sans:size=9 | |
update_interval 1 | |
own_window yes | |
own_window_transparent no | |
own_window_argb_value 80 | |
own_window_type desktop | |
own_window_argb_visual yes | |
temperature_unit fahrenheit |
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"); | |
var ts = require("gulp-typescript"); | |
var tsProject = ts.createProject("tsconfig.json"); | |
const gulp_tslint = require('gulp-tslint'); | |
gulp.task('tslint', () => { | |
return gulp.src(['**/*.ts', '!**/*.d.ts', '!node_modules/**']) | |
.pipe(gulp_tslint()) | |
.pipe(gulp_tslint.report()); | |
}); |
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
Description='Saddleback Student Wifi' | |
Interface=wlp3s0 | |
Connection=wireless | |
Security=wpa-configsection | |
IP=dhcp | |
IP6=stateless | |
WPAConfigSection=( | |
'ssid="Student"' | |
'key_mgmt=WPA-EAP' | |
'eap=PEAP' |