Jump to content

Garda

Dedicated Members
  • Posts

    688
  • Joined

  • Last visited

  • Days Won

    1

Contact Methods

  • Website URL
    http://www.linuxquestions.org/blog/garda-181394/
  • ICQ
    0

Profile Information

  • Location
    Australia

Recent Profile Visitors

6,593 profile views

Garda's Achievements

  1. There is this presentation which does essentially that. Unfortunately it seems whoever the presenter is he hasn't gone anywhere with the technology. It's an interesting concept and I'm absolutely sure commonly used by people that aren't mentioning it to anyone. Probably healthy to leave your phone in aeroplane mode whenever you can.
  2. > Under the new rules, cars will also be fitted with compulsory data recorders, or "black boxes". I just don't see this playing out as a system that automatically controls your car's speed. No government wants that. There is just too much revenue collected from speeding fines. Instead, a government wants to be able to record where you were at every moment in a completely opaque black box. Then, whenever you come in for a service just download your driving habits and fine you for each time you sped. Much easier than installing cameras all over the place and only getting you on rare occasions. No government wants to help you automatically stay within the speed limit. There is not a government in the world that wants to shoot itself in the foot and dry up all it's revenues.
  3. Hi, The best way to get a response if you need help is to ask specific questions regarding the particular issue you have.
  4. Sorry if this seems too critical or is too much, but a few quick points: Personally, I wouldn't use "from module import *" if I'm just using a single class, once. If anything, you can "from irc import IRC", which would work in just the same way. In fact, what I would do is "import irc" then use "irc.IRC()". Having those namespaces can be useful when you are using more modules. I noticed a lot of try: except:. You probably can do this in a better way. I haven't looked too closely, but it looks like your error is an index error for a list/tuple. I'm not sure what your algorithm is, but you almost certainly can do it in a way that is more elegant. You should delete irc2.py. I think you're not even using it at all. I'm confused on why this line even exists when you have this one when the class is instantiated. IIRC Django has a settings.py from which variables are collected. I personally use a dictionary which I import for my settings. That way your settings are separated from your initialisation script. This line will always return, no matter what. I don't think the "while 1:" changes anything at all. The way I design a module is have all of the global variables at the very top (basically everything up to the art), then functions, then code underneath a "if __name__ == '__main__':". That is even if I'm not using the muliprocess module. Don't be ever ashamed to post work, you needn't call it dyslexic. I think it's generally good, with just a few rough edges. How long have you been using Python?
  5. I haven't seen this yet. The trailer is here. From what I can see it looks a little cheesy. Mac is a cliché action hero whereas RDA was more humble and I think it worked better. That's why using his smarts made sense and fit into the character. Will have to wait and see after I have watched it though.
  6. Has anyone heard of this show? The promotional page here is also kind of cool, IMO. I think it fits with the usual audience here.
  7. There's something I don't really get about this. In the Samsung case it's a little different because they're taking audio and it's leaving your TV to the Internet, but when the Xbox one was supposed to always be listening people got really freaked out about spying. I don't see this as any different to any microphone connected to software. Everybody with a mobile phone is taking it on faith that the software in the phone isn't switching on the mic and sending that away or doing something nasty. Similarly, the xbox one is listening, but you're taking it on faith that it's not doing anything nasty once it is. In both cases it's the same faith in software that you're hoping isn't going to do anything nasty, but people feel really uncomfortable about some things and very accepting about others.
  8. Garda

    Drones

    Hi, Does anyone have any experience with these? I have been told that it's a good idea to get a cheaper ~$50 one to practice my piloting. I expect that I will probably be terrible and crash it often. Is it as fun as I imagine it will be?
  9. Not entirely relevant, but I have noticed that people will *almost always* click on links. It's a weird fetish the computer using world has. If you want to mask something, use a URL shortener first. Most of the shortening services offer a simple http based API, if you need it to be automated.
  10. I just recently bought a laptop. I wanted a large one that I could work on, so got a 15.6'' Asus. I can't remember the brand name, but it's part of their "ultrabook" (but not nearly as nice as the macbook air) series. It has an SD card reader, i5 processor and 4GB of RAM, 3 hours of battery at regular use (this is my experience, rather than the 5.5 promised). Debian installs without problems and all of the hardware works without any issues. For what you want, I don't think you need to get anything better than what I described above. Perhaps get one of the alternatives with a proper video card, rather than the Intel HD graphics (which is pretty terrible for any "real" games) if games are important to you. If you're just studying and expect to graduate and have a real job in the near future, I think it makes even more sense to get something cheaper.
  11. I have been using 7zip and Winzip recently. Neither however perfectly hits the spot in terms of what I want from a file compression tool. I would like: Something where I can compress/decompress on both Windows and Linux. .zip files are OK for that. Random access. .7z files do not allow this, so if you have a really big archive, it has to look through serially to find the one file you want to extract. LZMA and PPMD. Both Winzip and 7zip support compression and decompression of these. 7zip is no longer being maintained and I'm concerned that all of my .zipx archives will be inaccessible to me one day when I don't have Winzip available to me. Otherwise, the format works great! What tool do you normally use?
  12. What do you mean by "software composing"?
  13. Garda

    Fun with Shodan

    Thanks, I also found the relevant RFC is RFC2616 and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html'>Section 9 is the one that lists all of the request types. However, all I wanted was just enough to get the server to give me its headers. I found this Firefox addon listing headers as you visit a webpage, which I think can be quite useful.
  14. I don't disagree with Sitwon in anything that he said. My point was more about how I feel personally. I find got to be a bit unclear since I don't now it all that well. I try to be very clear about what I am commuting each time and what exactly is getting pushed out. One of the problems, and it's something similar to Wikipedia, that being that even if the current head doesn't have something sensitive, it doesn't mean it's not in the history somewhere. Not really a criticism of the tool as much as just me personally that I don't 100% trust myself not to stuff it up. Edit: typo
×
×
  • Create New...