Skip to content

Instantly share code, notes, and snippets.

View frenchesco's full-sized avatar

Marc Gordon frenchesco

  • Brisbane, Australia
View GitHub Profile
{
"title": "Bumblebee Shortcut",
"description": "JSON file used to check for updates for the Bumblebee Shortcut",
"latestVersion": "1.0.1",
"releaseDate": "20190812",
"latestUrl": "https://www.icloud.com/shortcuts/0fc0941b738740dfabcc7c7f2334ac7e",
"documentationUrl": "",
"authorReddit": "/u/marcgordon",
"authorTwitter": "@4txt",
"updates": [
@frenchesco
frenchesco / index.js
Last active March 3, 2019 11:10
Attempt to get temperature from Withings Smart Body Analyser (Now sold as Nokia Body+) to be displayed within Homekit. Ended up giving up as it appears the temperature information is only updated when you step on the scale, which kind of defeats the purpose.
var Service, Characteristic;
var request = require('request');
// var withingsApi = require("withings-api"); // Doesn't support Weather and CO2 levels
var temperatureService;
var url;
var humidity = 0;
var temperature = 0;
{
"title": "Email Multiple Apps Workflow",
"description": "JSON file used to check for updates for the Email Multiple Apps Workflow",
"latestVersion": "1.0.0",
"releaseDate": "20171218",
"latestUrl": "",
"redditUrl": "",
"authorReddit": "/u/marcgordon",
"authorTwitter": "@4txt",
"updates": [
{
"title": "Email App Workflow",
"description": "JSON file used to check for updates for the Email App Workflow",
"latestVersion": "1.0.0",
"releaseDate": "20171218",
"latestUrl": "https://workflow.is/workflows/bb0b5bb5bf4b4c2591a18d078704b8ed",
"redditUrl": "",
"authorReddit": "/u/marcgordon",
"authorTwitter": "@4txt",
"updates": [
{
"title": "AppShopper Workflow",
"description": "JSON file used to check for updates for the AppShopper Workflow",
"latestVersion": "1.5.2",
"releaseDate": "20180318",
"latestUrl": "https://workflow.is/workflows/32418f73d71148178a6ad0eebe50e10d",
"redditUrl": "https://www.reddit.com/r/workflow/comments/6b8la0/appshopper_workflow/",
"authorReddit": "/u/marcgordon",
"authorTwitter": "@4txt",
"updates": [

Keybase proof

I hereby claim:

  • I am frenchesco on github.
  • I am marcgordon (https://keybase.io/marcgordon) on keybase.
  • I have a public key ASC-EP8bdG0J4H9CiOofqtQPi3wyPjYZtxWbMtYkPcGbUAo

To claim this, I am signing this object:

@frenchesco
frenchesco / backtick-edit-page.md
Last active October 25, 2018 09:27 — forked from JoelBesada/README.md
A backtick command to make a page editable

This is a command for Backtick. It allows you to make a web page editable. Once you run the command you can click anywhere on the page and delete elements or type something.

To use this:

  1. Download Backtick.
  2. Copy the following ID of this Gist 7556270.
  3. Paste the ID into the custom commands field in the Backtick settings. You can easily access the settings by clicking the Backtick icon on the command execution console.
@frenchesco
frenchesco / E-mail Templates.ahk
Created June 26, 2013 00:11
AutoHotkey Text Expansion for the Email Templates by Bea Kylene Jumarang for Smashing Magazine: http://www.smashingmagazine.com/2013/06/20/email-templates-web-designers-developers-pdf-odt-txt/
; ----------------------------------------------------------
; E-MAIL TEMPLATES FOR WEB DESIGNERS AND DEVELOPERS
; Prepared by Bea Kylene Jumarang for Smashing Magazine
; http://www.smashingmagazine.com/2013/06/20/email-templates-web-designers-developers-pdf-odt-txt/
; ----------------------------------------------------------
; Adapted as a Autohotkey script by Marc Gordon
; ----------------------------------------------------------
; Instructions:
; 1) Install Autohotkey.
; 2) Modify the greeting if you want in GetGreeting() below.
@frenchesco
frenchesco / GmailKeys.ahk
Last active December 18, 2015 10:49
GmailKeys
;*******************************************************************************
; Information
;*******************************************************************************
; AutoHotkey Version: 2.x
; Language: English
; Platform: XP/Vista/7
; Updated by: Ty Myrick
; Author: Lowell Heddings (How-To Geek)
; URL: http://lifehacker.com/5175724/.....gmail-keys
; Original script by: Jayp
@frenchesco
frenchesco / phpmyadmin-setup.sh
Created July 27, 2012 01:05
Setting Up phpmyadmin on Koding
cd ~/Sites/my_username.koding.com/website/
mkdir phpmyadmin
cd phpmyadmin
wget http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.5.2/phpMyAdmin-3.5.2-all-languages.tar.gz?r=http%3A%2F%2Fwww.phpmyadmin.net%2Fhome_page%2Findex.php&ts=1343277576&use_mirror=aarnet
tar -xvvf phpMyAdmin-3.5.2-all-languages.tar.gz
rm -f phpMyAdmin-3.5.2-all-languages.tar.gz
mv phpMyAdmin-3.5.2-all-languages/* .
rmdir phpMyAdmin-3.5.2-all-languages