Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View martinwoodward's full-sized avatar
🚀
I solemnly swear I am up to no good

Martin Woodward martinwoodward

🚀
I solemnly swear I am up to no good
View GitHub Profile
0:00:00.033,0:00:02.102
嘿,大家。我叫馬丁·伍德沃德。
0:00:02.235,0:00:06.206
我將從舊金山的工作室與你們一起現場直播。
0:00:06.272,0:00:08.308
希望您有一個愉快的會議。迄今為止。
0:00:08.308,0:00:12.512
@martinwoodward
martinwoodward / Type Clipboard.kmmacros
Created November 1, 2023 23:51
Keyboard Maestro Script to simulate typing of the clipboard buffer
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>Activate</key>
<string>Normal</string>
<key>CreationDate</key>
<real>687267520.59896398</real>
<key>Macros</key>
@martinwoodward
martinwoodward / settings.json
Created June 30, 2023 08:30
Copilot Demo settings for VSCode
{
"editor.inlineSuggest.enabled": true,
"workbench.colorTheme": "Default Dark+",
"window.zoomLevel": 1,
"editor.minimap.enabled": false, // Disable minimap for clarity
"vsintellicode.python.completionsEnabled": false,
"editor.quickSuggestionsDelay": 1000, // Delay built in VS Code intellisense so doesn't confuse on what is Copilot
"editor.lightbulb.enabled": false, // Disable lightbulb autofixes for clarity
"chat.experimental.quickQuestion.enable": true, // Experimental feature in May 2023 release of insiders
"pylint.args": [
@martinwoodward
martinwoodward / rooter-booter.yaml
Created February 26, 2022 20:19
ESPHome recipie for sonoff basic
esphome:
name: router-booter
on_boot:
then:
- switch.turn_on: relay
esp8266:
board: esp8285
ota:
@martinwoodward
martinwoodward / mermaid.md
Created February 11, 2022 20:34
GitHub HTML Rendering Pipeline
```mermaid
sequenceDiagram
    participant dotcom
    participant iframe
    participant viewscreen
    dotcom->>iframe: loads html w/ iframe url
    iframe->>viewscreen: request template
    viewscreen->>iframe: html & javascript
 iframe-&gt;&gt;dotcom: iframe ready

Inception.

image

@martinwoodward
martinwoodward / setup.md
Last active December 3, 2023 17:01
Camera Setup
@martinwoodward
martinwoodward / TripodMonitor.stl
Last active June 28, 2021 18:28
Camera Setup
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@martinwoodward
martinwoodward / Developer_Advocate.md
Last active May 11, 2021 13:26
Come work with me!

👋 Hello

We are looking for a new Developer Advocate to join our well established and expanding global Developer Relations team to come and grow with us. This is an ideal role for someone who understands development but is new to DevRel and Developer Advocacy.

Application links:

@martinwoodward
martinwoodward / gist:4dd45ed3e4e2473d428e61d80f0be400
Created November 19, 2020 17:52
Converting directory of mov's into mp4's
for i in *.mov; do name=`echo "$i" | cut -d'.' -f1`; echo "$name"; ffmpeg -n -i "$i" "${name}.mp4"; done