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
var AudioContext = window.AudioContext || window.webkitAudioContext; | |
var ctx = new AudioContext(); | |
requestAnimationFrame(s); | |
var number = "0696675356"; | |
var text = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; | |
var analy = ctx.createAnalyser(); | |
analy.connect(ctx.destination); |
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
/* | |
vigen - Vigenère Cipher | |
mat12 - from https://youtu.be/6ZYnA6tguec | |
*/ | |
#include<iostream> | |
#include<string> | |
#include<cmath> | |
#include<random> | |
#include<sstream> |
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
<?php | |
// root directory in which to start searching | |
$HOME=$_SERVER["DOCUMENT_ROOT"]; | |
// use alternatively: | |
// $HOME=dirname(__FILE__); | |
// $HOME=dirname(__FILE__); | |
header("Content-Type: text/plain"); | |
echo "BOM removed from files:\n"; | |
RecursiveFolder($HOME); |
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
package main; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import org.apache.commons.net.ftp.FTPClient; | |
import org.apache.commons.net.ftp.FTPReply; |
NewerOlder