Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head><title>SOUND</title></head>
<body>
<div>Frequence: <span id="frequency"></span></div>
<script type="text/javascript">
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
var oscillatorNode = audioCtx.createOscillator();
var gainNode = audioCtx.createGain();
@strigona-worksight
strigona-worksight / pushbullet.ps1
Created February 4, 2016 19:21
Delete pushes from a chat
# Deletes pushes from a chat with another contact
$targetContact = '[email protected]'
$batchSize = 50
$accessToken = 'xxxxxxx'
$headers = @{'Access-Token' = $accessToken }
Try
{
$pushesUrl = "https://api.pushbullet.com/v2/pushes?email=" + $targetContact + '&limit=' + $batchSize