This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Credit: https://www.reddit.com/r/AskReddit/comments/44tard/what_was_a_loophole_that_you_found_and_exploited/czt5wl8 | |
while true | |
do | |
sleep $[RANDOM%3600+1] | |
osascript -e "set volume 10" | |
say "balls" | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' | |
'Credit for the author here: # Credit: https://www.reddit.com/r/AskReddit/comments/44tard/what_was_a_loophole_that_you_found_and_exploited/czt5wl8 | |
' | |
Set WshShell = CreateObject("WScript.Shell") | |
Set WinFSO = CreateObject("Scripting.FileSystemObject") | |
Set oVoice = CreateObject("SAPI.SpVoice") | |
'Since you're probably playing with this script, create a batch file to easily kill it. | |
'WinFSO.CreateTextFile("stahp.plz.bat", True).Write "taskkill /im wscript.exe /f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do | |
dim s | |
randomize | |
s = int(rnd*11) + 1 | |
select case s | |
case 1 | |
WScript.Sleep 1000 | |
MsgBox "DERP" ,0, "derp" | |
case 2 | |
WScript.Sleep 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set wshshell = wscript.CreateObject("wScript.Shell") | |
' Make cow script: | |
wshshell.run "Notepad" | |
wscript.sleep 400 | |
' ### COW ONE ### | |
' @ECHO OFF | |
wshshell.sendkeys "@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.................#### | |
...............##....## | |
...............##....## | |
...............##....## | |
...............##....## | |
...............##....## | |
...........######....###### | |
.........##....##....##....#### | |
.........##....##....##....##..##. | |
.######..##....##....##....##....## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Following the steps and help from the steps found here: | |
# https://github.com/opentoonz/opentoonz/blob/master/doc/how_to_build_linux.md | |
# | |
# and here: | |
# | |
# https://github.com/opentoonz/opentoonz/issues/866 | |
# Get everything you would need | |
echo "###########################" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: ./speech2txt-bing.sh | |
# Record and send audio file through Bing speech recognition API. | |
# | |
# The original script can be found here: | |
# https://stackoverflow.com/questions/38139809/408-request-timed-out-microsoft-speech-to-text/41111609#41111609 | |
# | |
SUBSCRIPTION_KEY=<ENTER_SUBSCRIPTION_KEY> | |
LOCALE=en-US | |
SCENARIOS=ulm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; http://www.autohotkey.com/forum/viewtopic.php?t=64464 | |
; CTRL+SHIFT+R: Start Recording | |
; CTRL+SHIFT+S: Stop Recording/Playback | |
; CTRL+SHIFT+P: Playback | |
{ ; Auto-Execute | |
#NoTrayIcon | |
SetBatchLines, -1 | |
CoordMode, Mouse, Screen | |
Gui, +ToolWindow +AlwaysOnTop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
echo This script is only accurate up to 45. | |
echo Anything larger will be an overflow. | |
:vars | |
set /p stop="Enter end number: " | |
set num1=0 | |
set num2=0 | |
set c=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This script is part of SANE, <URL:http://www.sane-project.org/> | |
# | |
# Send bugreports and other requests to sane-devel@lists.alioth.debian.org | |
PACKAGE="sane-backends" | |
scriptname="sane-config" | |
prefix="/usr" |
OlderNewer