MEGA.nzmega.nz
We make secure cloud storage simple. Create an account and get 50 GB free on MEGA's end-to-end encrypted cloud collaboration platform today!
A script to download file from Mega.n and read it. (Using PHP)
| # Script for quickbms: https://aluigi.altervista.org/quickbms.htm | |
| # Extracts *.unity3d files | |
| # (c) 2021-07-21 by Lichtso | |
| endian big | |
| # Header | |
| idstring "UnityFS" | |
| Padding 5 | |
| get FILE_VERSION byte |
| #!/bin/bash | |
| # Copyright 2018, 2019, 2020 Azure Zanculmarktum | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this script, with or without modification, is | |
| # permitted provided that the following conditions are met: | |
| # | |
| # 1. Redistributions of this script must retain the above copyright | |
| # notice, this list of conditions and the following disclaimer. |
Based on https://busylog.net/telnet-imap-commands-note/
To save the output of a command on the Windows clipboard, add a pipe* (|) operator to your command followed by the clip command.
dir | clip - copy the listing of current folder contents to the clipboard.
tree | clip - copy a recursive directory structure to the clipboard.
pwd | clip - copy the present working directory to the clipboard.
| #!/usr/bin/env ruby | |
| require 'open3' | |
| require 'json' | |
| ffmpeg_bin = '/usr/local/bin/ffmpeg' | |
| target_il = -24.0 | |
| target_lra = +11.0 | |
| target_tp = -2.0 | |
| samplerate = '48k' |
| set filepath="C:\some path\having spaces.txt" | |
| for /F "delims=" %%i in (%filepath%) do set dirname="%%~dpi" | |
| for /F "delims=" %%i in (%filepath%) do set filename="%%~nxi" | |
| for /F "delims=" %%i in (%filepath%) do set basename="%%~ni" | |
| echo %dirname% | |
| echo %filename% | |
| echo %basename% |
| Syntax: x264 [options] -o outfile infile [widthxheight] | |
| Infile can be raw YUV 4:2:0 (in which case resolution is required), | |
| or YUV4MPEG 4:2:0 (*.y4m), | |
| or Avisynth if compiled with support (no). | |
| or libav* formats if compiled with lavf support (no) or ffms support (no). | |
| Outfile type is selected by filename: | |
| .264 -> Raw bytestream | |
| .mkv -> Matroska | |
| .flv -> Flash Video |