Skip to content

Instantly share code, notes, and snippets.

View ozyx's full-sized avatar

Jesse Mazzella ozyx

  • 21:48 (UTC -07:00)
View GitHub Profile
{
"TEST_GROUP": [
{
"name": "Past event 1",
"start": 1663014210606,
"end": 1663037599606,
"type": "TEST-GROUP",
"color": "orange",
"textColor": "white"
}
@ozyx
ozyx / tasks.json
Created May 17, 2018 01:37
tasks.json to run `make clean` followed by `make`
{
// 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": {
@ozyx
ozyx / tasks.json
Last active August 27, 2021 10:12
Assemble, Link and Execute MASM as default build task in VSCode (with problem matcher)
{
// 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",
@ozyx
ozyx / mpd_conkyrc
Created February 25, 2017 20:22
Simple conkyrc showing MPD info
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,
@ozyx
ozyx / conkyrc
Created February 25, 2017 20:21
My Arch-Linux color schemed conkyrc file
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
@ozyx
ozyx / gulpfile.js
Created December 22, 2016 00:37
Gulpfile to automatically run tslint then build
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());
});
@ozyx
ozyx / wl3ps0-Student
Created October 12, 2016 05:36
Arch Linux - wifi-menu config file for connecting to Saddleback student wifi
Description='Saddleback Student Wifi'
Interface=wlp3s0
Connection=wireless
Security=wpa-configsection
IP=dhcp
IP6=stateless
WPAConfigSection=(
'ssid="Student"'
'key_mgmt=WPA-EAP'
'eap=PEAP'