View YouTube de letterbox 21:9 video bookmarklet
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
javascript:(function()%7Bfunction%20fill219()%7Blet%20container%20%3D%20document.querySelector('.html5-video-container')%3Bcontainer.style.position%20%3D%20'absolute'%3Bcontainer.style.top%20%3D%20'0'%3Bcontainer.style.bottom%20%3D%20'0'%3Bcontainer.style.left%20%3D%20'0'%3Bcontainer.style.right%20%3D%20'0'%3Bcontainer.style.margin%20%3D%20'auto'%3Blet%20video%20%3D%20document.querySelector('.html5-main-video')%3Bvideo.style.width%20%3D%20null%3Bvideo.style.height%20%3D%20null%3Bvideo.style.width%20%3D%20null%3Bvideo.style.top%20%3D%20null%3Bvideo.style.left%20%3D%20null%3Bvideo.style.objectFit%20%3D%20'cover'%3B%7Dfill219()%3Bwindow.addEventListener('resize'%2C%20fill219)%3Bwindow.addEventListener('fullscreenchange'%2C%20fill219)%7D)() |
View Unblock Salon bookmarklet.js
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
document.querySelector("#adblock-wrapper").remove(); | |
document.body.style.overflow='auto'; | |
document.body.style.height='auto'; | |
// converted to bookmarklet at https://mrcoles.com/bookmarklet/ | |
/* | |
javascript:(function()%7Bdocument.querySelector(%22%23adblock-wrapper%22).remove()%3Bdocument.body.style.overflow%3D'auto'%3Bdocument.body.style.height%3D'auto'%7D)() |
View WaPo adblocker blocker defeat bookmarklet
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
javascript:$('#drawbridge-root, #wp_Signin, .wp_signin, iframe').remove(); $('html,body').css({'overflow':'visible'}).removeClass('drawbridge-up');$(document).on('wheel', (e)=>e.stopImmediatePropagation()); |
View latimes adblocker blocker defeat bookmarklet
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
javascript:(function(){document.querySelector("#reg-overlay").remove();document.addEventListener("scroll", (e) => e.stopImmediatePropagation());document.querySelector(".trb_allContentWrapper").style.overflow = "auto";document.querySelector("html").style.overflow = "auto";})(); |
View FlyCamera.cs
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
using UnityEngine; | |
using System.Collections; | |
public class FlyCamera : MonoBehaviour { | |
/* | |
Writen by Windexglow 11-13-10. Use it, edit it, steal it I don't care. | |
Converted to C# 27-02-13 - no credit wanted. | |
Simple flycam I made, since I couldn't find any others made public. | |
Made simple to use (drag and drop, done) for regular keyboard layout |
View which-spawn.js
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
require("child_process").spawn("which", ["program_name_goes_here"]).stdout.on('data',function(data){console.log(data.toString());}); |
View filmify.bash
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
# create movie | |
ffmpeg -r 24 -i ~/Desktop/screencapture/%d.jpg -b 15000k ~/Desktop/screencapture/timelapse.mov |