ATHUL A S
ATHUL A S
+1000 Currently I'm using it like this, 'title' instead of leading ```dart ListTile( tile: Row( children [ Image.asset("my image"), Text("Bames Jond") ] ) ) ```
@devadathanmb @sulthanshanid I need that Bypass script to obtain X-Token. Currently I'm building a KTU website clone to prank my friends with fake results(check my profile for proof). So I...
@sulthanshanid I sent a mail.
@devadathanmb Yeah I saw that script. I think there is a possibility to bypass it. A POST request to this link with the site key will return the script: https://api.ktu.edu.in/ktu-web-service/anon/get?key=v3...
@devadathanmb @sulthanshanid Hello Hello Hello! KTU removed the X-Token header from their api. Now I can access it without X-Token. Also the X-Token generator reCaptcha link disappeared from their site....
I thought their 12 months free trial of google cloud and captcha api expired lol.💀😂. So I think storing it in my proxy server when it is available will be...
@PrimeTimeTran I have created a code editor package similar to this with a little more features including auto indentation. Please have a [look](https://github.com/heckmon/flutter_code_crafter)
It needs a backend shell to work. Xterm is just a front-end framework. Use the flutter_pty package to connect Xterm with the Android shell. Otherwise, you need to bundle an...
```dart terminal.onOutput = (data) async{ if(data.contains(utf8.decode([127]))){ terminal.buffer.backspace(); terminal.write("\x1B[1P"); data = data.replaceAll(utf8.decode([127]), ""); } } ``` The ```terminal.buffer.backspace()``` moves the cursor backwards and ```terminal.write("\x1B[1P");``` delete the character at current cursor position.
Try [this](https://github.com/heckmon/flutter_code_crafter)