Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. She's not naked so idgaf
  2. This ^ Just so everyones aware, @Alek has contributed to API development more than anyone else so I can only imagine how much work will get done on the bot now with him as part of the team.
  3. I would assume the argument refers to milliseconds between events
  4. Just send a mouse event at that position, making sure it extends from BotMouseEvent or whatever it's called or else the bot will consume it if human input is disabled. the fuck
  5. Should I dual boot my mac to windows or just load it in a vm
  6. Easily one of the best decisions made on this site. Goodluck @Alek!
  7. If you can find an online site offering videos that go past moves like that arm bar that even my grandmom knows I'd be extremely surprised. Also, if you had an IQ higher than a toothpicks you'd be able to follow this conversation and actually understand the ideas I'm trying to get across. Since you obviously cannot grasp or even comprehend them I'm only wasting my time replying.
  8. I'm done entertaining someone with no worldly experience. You're that kid on the internet trying to look like a hard ass because you've never done anything in the real world (no, getting drunk, doing drugs, going to house parties, etc. has nothing to do with actual situations) and are still trying to "fit in". I highly doubt you've ever been in an encounter with someone coming at you with a weapon, so you cannot make judgements on how to act. Self defence classes? Wow, talk about no knowledge of anything. inb4 you have no idea what muay thai or brazilian jiu jitsu is.
  9. Are you aware of the damage a knife can do to the human body? You obviously have absolutely no real world experience and have never been in any semi adrenaline pumping situation. I have no regrets saying that if someone was coming at me with a knife, and I had a gun, I would shoot them multiple times if they got within a few feet. Knives are not toys and can deal extensive damage. No, you're having an opinion instead of agreeing with the majority who's argument is based on logical fallacies.
  10. Holy shit you're ignorant. Forget about having an educated discussion, I'd rather not be dragged down to your level of stupidity and have you beat me with experience. Did you really just use a meme to attempt to prove a point?
  11. Here we have it folks, a typical 'murican. These kinds of people contribute to the idea that all Americans are stupid due to their belief in buying all American products actually stimulates the economy, the president is the authority figure of the country and the only thing they know is what the media tells them. Oh, and they're also strong believers in conspiracy theories.
  12. I mean I could call the pizza man and possibly get a serial killer at my door soooo yeah that's pretty scary and we should fire them all.....
  13. Are you autistic? You sound like the millions of other morons will believe anything that's presented to them. If an individual went outside right now and shot someone, does that make every person in the world a killer? No? Then why does the actions of a few cops, doing their job may I add, constitute the theory that all cops are cold blooded killers? You could make the argument that the amount of police brutality and infringement on our civil rights has increased immensely over the past few years (which the cops aren't even to blame for, people should actually educate themselves) they're doing what they need to survive. If they don't they'll get fired and be unable to provide for their families or themselves. Being a rule enforcer is much harder than it looks, especially when you're constantly walking the line between what's morally right and morally wrong. But yet you won't post anything about the thousands of other cops in the past 4 hours going out of their way to help people in need.
  14. I could easily go 10 meters before either of those cops could pull out a tazer, and even if they could would you be willing to risk your life on one shot? Because that's all their going to get. Debatable whether or not we'd be in jail, however you're expressing the opinion of someone who wasn't in the situation. If he did in fact have a knife despite there being two of them and one of him he could have easily killed one of them if they resorted to a mace only. Shooting a gun and hitting someones legs is hard as fuck, getting out your tazer takes time, and while you're doing that he could be on you in seconds. Why would the cops risk their life for some blithering idiot saying "shoot me"? They're required to, it's in their training. If our military acted like that we wouldn't have a country right now. I'd be interested to see @Alek's opinion on this.
  15. But yet if it was someone defending themselves against someone allegedly coming at them with a knife, even if it was 10 feet away, that person wouldn't get any hate. I'm sick of idiots thinking they're high and mighty because they can say "fuck the police".
  16. // Copyright (c) 2014 Anthony Puppo. All rights reserved. import Foundation private var instance:WebAPI! func getWebAPIInstance() -> WebAPI { if (instance == nil) { instance = WebAPI() } return instance } class WebAPI { private init() { //Singleton Design Pattern } // Sends a pre-configured asynchronous request func sendRequest(request:NSMutableURLRequest, callback:(String!, NSError!) -> Void) { let task:NSURLSessionDataTask = NSURLSession.sharedSession().dataTaskWithRequest(request) { (data:NSData!, response:NSURLResponse!, error:NSError!) -> Void in if (error == nil) { dispatch_async(dispatch_get_main_queue(), { callback(NSString(data: data, encoding: NSUTF8StringEncoding), nil) }) } else { dispatch_async(dispatch_get_main_queue(), { callback(nil, error) }) } } task.resume() } // Retrieves a JSON object and handles it asynchronously with the defined callback func fetchJSON(json:AnyObject!, httpMethod:String, url:String, cachePolicy:NSURLRequestCachePolicy, timeoutInterval:NSTimeInterval, callback:(Dictionary<String, AnyObject>!, NSError!) -> Void) { let request:NSMutableURLRequest = NSMutableURLRequest(URL: NSURL(string: url), cachePolicy: cachePolicy, timeoutInterval: timeoutInterval) request.HTTPMethod = httpMethod request.setValue("application/json", forHTTPHeaderField: "Accept") if (json != nil) { request.setValue("application/json", forHTTPHeaderField: "Content-Type") request.HTTPBody = stringifyJSON(json).dataUsingEncoding(NSUTF8StringEncoding)! } sendRequest(request, callback: { (data:String!, error:NSError!) -> Void in if (error == nil) { dispatch_async(dispatch_get_main_queue(), { callback(self.parseJSONString(data), nil) }) } else { dispatch_async(dispatch_get_main_queue(), { callback(nil, error) }) } }) } // MARK: - Privates // Converts an object into JSON String form if possible private func stringifyJSON(json:AnyObject) -> String { var error:NSError? let jsonData:NSData = NSJSONSerialization.dataWithJSONObject(json, options: NSJSONWritingOptions(0), error: &error)! return (error == nil) ? NSString(data: jsonData, encoding: NSUTF8StringEncoding) : "" } // Converts a JSON string (if possible) into a usable Dictionary private func parseJSONString(jsonString:String) -> Dictionary<String, AnyObject> { var error:NSError? let data:NSData = jsonString.dataUsingEncoding(NSUTF8StringEncoding)! let jsonObj:Dictionary<String, AnyObject> = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions(0), error: &error) as Dictionary<String, AnyObject> return (error == nil) ? jsonObj : Dictionary<String, AnyObject>() } }
  17. I can't comprehend why people would spend over $80 on a pair of shoes.
  18. If you think high school is about partying you've obviously never been to a real party.
  19. Unless you're doing hundreds per day you won't gain anything. It also depends on how you're leveraging your body weight.
×
×
  • Create New...