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
# Helper functions that allow string arguments for dplyr's data modification functions like arrange, select etc. | |
# Author: Sebastian Kranz | |
# Examples are below | |
#' Modified version of dplyr's filter that uses string arguments | |
#' @export | |
s_filter = function(.data, ...) { | |
eval.string.dplyr(.data,"filter", ...) | |
} |
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/python3 | |
# Original script by frutis, mods by Leo-PL | |
# Usage: | |
# 1. uncomment proper section for your router (MF283+, MF286, MF286A, MF286D). | |
# 2. set correct IME if you have one | |
# 3. Set correct version ID (the integrate_version from NVRAM) for your device if not already found here | |
# 4. Run the script - it shall return the URL of data update, if available for the set base version. | |
from base64 import b64decode, b64encode |