Recent content by Atreyo Bhattacharjee

  1. A

    Question How can I acquire a full disk image, of an Android Virtual Device, in Android Studio?

    To my understanding, the software you liked to, is for analyzing a forensics image, acquired form a physical device. I don't know how to get an image of my Android VM, and that is my problem. I have software for Android forensics already.
  2. A

    Question How can I acquire a full disk image, of an Android Virtual Device, in Android Studio?

    I have a presentation to give about Android forensics, and for a demonstration, I need a disk image of the "suspect's mobile phone". I've gone into Android Studio, and in a new AVD, I've just put some contacts and text messages. How can I get an image (.dd or .img) of this virtual device? For...
  3. A

    Using Python to output keyboard strokes and mouse movement

    I don't know how to word this concept as a question, but simply I want to make a rubber ducky out of raspberry pi, and I was wondering if it is possible to output keyboard strokes and/or mouse movement from USB female connections on the RPi, using some kind of Python library or API that runs on...
  4. A

    Why does C not have run time errors?

    Disclaimer: I am a total noob in C, and don't have all too much experience in computer science in general (about 1 year). I come from a background in Java and Python, and when I started learning C, I noticed something I found odd. Why does C not give run time errors, even if I intentionally add...
  5. A

    How to use a Java library?

    So I got into Java and I know all the stuff about classes, interfaces, methods, abstract methods, modifiers, control statements, variables, etc. I got IntelliJ and started a new project to test out and explore LWJGL and how to use it. I downloaded the library, and copied and pasted the sample...
  6. A

    Java string declarations

    Just out of curiosity, why can we declare Strings in Java like: String str = "Cake"; If String is a class, and to make an object with all other classes we need to write something like: Object muffin = new Object();
  7. A

    What can you do with Java I/O library?

    So I'm reading a book on Java, and I'm stuck on the Chapter about IO. So I understand that Java was two streams; the character and byte stream, but I don't understand when to use character stream and when to use byte streams. Also, what if I wanted to make a Java program what can process...
  8. A

    What do programmers learn during the career?

    I'm trying to learn computer programming so I can get a job in the industry when I'm older. I was looking at Java's version history, and so many thing have changed over the years. Do programmers have to relearn stuff everytime a new version comes out? Could you have to relearn a language...
  9. A

    Raspberry Pi GPIO expander

    I am making a project that requires more GPIO pins than the Raspberry Pi has. are there any expanders I can use? Also, is GPIO just on Raspberry Pi or is it a generic term that is on multiple platforms? I am making an LED cube, (10x10x10) and I need to have 30 pins (10 for each axles). Are there...
  10. A

    Malware on Google Chrome

    For some reason, every 30 mins or so, a random tab opens up on Google Chrome. It has inappropriate ads, or pictures. I tried uninstalling/reinstalling Chrome, using the Google Chrome clean up utility, resetting Chrome, and running Windows Defender scans, bit it hasn't stopped. Please help, what...
  11. A

    How does a Python function work to control other hardware?

    I'm sorry if I'm misusing the word package. I have little experience in Python, and am still learning. So in my computer science class, we are using these robots called Finch to learn the very basics of robotics. So using the Finch package, we can make the robot do things with simple function...
  12. A

    How much of a language do professional programmers/ software devs use?

    How much do programmers remember and use of their primary language? Basically what I'm trying to ask is, is it expected for a professional to know everything about a language or development tool? Or do pros also use references and the internet to look stuff up?