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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
python_3_email_with_attachment.py | |
Created by Robert Dempsey on 12/6/14. | |
Copyright (c) 2014 Robert Dempsey. Use at your own peril. | |
This script works with Python 3.x | |
NOTE: replace values in ALL CAPS with your own values |
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
HTTPPort 8090 | |
HTTPBindAddress 0.0.0.0 | |
MaxHTTPConnections 200 | |
MaxClients 100 | |
MaxBandWidth 500000 | |
CustomLog - | |
<Feed camera.ffm> | |
File /tmp/camera.ffm | |
FileMaxSize 200M |
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
Shader "Custom/Fisheye" { | |
Properties { | |
_MainTex ("MainTex", 2D) = "white" {} | |
// _UVMap ("UVMap", 2D) = "black" {} | |
_Gamma ("Gamma", float) = 0.45 | |
} | |
SubShader { | |
Tags { "QUEUE"="Transparent" "IGNOREPROJECTOR"="true" "RenderType"="Transparent" "PreviewType"="Plane" } | |
Pass { |
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
// ==UserScript== | |
// @name Hide sponsored items | |
// @namespace whatisthis | |
// @version 0.1 | |
// @description try to sanitize Facebook | |
// @author Sy Hung Doan | |
// @match https://www.facebook.com/* | |
// @match https://facebook.com/* | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Google SERP Click Tracking Disabler | |
// @namespace googleSERPClickTrackingDisabler | |
// @include http*://*.google.tld/search?* | |
// @datecreated 2010-01-29 | |
// @lastupdated 2010-01-29 | |
// @version 0.1 | |
// @author Erik Vergobbi Vold | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @description This userscript disables Google's click tracking for search results. |
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
// ==UserScript== | |
// @name Dark Theme Whatsapp Web | |
// @namespace http://userstyles.org | |
// @description My custom theme for Whatsapp Web. With orange and dark shades. | |
// @author David Jiménez | |
// @homepage https://userstyles.org/styles/109575 | |
// @include https://web.whatsapp.com/ | |
// @run-at document-start | |
// @version 0.20170512183823 | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Degoogle | |
// @namespace Dan8267 | |
// @description Changes Google URLs to regular URLs to avoid tracking and allowing copy and paste. Also removes annoying box. | |
// @include http://www.google.com/* | |
// @include https://www.google.com/* | |
// @require https://code.jquery.com/jquery-3.1.0.min.js | |
// @version 2 | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name InstaClip Poster | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Create InstaClip post from current video page | |
// @author Yilong Tang [email protected] | |
// @match https://www.facebook.com/* | |
// @match https://www.instagram.com/* | |
// @match https://www.youtube.com/* | |
// @match http://road-to-champion-2018.op-mobile.opera.com/assets/view/instaclip.html |
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
// ==UserScript== | |
// @name InstaClip Poster | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Create InstaClip post from current video page | |
// @author Yilong Tang [email protected] | |
// @match https://www.facebook.com/* | |
// @match https://www.instagram.com/* | |
// @match https://www.youtube.com/* | |
// @match http://road-to-champion-2018.op-mobile.opera.com/assets/view/instaclip.html |
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
// ==UserScript== | |
// @name Remove Google Redirect And Tracking From Search Results | |
// @description Userscript for removing redirection and tracking(?) data from Google search results. | |
// @version 1 | |
// @author fluks | |
// @include https://*.google.*/search?* | |
// ==/UserScript== | |
document.querySelectorAll('h3.r > a') | |
.forEach(e => { |
OlderNewer