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
# install openjdk | |
sudo apt-get install openjdk-9-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
tar -xvf android-sdk_r24.2-linux.tgz -C $HOME | |
cd $HOME/android-sdk-linux/tools |
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
@echo off | |
:: The Command and conversion is copy&pasted from the Internet and I only added the subtitle command and the for loop.... | |
:: if it's givin you an error delete the ">>log.txt" (didn't test if it's working but it should echo everything into a file called "log.txt") | |
:: You can delete the Lines starting with "::" (they are ignored) | |
for %%i in (*.mkv *.avi) do ( | |
HandBrakeCLI -i "%%i" -o "%%~ni.mp4" -e x264 -q 20.0 -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0.0 --audio-copy-mask aac,ac3,dtshd,dts,mp3 --audio-fallback ffac3 -f mp4 --loose-anamorphic --modulus 2 -m --x264-preset veryfast --h264-profile main --h264-level 4.0 -s "1,2,3,4,5,6" --subtitle-burned | |
rm -f "%%i" | |
)>>log.txt |
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
@echo off | |
WHERE python | |
IF %ERRORLEVEL% NEQ 0 ( | |
IF NOT EXIST Anaconda3-5.0.1-Windows-x86_64.exe wget --no-check-certificate https://repo.continuum.io/archive/Anaconda3-5.0.1-Windows-x86_64.exe | |
start /wait Anaconda3-5.0.1-Windows-x86_64.exe | |
echo press a button if the installer closed ! | |
pause | |
) | |
IF NOT EXIST psdle.py wget --no-check-certificate https://gist.githubusercontent.com/Gnarmagon/1cf55fd844779f69791e9bad600aaae6/raw/e7464647285cc08f9ce070bea6722f10fedffd67/psdle.py |
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
for %%i in (*.avc) do ( | |
ffmpeg -i "%%i" -codec copy "%%~ni.mp4" | |
) |
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/env python3 | |
def create_pdb(filename, title, location, pkg_link, icon_path, temp_dat, cid, date='Wed, 16 Apr 2008 11:11:41 GMT'): | |
""" | |
Example: | |
title = 'Ape Quest' | |
location = 'ux0:pspemu/bgdl/0000010d' | |
pkg_name = 'cCC53YedwIstMh54hhulsqmHmlLCMr4He9aKSNFGRTDNGvcUgcqpqbAcFU25tJC8PN1ksFVqlErDjeHYyijpCfqHD5WSAu6qqEDlt.pkg' | |
pkg_link = 'http://zeus.dl.playstation.net/cdn/EP9000/NPEG00005_00/cCC53YedwIstMh54hhulsqmHmlLCMr4He9aKSNFGRTDNGvcUgcqpqbAcFU25tJC8PN1ksFVqlErDjeHYyijpCfqHD5WSAu6qqEDlt.pkg?country=de' | |
icon_path = 'ux0:bgdl/t/0000010d/icon.png' |
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/env python3 | |
# -*- coding: utf-8 -*- | |
# psdle.py -- does the same thing as PSDLE does... | |
# Copyright (C) 2018 Gnarmagon | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later 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
#!/usr/bin/env python3 | |
""" | |
Do whatever you want with it... | |
I am too lazy to make it compatible on other platforms or create a gui... | |
this thing works and it should do the job for some people/may be a help for | |
someone who is working on this: | |
https://www.reddit.com/r/vitahacks/comments/8vbkf8/concept_how_to_make_a_proper_user_friendly/ | |
Made by Luro02 in under 2 hours (I know, impressive) | |
""" | |
import os |
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
# Amazon Fire (HD 8) Blocklist (V.1.0) | |
# | |
# Constribute: | |
# please make a comment under this gist and I'll add it after checking to this list. | |
# | |
# Constributions by: | |
# Luro02 | |
# | |
# Credits: | |
# https://forum.xda-developers.com/amazon-fire/general/how-to-block-updates-via-router-t3640267 |
This file has been truncated, but you can view the full file.
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
{ | |
"1133": { | |
"url": "http://crackmes.cf/users/.nalet./nalets_crackme_no1/download/NaLeTcrkMe.zip", | |
"description": "First off don't give me that \"cr*pware\" things.\nYes, it's written in VB + P-Code, and all you need to do is find one serial.\nOh could someone rate it?!?", | |
"difficulty": 2, | |
"platform": "Windows", | |
"language": "(Visual) Basic", | |
"published": "2005-03-08T00:00:00", | |
"downloads": 1235, | |
"votes": 0 |
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
check under what name it is installed: | |
$ dkpkg -l | devkitpro | |
it either outputs nothing -> not installed | |
or it ouputs the package name | |
$ sudo dpkg -P devkitpro-pacman | |
that's it now you can reinstall it and it should work again :3 |
OlderNewer