Search results

  1. P

    Cool Matrix effect using HTML5 and Javascript

    The ascii-start will pass an integer to the String.fromCharCode(). In case of Devnagari( which you mention as Hindi) script the Unicode block starts from Hex0900 which translates to 2304 in decimal. check here for the Unicode characters mapping. The numbers are in Hexadecimal format...
  2. P

    English TV series discussion

    BTW has anybody seen Defiance? Checked out the first episode and will probably watch the entire season later once it is finished.
  3. P

    HeadPhones < $150

    http://www.amazon.com/Audio-Technica-ATH-M50S-Professional-Monitor-Headphones/dp/B004ZG9TMA?SubscriptionId=AKIAJ7T5BOVUVRD2EFYQ&tag=camels-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B004ZG9TMA check the "More Buying Choices" tab on right side. Amazon.com is priced at $107.10. If...
  4. P

    HeadPhones < $150

    If the only problem with the ATH-M50 is the coiled cable, search for M50S which is the same model with a straight cable. The straight cable ones are currently at 107$ shipped by amazon which is the lowest price ever...
  5. P

    Croma ACs?

    read my earlier post. I own a Croma branded AC and it was manufactured by Voltas. Croma does not manufacture their products. About the current ACs you can be 99% sure that they have been made by Voltas since both are under the same TATA brand and it is a win win for both. You can also check a...
  6. P

    Can I use XBOX 360 Wireless controller with PC?

    http://shopping.indiatimes.com/games/controllers-and-remotes/microsoft-xbox-360-wireless-controller/41626/p_B1215657 If you check the link above, the wireless controller box already has the receiver in the package. You can easily sell the controller for 2.5-3k based on the buyer. A single...
  7. P

    Create Folder using YY-DD-MONTH format

    You are using the 'Date' command which is system/locale dependent so this batch file may not work on another computer or on your PC if someone changes the 'short date' format from 'Control Panel/Region and Language Settings' Instead of 'Date /t' try using the WMIC command mentioned in the...
  8. P

    Croma ACs?

    I have a couple of Croma ACs. A 1Ton 5 star and a 1.5Ton 3 star which were bought a couple of years back and are working perfectly fine. Mine were manufactured by Voltas which will probably be the case even now as both are TATA companies. Confirm with the sales agent whether it is a Voltas OEM...
  9. P

    Buying Jewelry from US sites

    Unless you know what exactly she wants, you should avoid it. You can get very good imitation jewellery/ american diamonds locally too and women enjoy shopping/ trying out multiple options. Buying online takes out all the fun. It is similar to tech items, you don't buy a pendrive without...
  10. P

    FS: Storage Hardware Sealed RMAed WD My Book Essential 1TB USB 3.0 Drive

    @adilj can you please post the shipping cost/weight that was charged for Fedex Priority Overnight and the shipping location/city? Just curious about Fedex charges.
  11. P

    A new portable console from nVidia "Project Shield"

    nVidia introduced a new portable console based on Android at CES 2013 which is currently being called "Project Shield". Noteworthy features include a quad core Tegra 4 processor and a 5" 720p multitouch screen. Read more about it here...
  12. P

    nVidia introduces "Project Shield" portable Android game console.

    nVidia announced "Project Shield" at CES 2013 which is a portable Android based gaming console. It has a quad core Tegra 4 processor with a 5" 720p multi-touch screen, a massive controller for a portable device and a 38Wh battery. Slots included are HDMI (micro HDMI?), microSD, microUSB and a...
  13. P

    Storage Solutions USB Data Cable

    Had been to lamington road for the exact same query (USB3 Male to micro USB3 male). 150 Rs was the cheapest quote I received. This was from the smaller shops, he said that an official cable for the portable HDDs will cost around 250 Rs.
  14. P

    Need to buy Power strip with surge / spike protection (Details Inside)

    I have been using this for the past couple of years. MDR Electronics - MX Electronics - Home Theater Cables & Connectors - Computers & Laptop Accessories - Pro Audio / Studio Audio Cables & Connectors - Audio Video Components & Accessories - Fiber Optic Component & Accessories - Cable TV...
  15. P

    Nexus 4 query

    Keep in mind that the storage space available is not going to be the same as what is mentioned. My 16GB Galaxy S2 (without additional microSD) shows 1.97 GB Device Memory and 11.50 GB USB Storage which comes to roughly 13.5GB out of the advertised 16GB. As you mentioned watching videos as one...
  16. P

    Help me with this C program to calculate matrix determinant

    @haris5sani can you make a new thread so that we don't go too OT in this one? Also post the exact query with possible examples so that you can get a targeted solution. What you are asking comes under theoretical/algorithmic optimization. If you have to make multiple searches for 3x3 matrices...
  17. P

    Help me with this C program to calculate matrix determinant

    CA50 regarding counter r3c1 calculation requires you to subtract (r3c1*Row 1) from Row 3. Similarly r3c2 calculation requires you to subtract (r3c2*Row 2) from Row 3. The bold part is what you need to initialize counter to depending on the current values of i,j. You are actually initializing it...
  18. P

    Help me with this C program to calculate matrix determinant

    What IDE do you use to develop? If you are able to singlestep in the code and check variables you could solve this yourself. suggestions to get this working. calculations for r1c1, r2c1 and r2c2 are working fine. r3c1 gets calculated wrongly because the value of counter is not initialized...
  19. P

    Help me with this C program to calculate matrix determinant

    I don't see any division by the matrix members required for the calculation here. Determinant - Wikipedia, the free encyclopedia What formula are you using to calculate the determinant? Post the entire code with the main() function.