/*
hallo alles
hello world, my name is co¥ᄀpt
2 seconds. i just smashed my beer back here.
*/
| # -*- coding: UTF-8 -*- | |
| # This script mangles a set of words with the first 11,264 characters of Unicode | |
| # it will then perform the mangle to the number of times specified | |
| # it will then save these mangled names to a file. | |
| # it'll get messy. | |
| # from co¥ᄀpt | |
| from random import randint |
| #!/bin/bash | |
| # install SuperCollider 3.8 and sc3-plugins. This will dump the source files in your home directory | |
| mkdir ~/src | |
| cd ~/src | |
| sudo apt-get install git |
/*
hallo alles
hello world, my name is co¥ᄀpt
2 seconds. i just smashed my beer back here.
*/
| # A Python script to print random (potentially) paragraphs from scripts within folders when triggered | |
| import os | |
| import random | |
| # opening the python script | |
| pyscript = open(os.path.join(os.path.dirname(__file__), 'Scripts/OSCResponder/011_RecievingProcessingTestValues.py')) | |
| pyparagraph = [] | |
| scscript = open(os.path.join(os.path.dirname(__file__), 'Scripts/SuperCollider/HeartbeatInductionCombined/002_FormattedForTest.scd')) |
| IDE: | |
| editor: | |
| blinkDuration: 300 | |
| colors: | |
| evaluatedCode: !textFormat | |
| color: "#000000" | |
| background: "#f8a200" | |
| lineNumbers: !textFormat | |
| color: "#808080" | |
| background: "#141f2e" |
| # a sample program to use ipwhois to dump info about a random IP address | |
| # in order to use this you will need to install ipwhois using pip | |
| import random | |
| from ipwhois import IPWhois | |
| from pprint import pprint | |
| # getting four random numbers for the ipv4 address. Casting them as strings | |
| r1 = str(random.randrange(255)) | |
| r2 = str(random.randrange(255)) |