I hereby claim:
- I am lewislebentz on github.
- I am lewislebentz (https://keybase.io/lewislebentz) on keybase.
- I have a public key ASDA6H_JHJmuE2YdZX6bOg02uhQCdRpxzCSWB4kusR2Dogo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
curl -s https://omahaproxy.appspot.com/history | awk -F',' '/mac,stable/{print $3; exit}' |
#!/bin/sh | |
dmgfile="googlechrome.dmg" | |
volname="Google Chrome" | |
logfile="/Library/Logs/GoogleChromeInstallScript.log" | |
url='https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg' | |
/bin/echo "--" >> ${logfile} |
#!/usr/bin/python | |
import json | |
import urllib2 | |
import os.path | |
import plistlib | |
url = 'http://omahaproxy.appspot.com/all.json' | |
resp = urllib2.urlopen(url) | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> | |
<title>Groups</title> | |
</head> | |
<body> | |
<div align="center"> | |
<!--<body bgcolor='ce010b'>--> | |
<font color="fa0029" face="ubuntu"> | |
<br> |
function doGet(e){ | |
var input = e.parameter.email; | |
Logger.log(input); | |
if (input == "") | |
{ | |
return HtmlService.createHtmlOutput("<h2>fail</h2>") | |
} | |
return HtmlService.createHtmlOutput(listGroupMembers(input)) | |
}; |
#!/usr/bin/env python | |
import json | |
from urllib2 import Request, urlopen | |
def post(event, context): | |
V2TOKEN = 'enter_token_here' | |
ROOMID = enter_room_id_here | |
# API V2, send message to room: | |
url = 'https://api.hipchat.com/v2/room/%d/notification' % ROOMID |