Lucas Pelegrino
Lucas Pelegrino
### Information 1. **Apktool Version (`apktool -version`)** - 2.4.1 2. **Operating System (Mac, Linux, Windows)** - Linux 3. **APK From? (Playstore, ROM, Other)** - Playstore ### Stacktrace/Logcat ``` 06-26 22:06:43.685...
Running the following example: ```js var Proxy = require('browsermob-proxy').Proxy , proxy = new Proxy() , fs = require('fs'); proxy.doHAR('http://yahoo.com', function(err, data) { if (err) { console.error('ERROR: ' + err); }...
Hello guys. Initially I thought this was an apktool, but I followed this guide to pack/unpack and apktool worked fine (https://github.com/sensepost/objection/wiki/Android-APK-Patching) Everything runs fine up to this point: ``` Rebuilding...
MongoDB has a 16MB limit per document hard-coded, since `eventhus` uses a single document to store the events, there's a limitation there. I would recommend using per-document events, instead of...
I'm trying to debug a weird intermittent issue where the client sometimes is not able to create/connect to the websocket. I have a simple setup: ``` const ws = new...
Hey guys. I'm trying to get ssr to work, but I'm getting the following error: ``` /home/lucaswxp/reduza/universal-starter/node_modules/ngx-currency/src/currency-mask.directive.js:1 (function (exports, require, module, __filename, __dirname) { import { Directive, ElementRef, forwardRef, HostListener,...
I have the following routes defined: ``` javascript exports.routes = function (map) { map.all('admin/:controller/:action'); map.all('admin/:controller/:action/:id'); map.all(':controller/:action'); map.all(':controller/:action/:id'); }; ``` When I visit /admin/mycontroller/index, I see in my console that compound...
In my opinion, Jesus.walkOnWater's implementation should actually be in a library called Moses.js. ``` Jesus.walkOnWater = function(){ var elems = document.querySelectorAll('*'); for(var i = 0, len = elems.length; i <...
Can I use this with generic http/https requests? Like so: ``` func HandleRequestTeleport() { req := fasthttp.AcquireRequest() req.SetRequestURI("https://www.google.com") client := &httpteleport.Client{Addr: "www.google.com:443"} start := time.Now() var duration time.Duration count :=...
How would I go about creating a POST request, for instance, instead of a standard GET request? I have a webpage powered by javascript that will only respond to certain...