Search:

Type: Posts; User: mendhak

Page 1 of 13 1 2 3 4

Search: Search took 4.46 seconds.

  1. Re: HaveIBeenPwned reports QuinStreet breach - change your passwords

    It's time to mend it all. :afrog:
  2. HaveIBeenPwned reports QuinStreet breach - change your passwords

    Got an email from HaveIBeenPwned today about QuinStreet assets being breached in 2015. You can check if your email address is part of this breach by checking it on their site. Although it's a year...
  3. Thread: Farewell?

    by mendhak
    Replies
    98
    Views
    23,892

    Re: Farewell?

    I have no idea why any of them would do such a thing.
  4. Re: Tråden tidligere kjent som den Norske Tråden nå Den Nordiske Tråden :)

    97809
  5. Replies
    205
    Views
    24,971

    Re: The State of VBForums

    It's as though the moderators moderate moderation.
  6. Replies
    3
    Views
    2,084

    Re: FileUpload Security

    FileUpload.PostedFile.ContentType happens after the upload. Best to perform the validation on the client side, which you can do with a RegexValidator using

    +(.jpg|.png|.gif|.svg)$

    And point...
  7. Re: Can I send a JSON string with a password in a POST on HTTPS?

    A man in the middle attack could sniff your password but that's where your cert comes in, make sure you buy a cert from a CA that is 'recognizable' and well known so that the user "trusts" it. Don't...
  8. Replies
    2
    Views
    2,352

    VS 2010 Re: How to Show a Div in JavaScript or JQuery

    Your div has a runat="server". That means its ID will change at runtime. It will not be divGoogleEarthMap, it will be something like ctl00_blah_blah_divGoogleEarthMap.

    Either remove the...
  9. Re: Do many of you still see no need for a slate/tablet?

    It's not often that I walk into metaphorical things, but this would serve as one occasion of where I have blundered straight into the thick of it.
  10. Replies
    13
    Views
    3,458

    Re: My brilliant idea- the Yotamarker

    I think yotamarker is a good name and the patent can be applied for and will be granted for this because of the explanation in the first post.
  11. Replies
    58
    Views
    6,440

    Re: So elder scrolls 5

    Wossname introduced me to Oblivion.

    I played for the graphics. When I heard of TES5 coming out, I immediately threw a large stack of cash at my computer and it upgraded itself.
    ...
  12. Re: Do many of you still see no need for a slate/tablet?

    I reckon I will buy a tablet when I become old, have very few things to do and start finding computers too 'difficult'.
  13. Replies
    13
    Views
    3,458

    Re: My brilliant idea

    This is interesting. This idea can be extended to other things too, anything that your group of friends share an interest in.

    In fact, I could quite easily add the functionality to photograph and...
  14. Re: When space gets really scarce and I mean really.

    They get bonus points if they can manage that with this train passing through:

    http://i.imgur.com/Ky8yY.jpg
  15. Thread: Windows 8

    by mendhak
    Replies
    20
    Views
    3,446

    Re: Windows 8

    Yes, I've been playing with it today. I'm still looking for this 'promise' that everyone keeps talking about. It's Win7 with an alternative shell. I'm interested in knowing whether it was joined...
  16. Re: How to code to detect the file existing in http format?

    Your file is actually a URL, so you want to use the HTTP methods to detect them.


    HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://order/........");
    HttpWebResponse resp =...
  17. Thread: Bees.

    by mendhak
    Replies
    32
    Views
    4,657

    Re: Bees.

    Dress up as Moses, lead their worker ants away.
  18. Thread: Monavo2011

    by mendhak
    Replies
    9
    Views
    3,101

    Re: Monavo2011

    This time, we decided to invite you after the trip. The trip has already happened but your invite is still pending.
  19. Replies
    1,154
    Views
    386,576

    Re: artificial intelligence

    We apologize for this interruption to your regularly scheduled goonery. Please enjoy this video of two seniors on a web cam instead.
  20. Replies
    32
    Views
    4,177

    Re: Welcome back....

    I was going to use one of those but then I was discharged from the navy.
  21. Thread: Bees.

    by mendhak
    Replies
    32
    Views
    4,657

    Re: Bees.

    Do what BackWoodsCoder said. Double your efficiency by throwing your dishes near the beehive, their bumbling flight paths in the throes of death will leave your pots and pans with a bright sparkly...
  22. Replies
    19
    Views
    3,407

    VS 2008 Re: Webpage speed issues

    Start Fiddler2 and have it running when you do your AJAX/JQuery postbacks. It's probable that you're transferring too much data when all you need is something simpler.

    You've also got too many...
  23. Replies
    2
    Views
    1,250

    Re: Password masked + more

    Why not just use the PasswordStrength control?

    http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/passwordstrength/passwordstrength.aspx

    As for your first statement, you shouldn't have...
  24. Re: why is cookie still working when browser has cookies disabled?

    Does the same thing happen in Chrome/IE?
  25. Replies
    3
    Views
    2,025

    VS 02/03 Re: Required permissions cannot be acquired

    Are you in a medium trust environment? Look for a <trust level=.......> somewhere in the machine.config or web.config.
  26. VS 2008 Re: aspnet page and a custom control on that page

    Oh, it's you.:afrog:


    That way won't work well due to the lifecycle. You want to go the other way - have the control raise an event. Have the page subscribe to that event. When the page...
  27. Replies
    15
    Views
    2,176

    Re: Motorolla Driod BIONIC!

    Tethering is the only way forward for you.
  28. Replies
    32
    Views
    4,177

    Re: Welcome back....

    I have become one of them. You know, like Peet and NoteMe and venerable bede. We go away, lock ourselves in a basement, living through pointless anime marathons and occasionally emerge in order to...
  29. Replies
    30
    Views
    4,773

    Re: [RESOLVED] Which book should I read next?

    The last time I used a programming book was to raise my monitor height so that I could read the online tutorial better.
  30. Replies
    2
    Views
    1,773

    VS 2010 Re: FileSystemWatcher problem?

    Capture the file name, add it to an array, Thread.Sleep a bit, process it. You could keep it in the array for a while longer if it still fails. You may also want to look at processing those files in...
  31. Replies
    8
    Views
    2,564

    VS 2010 Re: Question about data caching

    Don't make database calls on a per textbox basis. Do it all in one go. So when the user clicks save, you gather all of the information in all of the textboxes, pass it to your stored procedure, in...
  32. Replies
    10
    Views
    2,302

    Re: HP touchpad (yeah I got one)

    Keep the 16. Use it cleanly and carefully. If you get a 32, sell the 16. Someone will buy it, it's guaranteed.
  33. Thread: Today .....

    by mendhak
    Replies
    19
    Views
    3,043

    Re: Today .....

    Today, VisualAd was awake and ready to go before 730 AM. It was a miracle.
  34. Re: iPhone 4 coming to Verizon to be announced today

    Thank you for announcing the upcoming announcement.
  35. Re: [+++ XMAS Greetings +++] Merry Christmas to all... :)

    Is it over yet? Can I come out now?
  36. Replies
    17
    Views
    2,173

    Re: What makes Windows look better than Macs?

    You can eat a mac and it is sold in macdonalds and it makes you fat.
    You cannot eat a window as it would cause you severe pane.
    You can wear a fedora but also figuratively eat it too.
  37. Replies
    7
    Views
    2,351

    Re: My BlackBerry isn't working!

    Fork Handles, same guy (I think the other died)
    http://www.youtube.com/watch?v=Cz2-ukrd2VQ
  38. Replies
    26
    Views
    7,907

    Re: HELP!!!!!! Tell me a good gaming monitor. :)

    TFT is improved but not good enough for first person shooters. The response time you often see specified is a screen response time, doesn't indicate color change responses which is the important...
  39. Replies
    26
    Views
    7,907

    Re: HELP!!!!!! Tell me a good gaming monitor. :)

    But this thread sounds suspiciously suspicious. You don't game. Your idea of gaming is peering at the sun through your telescope. Perhaps you are trolling.

    Have a look at the XL2370. It's LED...
  40. Replies
    26
    Views
    7,907

    Re: HELP!!!!!! Tell me a good gaming monitor. :)

    TFT monitor for gaming.

    http://img827.imageshack.us/img827/3275/lolkp.jpg
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width