Skip to content

Instantly share code, notes, and snippets.

@jhgorse
jhgorse / dereferencing the mac_address
Created June 29, 2013 12:06
Trying to dereference the mac_address within MACDriver.MACConfig
int fnet_stm32_set_hw_addr(fnet_netif_t *netif, unsigned char * hw_addr)
{
unsigned i;
(void)netif;
////MACDriver *ethif = (MACDriver *)((fnet_eth_if_t *)(netif->if_ptr))->if_cpu_ptr);
//MACConfig *config = ETHD1.config;
//fnet_mac_addr_t *mac_ptr = config->mac_address;
fnet_mac_addr_t *mac_ptr = ETHD1.config.mac_address;
for (i = 0; i < 6; i++)
@jhgorse
jhgorse / IQmol head CMake
Last active August 29, 2015 14:12
Working CMakeLists.txt for IQmol HEAD 12/26/2014
set(IQmol_Main_HEADERS
Main/AboutDialog.h
Main/FragmentTable.h
Main/HelpBrowser.h
Main/IQmolApplication.h
Main/MainWindow.h
Main/PeriodicTable.h
Main/PreferencesBrowser.h
Main/ToolBar.h
Main/Viewer.h
@jhgorse
jhgorse / README.md
Last active November 3, 2015 09:11 — forked from stephank/README.md
PulseAudio homebrew formula

A [Homebrew] formula for installing [PulseAudio] on OS X.

Tested on 10.10.

Summary of changes:

  • change module-detect => module-coreaudio-detect
  • comment out module-console-kit
@jhgorse
jhgorse / OpenAFS-Running robotest on master.md
Last active July 7, 2016 17:53
OpenAFS: Running robotest on master

1. Build openafs 1.6.18

Make sure you have no uncommitted changes in your openafs git work directory (or git clone to a separate directory) then,

git checkout openafs-stable-1_6_18 && git clean -q -f -d -x && ./regen.sh && ./configure --enable-debug --enable-transarc-paths && make -j6 aklog

sudo cp ./src/aklog/aklog /usr/local/bin/aklog-1.6.18
@jhgorse
jhgorse / vsch_bash.sh
Last active June 16, 2016 18:13
Bootstrapping bash vcsh externally
#!/bin/sh
# Bootstrapping bash vcsh externally
# https://github.com/RichiH/vcsh/issues/202
# /bin/sh "$(curl -fsSL whatever.dom/vsch_bash.sh)"
wget https://raw.githubusercontent.com/RichiH/vcsh/master/vcsh
chmod +x vcsh
./vcsh clone https://github.com/jhgorse/bash.git bash # Perhaps a recursive clone some day
./vcsh bash submodule init
./vcsh bash submodule update
@jhgorse
jhgorse / Interactive shell load time testing
Created June 23, 2016 01:46
interactive shell load times
# Compare tcsh, zsh, and bash load times
echo 'echo 0' > ~/script
time tcsh -i < ~/script ; time zsh -i -c ~/script ; time bash -i < ~/script
@jhgorse
jhgorse / idempotent provision script.sh
Last active July 7, 2016 17:11
An idempotent provision script
#export DEBIAN_FRONTEND=noninteractive
MARKER_FILE="/usr/local/etc/marker_file_1"
# Provision once
if [ -f "${MARKER_FILE}" ]; then
exit 0
fi
# Do stuff here
# ...
@jhgorse
jhgorse / usb_probe.pl
Created August 5, 2016 02:41
Perl Device::USB exploration and fun
# http://search.cpan.org/~gwadej/Device-USB-0.36/lib/Device/USB.pm#SYNOPSIS
# https://github.com/gwadej/perl-device-usb
# cpanm install Device::USB
# bash$ cpanm --local-lib=~/.perl5 local::lib && eval $(perl -I ~/.perl5/lib/perl5/ -Mlocal::lib)
use lib ("~/perl5/lib/perl5/darwin-thread-multi-2level");
use Device::USB;
my $usb = Device::USB->new();
@jhgorse
jhgorse / usb_hid_api_device.rb
Last active May 30, 2020 15:07
A simple push/pull USB HID API script for raw devices
#!/usr/bin/env ruby
# rvm use default
#### install for macOS
# \curl -sSL https://get.rvm.io | bash -s stable --ruby
# source $HOME/.rvm/scripts/rvm
# rvm use default
# gem install hidapi
require "hidapi"
@jhgorse
jhgorse / sensor_descriptors.c
Last active August 5, 2016 16:21
smart sensor descriptors
#define HID_REPORT_DESCRIPTOR_SIZE 0x0044
typedef unsigned char hid_report_descriptor[HID_REPORT_DESCRIPTOR_SIZE];
code const device_descriptor DEVICEDESC =
{
18, // bLength
0x01, // bDescriptorType
0x1001, // bcdUSB
0x00, // bDeviceClass
0x00, // bDeviceSubClass