Skip to content

Instantly share code, notes, and snippets.

View ChrisBibby's full-sized avatar
🤓
...

Chris Bibby ChrisBibby

🤓
...
View GitHub Profile
@ChrisBibby
ChrisBibby / clock.html
Created February 3, 2019 12:07 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
<#
Author: Chris Bibby
Date: 11-October-2020
Description: Simple powershell script to start/stop the Tobii Eyetracker service.
How To Use: Can be run from a shortcut using the Target: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File <insert path to script>\tobii.ps1
#>
$service = get-service TobiiIS5LEYETRACKER5 # Name of service to track, can be changed to stop/start any service.
if ($service.Status -eq "Stopped") {
$service.start();
@ChrisBibby
ChrisBibby / urls.md
Created June 11, 2021 13:29
Useful URL's
@ChrisBibby
ChrisBibby / checkstyle.xml
Created March 29, 2024 21:27
Java Checkstyle - Modified Google Style (no javadoc, line length 120)
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<!--
Checkstyle configuration that checks the Google coding conventions from Google Java Style
that can be found at https://google.github.io/styleguide/javaguide.html
Checkstyle is very configurable. Be sure to read the documentation at