Skip to content

Instantly share code, notes, and snippets.

View raoulduke's full-sized avatar
🐢

Matt K raoulduke

🐢
  • Etobicoke
  • 00:13 (UTC -04:00)
View GitHub Profile
@raoulduke
raoulduke / pull-chain.css
Created February 4, 2021 01:59
HTML/CSS/JS Lamp Pull Chain
#light-switch {
position: fixed;
top: -1.5em;
right: 1em;
text-align: center;
cursor: pointer;
z-index: 1021;
}
#light-switch div.rounded-circle {
@raoulduke
raoulduke / logmond.sh
Last active August 19, 2021 17:32
Log monitor with email
#!/bin/bash
# Monitor file for changes and send email notification
# Usage: ./logmond.sh /path/to/file recipient@domain.com
usage() {
echo "Usage: ./logmond.sh /path/to/file recipient@domain.com"
}
if [ "$#" -ne 2 ]; then
usage
@raoulduke
raoulduke / fitnessdepot_inventory_alert.php
Last active February 3, 2021 22:23
Track FitnessDepot inventory by SKU
<?php
$sku = 'PBSEXP50';
$url = 'https://www.fitnessdepot.ca/WebService/store-inventory.php?store_id=6&price=549.88&sku=' . $sku;
// List of nodes I don't want to check, some store inventory is not up to date
$ignoreNodes = [
'Oakville',
'Call or Email to Order1-877-776-8547ecommerce@fitnessdepot.ca'
];
$foundNodes = [];
@raoulduke
raoulduke / regExMatches.c
Last active November 29, 2021 15:57
C regex get all matches
#include <stdio.h>
#include <string.h>
#include <regex.h>
#define TEST_REGEX "^.*\\/([a-zA-Z_.]*)\\.log : [A-Z]{3} [0-9]{2}\\/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]{6} .* : (.*)$"
#define MAX_REGEX_MATCHES 5
#define MAX_STRING_SIZE 1000
#define MAX_ERR_LENGTH 50
/**
package main
import (
"fmt"
"os"
"path/filepath"
"regexp"
)
func main() {
@raoulduke
raoulduke / config
Created February 3, 2018 19:30
SSH config for multiple GitHub accounts
# Work
Host github.com-work
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_work
# Personal
Host github.com-personal
HostName github.com
User git