πͺ
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
| package io.navendra.player | |
| class MediaSourceBuilder { | |
| //Build various MediaSource depending upon the type of Media for a given video/audio uri | |
| fun build(uri: Uri): MediaSource { | |
| val userAgent = PlayerConstants.USER_AGENT | |
| val lastPath = uri.lastPathSegment?:"" | |
| val defaultHttpDataSourceFactory = DefaultHttpDataSourceFactory(userAgent) |
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
| case "$1" in | |
| "start") | |
| sudo echo "Starting" | |
| sudo macchanger $2 --random | |
| sudo anonsurf start | |
| sudo anonsurf myip | |
| sudo anonsurf status;; | |
| "stop") | |
| sudo echo "Stopping" | |
| sudo macchanger $2 -p |
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
| Serial Keys: | |
| FU512-2DG1H-M85QZ-U7Z5T-PY8ZD | |
| CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD | |
| GV7N2-DQZ00-4897Y-27ZNX-NV0TD | |
| YZ718-4REEQ-08DHQ-JNYQC-ZQRD0 | |
| GZ3N0-6CX0L-H80UP-FPM59-NKAD4 | |
| YY31H-6EYEJ-480VZ-VXXZC-QF2E0 | |
| ZG51K-25FE1-H81ZP-95XGT-WV2C0 | |
| VG30H-2AX11-H88FQ-CQXGZ-M6AY4 |
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
| Class Hasher { | |
| fun hash(): String { | |
| val bytes = this.toString().toByteArray() | |
| val md = MessageDigest.getInstance("SHA-256") | |
| val digest = md.digest(bytes) | |
| return digest.fold("", { str, it -> str + "%02x".format(it) }) | |
| } | |
| } |
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
| //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| //::::::::::::::::: GLOABAL VARIABLES :::::::::::::::::::::::::::: | |
| //-------------------------------------------------------------------- | |
| var app; | |
| var renderer; | |
| var screen; | |
| var stage; | |
| var loader = new PIXI.Loader(); | |
| var resources = loader.resources; |
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
| /* | |
| *Bill Receipt Printer Application | |
| * v 1.0 | |
| * Developed by Aman Nirala | |
| * Email - amansofttechinfo@gmail.com | |
| * Website - http://www.amansofttechinfo.weebly.com | |
| * COmpany - AmanSoft Developers | |
| */ | |
| import java.awt.*; |
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
| /* ID3v1 extracting application :) | |
| Developer Aman Nirala | |
| */ | |
| /*It reads all the files in the directory and finds the mp3 files and print the details of the mp3 file only using ID3v1 tag. | |
| If your ID3 data is not shown this means that either the ID3 tag is missing or if present is not ID3v1 */ | |
| import java.io.*; | |
| import java.util.*; |
NewerOlder