Skip to content

Instantly share code, notes, and snippets.

View scriptify's full-sized avatar
🏆
Working towards my goals, every day!

Maximilian Torggler scriptify

🏆
Working towards my goals, every day!
View GitHub Profile
@scriptify
scriptify / bassliner-alert.js
Last active June 12, 2023 11:07
Be the first to know
function executeAlarm() {
// Create new audio context
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
// Create OscillatorNode to represent the tone
var oscillator = audioContext.createOscillator();
// Define the type of wave the oscillator will output
oscillator.type = 'square';