- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license)
This file contains hidden or 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 | |
| # command to rename video files (VID prefixed) using encoded datetime | |
| # | |
| # inspired by https://www.claudiokuenzler.com/blog/686/rename-multimedia-video-files-filename-recorded-date-mediainfo | |
| ls | grep "^VID" | while read line; do targetname=$(mediainfo "$line" | grep "Encoded date" | sort -u | awk '{print $5"_"$6"_"}' | sed 's/-//g'| sed 's/://g')$line; echo "Old name: $line, new name: ${targetname}"; done | |
| read -p "Are you sure to rename? " -n 1 -r | |
| echo # (optional) move to a new line |
This file contains hidden or 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 | |
| # | |
| # pickup process files of the over 3600sec execution time. | |
| # in the process target strings | |
| # | |
| PregStr="i\/usr\/bin\/java(.*)\.jar" | |
| PID=$$ | |
| for i in `ps -ef | grep -E "$PregStr" | grep -v $PID | grep -v grep | awk '{print $2}'` | |
| do | |
| TIME=`ps -o lstart --noheader -p $i` |
This file contains hidden or 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
| # | |
| # Author: Ebi: ebrhim.soroush@gmail.com | |
| # You have to install mediainfo and libxml-xpath-perl and source this file or just copy this script into your ~/.bashrc | |
| # sudo apt install mediainfo libxml-xpath-perl | |
| # | |
| read_dom () { | |
| local IFS=\> | |
| read -d \< ENTITY CONTENT | |
| }; |
This file contains hidden or 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 EmuParadise Download Workaround - 1.1.1 | |
| // @version 1.1.2 | |
| // @description Replaces the download button link with a working one | |
| // @author Eptun | |
| // @match https://www.emuparadise.me/*/*/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or 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
| ## Sublime Text 3 Serial key build is 3176 | |
| > * Added these lines into /etc/hosts | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 license.sublimehq.com | |
| > * Used the license key | |
| ----- BEGIN LICENSE ----- |
This file contains hidden or 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 | |
| # Input Parameters | |
| # NOT WORKING, ABANDONED IN FAVOR OF SICKBEARD_MP4_AUTOMATOR | |
| # https://forums.plex.tv/discussion/comment/1565363/#Comment_1565363 | |
| ARG_PATH="$3" | |
| ARG_NAME="$2" | |
| ARG_LABEL="N/A" | |
| CONFIG_OUTPUT="${HOME}/Media" # Filebot's final destination for the renamed file | |
| # filebot used to extract any rar |
This file contains hidden or 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
| # Find videos and conver | |
| find . -iname "*.mp4" -mtime -900 -print0 | xargs -n1 -I{} ffmpeg -i {} -c:v libx264 -c:a copy ~/Downloads/GOPRO/{} | |
| find . -iname "*.mp4" -mtime -900 -print0 | xargs -0 -n1 -I{} ffmpeg -i {} -c:v libx264 -c:a copy ~/Downloads/GOPRO/{} | |
| # Testing automatic encoding | |
| ffmpeg /Volumes/Untitled/DCIM/100GOPRO/GOPR0514.MP4 ~/Downloads/GOPRO0514.webm | |
| ffmpeg -i /Volumes/Untitled/DCIM/100GOPRO/GOPR0514.MP4 ~/Downloads/GOPRO0514.webm | |
| ffmpeg -i /Volumes/Untitled/DCIM/100GOPRO/GOPR0514.MP4 ~/Downloads/GOPRO0514.webm | |