See also @shawnli87's fork and their zsh version.
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
Disabling telemetry takes a little more work but can be accomplished in about five minutes. Type "about:config" in the address bar, and you will be notified that you could void your warranty (Firefox has a warranty?). Click on "I accept the risk." Type in "telemetry" in the search bar to see the results. Only some can be changed, and according to Mozilla, they are: | |
browser.newtabpage.activity-stream.feeds.telemetry | |
browser.newtabpage.activity-stream.telemetry | |
browser.ping-centre.telemetry | |
toolkit.telemetry.archive.enabled | |
toolkit.telemetry.bhrPing.enabled | |
toolkit.telemetry.enabled | |
toolkit.telemetry.firstShutdownPing.enabled | |
toolkit.telemetry.hybridContent.enabled |
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 RWTHmoodle Opencast Video Catcher | |
// @namespace https://literalchaos.de | |
// @version 0.2 | |
// @description Captures video urls played by the player embedded into RWTHmoodle | |
// @author Jan Scheiper | |
// @match https://moodle.rwth-aachen.de/* | |
// @match https://engage.streaming.rwth-aachen.de/* | |
// @grant GM_webRequest | |
// @grant GM_xmlhttpRequest |
- IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装。PaaS提供语言环境和框架(可以自己选)。SaaS只能使用开发好的软件(卖软件本身,如税务会计、表格文字)。BaaS一般类似于非关系数据库,但各家不通用
- 云服务的特点:零前期成本&按需付费&弹性(类似于租,可随时多加、退掉;但没有残值)、高可用(放在机房中,不同AZ间水电隔离)
- https://education.github.com/pack GitHub学生包,需用教育邮箱验证。各种福利,可从DigitalOcean上手
- https://github.com/ripienaar/free-for-dev 本文尽量不与此项目重复
- https://free.zhelper.net/
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 | |
echo '<html><head><title>Mega downloader</title></head><body><h2>Enter Url</h2><form action="mega.php" method="POST"> <br> URL: <input type="text" name="URL"> <br><input type="submit" value="Submit"></form>'; | |
if ($_POST) { | |
error_reporting(0); | |
$url = $_POST['URL']; | |
preg_match("/!(.+?)!/", $url, $output_array); |
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
#!/bin/bash | |
# Script: osmc-java-jdownloader-installer.sh | |
# Author: Jozef Pažin | |
# Description: Wizard to install the current version of java and/or jdownloader on raspberry pi running osmc. | |
# License: MIT | use arbitrarily, attribution is not required | |
# How to run: | |
# - Check if this code is correct first because this script need to be run under root and run gist | |
# from web is not recommended in terms of security only that you know exactly what it does. Check it: | |
# curl -Ls https://gist.github.com/atiris/34dc670264274b3a472f2a718e4de83a/raw | nano - |
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
[media-local-secret] | |
type = crypt | |
remote = secret/media | |
filename_encryption = standard | |
password = | |
password2 = | |
[media-remote-secret] | |
type = crypt | |
remote = gdrive:path/to/media |
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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: JDownloader2 | |
# Required-Start: networking | |
# Required-Stop: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: JDownloader2 server daemon | |
# Description: JDownloader2 server daemon | |
### END INIT INFO |