Skip to content

Instantly share code, notes, and snippets.

View jeoffw's full-sized avatar

Jeoff Wilks jeoffw

View GitHub Profile
@jeoffw
jeoffw / steps.md
Created July 29, 2021 18:11
Meetings Inbox - Outlook for Mac
  1. In the topright search box, type some text (anything)
  2. In the toolbar ribbon, click Advanced. (Note: within the Search tab, if not already focused)
  3. In the search field that appears, where it says "Item Contains" change the selector to "Raw Query"
  4. Paste in the following: com_microsoft_outlook_has_reminder == 1 && com_microsoft_outlook_folderID=109
  5. Save the query

References

@jeoffw
jeoffw / sine_wave.html
Created August 14, 2012 19:42
Sine Wave example from XAudioJS - http://www.grantgalitz.org/sine_wave/
<!DOCTYPE html>
<html>
<head>
<title>Sine Wave Test</title>
<meta charset="UTF-8">
<script src="resampler.js"></script>
<script src="swfobject.js"></script>
<script src="XAudioServer.js"></script>
</head>
<body>
@jeoffw
jeoffw / IE change event for radio buttons and checkboxes.js
Created August 14, 2010 14:09
In IE, force radio and checkboxes to trigger a "change" event, using jquery
//In IE, force radio and checkboxes to trigger a "change" event
if($.browser.msie && $.browser.version < 8)
$('input[type=radio],[type=checkbox]').live('click', function(){ $(this).trigger('change'); });