Jump to content

cyberproxy

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by cyberproxy

  1. Hi, I was hoping someone can help me understand the 6 principles of Bureaucracy by Max Weber? I found a source here: http://www.bustingbureaucracy.com/excerpts/weber.htm but I'd like it to be clearer, basically and simply, what are the 6 principles/what is he saying?
  2. Can you help define these problems? 1) 1972: Assembly-line workers 2) Proletariat 3) Lumpen Proletariat 4) Bourgeoisie 5) Horricutural society
  3. I'm sorry if this was the wrong category, but I just couldn't find one that fit. Basically, let's say someone hacks your cable line. They can listen to your conversations you're having in your home through wires and however they managed to hacked audio devices. This is connected to cable, Internet. Would there be software, for example, that showed locks of anything or anyone doing so? How can I track this down? For example, I have an app on my Android that displays everything AND EVERYONE connected to my wireless network and whoever tries accessing it. That's my question. How can I monitor this, trace this, find some sort of logs at all? Software? If I encrypt my computer and put Linux on it (I'm very knowledgeable in Linux) would that protect it? Also this isn't happening to me, someone I know. Also, please don't mention ask the cable. I can do it with some guidance more than they can for free, when they'd charge like 4,000 or something.. Obviously not that high, like a couple hundred. Also maybe could trace IPs and such
  4. How do electrons change in magnetic fields? Can't figure out how it works.
  5. "An individual machine code is called a machine instruction." What does "individual machine" code mean, what does that do? Please don't give me links, I came on a forum for answers, I can find my own links. Thanks!
  6. I'm learning machine code. My questions are: 1) What is an accumulator? 2) What does the following statement mean, in simpler form? "The machine instruction to add 1 to the value in accumulator A is 01001100."
  7. It said "Place tempgba.plg, tempgba.bmp, and tempgba.ini in the _dstwoplug folder of your DSTWO. Place the TEMPGBA folder in your dstwo's root folder (the one that contains _dstwo, _dstwoplug, etc)." Does that mean I need a DSi? (Like the game device)? I don't have one, I'm doing this for a friend. What does this mean?
  8. Yes, I don't like any other OS.. I use Linux Mint 14.1 So, I don't use CodeBlocks? What exactly can I use, and how difficult would it be?
  9. Can somene tell me how I'd compile this? Or guide me? https://github.com/Nebuleon/TempGBA Thanks a lot, in advance!
  10. Given the corner points of a triangle (x1, y1), (x2, y2), (x3, y3), compute the area. Hint: The area of the triangle with corner points (0, 0), (x1, y1), and (x2, y2) is |x1 · y2 - x2 · y1| / 2. Complete the following code: public class Geometry { /** A method to return the smaller of two integers @param a, the first integer @param b, the second integer @return small, the smaller of the two */ public static double triangleArea(double x1, double y1, double x2, double y2, double x3, double y3) { ... } } What's the answer? Having a tough time.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.