Recent content by ejjpi

  1. ejjpi

    led tv / gaming only

    if you want the best our there, and you don't mind spending a lot, go with a Dell UltraSharp U2713HM
  2. ejjpi

    Why is MS's VS 20xx stuck in the '90s?

    this is why: http://blogs.msdn.com/b/heaths/archive/2012/03/07/why-visual-studio-11-requires-space-on-the-system-drive.aspx
  3. ejjpi

    Creating a web page for survey

    https://www.surveymonkey.com/
  4. ejjpi

    MS SQL DB Resource Management

    you can trace queries with the sql profiler and then find the most expensive ones.
  5. ejjpi

    Confused whether to buy Logitech g400s or not ?

    Take a look at this picture, the g400 it's the third mouse on the second line:
  6. ejjpi

    Anyone uses the TeamViewer VPN?

    using the VPN option acts like the computers are connected to the same common network (eg. LAN). So you can access remote resources like printers, network drives, remote databases and shares.
  7. ejjpi

    best wireless mouse with 1000hz polling and chargin dock

    if you're going corded, logitech g400 is one of the best gaming mouse out there right now, otherwise go with a deathadder 2013 if you prefer razer mice.
  8. ejjpi

    Changing font size and type within a class using CSS

    you have to specify the url protocol in the href and I would use a dash to separate words in the class name to improve readabilty: <a href="http://www.anandtech.com" class="main-link">Contact Us</a>
  9. ejjpi

    I Want My Music Library in the Cloud.

    Why not just using services like spotify or google music? https://support.google.com/googleplay/answer/1229970?hl=en
  10. ejjpi

    Changing font size and type within a class using CSS

    1) Don't use underscores in class names or IDs, use dashes instead (https://developer.mozilla.org/en-US/docs/Underscores_in_class_and_ID_Names) 2) Avoid CSS import (https://developers.google.com/speed/docs/best-practices/rtt#AvoidCssImport) 3) Stay DRY (don't repeat yourself). The following...
  11. ejjpi

    swapImage(); simple javascript doesn't work. help

    what the hell, reading this forum it's like jumping back in the 90's lol. Here's how you do it: HTML: <select id="dd"> <option value="http://deladream.com/wp-content/uploads/2010/11/1984.jpg">None Selected</option> <option...
  12. ejjpi

    USB3.0 hub recommendations?

    go with the belkin one, it is fully compatible: http://store.apple.com/us/product/HD...d-hub?fnode=51
  13. ejjpi

    Challenge 24 Programming Contest

    Seems fun! I'll probably signup
  14. ejjpi

    2015, will you go Windows 9 or steam OS?

    I'll stay with windows 7, or 8 if it gets any better meanwhile
  15. ejjpi

    csharp active log parsing question

    This is how you do it: Stream stream = File.Open(@"c:\mylog.log", FileMode.Open, FileAccess.Read, FileShare.ReadWrite); StreamReader streamReader = new StreamReader(stream); string str = streamReader.ReadToEnd();In this way you'll avoid the error "The process cannot...