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/
| Action | Notepad++ shortcut | Vim shortcut |
|---|---|---|
| Duplicate line | Ctrl+D |
yyp |
| Cut line | Ctrl+L |
dd |
| Move line up/down | Ctrl+Shift+<up/down> |
dd<k/j>p |
| Compare files | File compare plugin wizard | :vsplit <filename> or vimdiff file1 file2 (from command line) |
| Select all (from here to top/bottom of file) | Ctrl+Shift+<home/end> |
v<gg/G> |
| Select all (from here up/down one page) | Ctrl+Shift+ |
v Ctrl+ |
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% |