"The Buzz" Playstation 2 EU USB controller
Using tool "Simple HID Write"
- W: Write
- R: Read
W 00 {FF} 00 00 00 // controller 1 red light activate
W 00 {00} 00 00 00 // controller 1 red light deactivate
(function(target, threshold, elem) { | |
listener = () => { | |
if (target.scrollY > threshold) { | |
elem.style.opacity = 1; | |
} else { | |
elem.style.opacity = 0; | |
} | |
}; | |
target.addEventListener( | |
'scroll', |
#!/bin/python | |
""" | |
This utility allows you to count the number of lines in files | |
by default just .py files, but accepts command-line arguments. | |
This utility does miss files and folders beginning with '.' | |
so don't use them! | |
usage: {script} {path} [extensions] [exclude] |
<?php | |
/* | |
Plugin Name: CODESIGN2 Media Taxonomy Modifications | |
Plugin URI: http://www.codesign2.co.uk | |
Description: We think it's a real shame that media can be a little unweildy, and not make much sense; on larger sites it's debilitating, so we made this plugin. Enjoy | |
Author: CODESIGN2 | |
Version: 1.3.6 | |
Author URI: http://www.codesign2.co.uk/ | |
*/ |
# This grub.cfg file was created by Lance http://www.pendrivelinux.com | |
# Suggested Entries and the suggestor, if available, will also be noted. | |
set timeout=10 | |
set default=0 | |
set gfxpayload=keep | |
submenu "Ubuntu" { | |
menuentry "Ubuntu Desktop ISO" { | |
set isofile=/ubuntu.iso |
var array = []; | |
function closest(array,num){ | |
var i=0; | |
var minDiff=1000; | |
var ans; | |
for(i in array){ | |
var m=Math.abs(num-array[i]); | |
if(m<minDiff){ | |
minDiff=m; |
/* | |
* Find sticky header elements annoying? Well delete them with this | |
* | |
* inspired by https://www.ghacks.net/2018/08/16/remove-anything-that-is-sticky-on-websites/ | |
* improved (IE9, all recent chrome, mozilla, mobile browsers) using information from: | |
* | |
* - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes | |
* - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf | |
* - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach | |
* - https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle |
#!/bin/bash | |
mkdir -p ~/nextcloud | |
docker run -t -d --restart=always --name=nextcloud --publish 7000:80 --volume $PWD/nextcloud:/var/www/html:z nextcloud |
#!/bin/bash | |
mkdir -p ~/onlyoffice | |
docker run -i -t -d --name=onlyoffice -p 7050:80 \ | |
--volume ~/onlyoffice/logs:/var/log/onlyoffice:z \ | |
--volume ~/onlyoffice/data:/var/www/onlyoffice/Data:z \ | |
--volume ~/onlyoffice/lib:/var/lib/onlyoffice:z \ | |
--volume ~/onlyoffice/db:/var/lib/postgresql:z onlyoffice/documentserver |
W 00 {FF} 00 00 00 // controller 1 red light activate
W 00 {00} 00 00 00 // controller 1 red light deactivate
var ImgurAPIKey = 'YEAH-IM-NOT-GIVING-THAT'; | |
window.addEventListener('paste', function(e) { | |
function eventPreventDefault(e) { | |
e.preventDefault(); | |
} | |
function getClipboardData(e) { | |
return window.clipboardData || e.clipboardData; | |
} |