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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Watermark into Video </title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> | |
<style> | |
body { |
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
you can decompile your apk file using apk studio. | |
(http://vaibhavpandey.com/apkstudio/) . Decompiled source will be in .smali file types (hexadecimal values ). | |
------------------------------------------ | |
you can assign new key to the apk directly via | |
https://shatter-box.com/knowledgebase/android-apk-signing-tool-apk-signer/ | |
------------------------------------------ | |
if you want to trace https request download mitmproxy and open the web ui version | |
choose the application you want to trace with and start .. this should show all the request going from the app to it even if it's https |
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
(function (open) { | |
XMLHttpRequest.prototype.open = function (method, url, async, user, pass) { | |
if(url=="some url ") { // remove this if you want to listen to everyhting | |
console.log(this.onreadystatechange); | |
this.addEventListener("readystatechange", function () { | |
console.log('readystate: ' + this.readyState); | |
if(this.responseText !== '') { | |
this.responseText = this.responseText.split('&')[0]; | |
} | |
}, false); |
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
/** | |
** How the Algorithm works : https://www.youtube.com/watch?v=rsbxHqhyKD0 | |
** Java Program to Implement Jarvis Algorithm | |
**/ | |
import java.util.Scanner; | |
import java.util.Arrays; | |
/** Class point **/ | |
class Point |
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
Dec 16, 2018 1:24:11 PM org.apache.tomcat.util.digester.SetPropertiesRule begin | |
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:javaee7' did not find a matching property. | |
Dec 16, 2018 1:24:11 PM org.apache.catalina.startup.VersionLoggerListener log | |
INFO: Server version: Apache Tomcat/9.0.1 | |
Dec 16, 2018 1:24:11 PM org.apache.catalina.startup.VersionLoggerListener log | |
INFO: Server built: Sep 27 2017 17:31:52 UTC | |
Dec 16, 2018 1:24:11 PM org.apache.catalina.startup.VersionLoggerListener log | |
INFO: Server number: 9.0.1.0 | |
Dec 16, 2018 1:24:11 PM org.apache.catalina.startup.VersionLoggerListener log | |
INFO: OS Name: Windows 10 |
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
using UnityEngine; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class MazeGenerator : MonoBehaviour { | |
public int width, height; | |
public Material brick; | |
private int[,] Maze; | |
private List<Vector3> pathMazes = new List<Vector3>(); |
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
::download this bat file then Run as Administrator Or do the other steps | |
::------------------------------------------------------------------ | |
::Create a file name it webstorm.bat | |
::Open file in any text editor | |
::Copy all text below from @echo off to pause and paste it in the file | |
::Consider replace the <Webstorm.exe path> with your webstorm.exe path | |
::for e.g | |
::C:\Program Files\JetBrains\WebStorm 2017.2.2\bin\webstorm64.exe | |
::Save changes to the file |
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class PlayerController : MonoBehaviour | |
{ | |
private int extraJump; | |
public int extraJumpValue; | |
public float speed; | |
public float jumpForce; |