Jump to content
xisto Community

k_nitin_r

Members
  • Content Count

    1,467
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by k_nitin_r

  1. It isn't *that* small - it's a 4-seater. It's like an old Daewoo Matiz or Chevrolet Spark. The Reva is definitely smaller. If it was available with a larger engine, it would certainly have been more popular. There are rumors of Tata creating a diesel and an electric version of the Nano, but it's hard to tell at this point... with such low fuel consumption, it isn't really worth researching a diesel version because the consumers wouldn't want to take on the additional cost for a negligible decrease in fuel expenses. An electric version would have a very low range as it is heavy, compared to the Reva.
  2. 7-zip is a software utility used to compress/de-compress files. It supports de-compressing a wide variety of formats. It's native format, 7z, is very efficient at compressing files and you'll often see a better compression ratio with 7z than with Zip or Rar. Perhaps the only format able to achieve a better compression ratio is StuffIt. 7-zip is both free and open-source. Regards, Nitin
  3. Whether you choose .NET or Java depends on what kind of job you are looking for. If you plan to build enterprise systems in large firms then Java is your platform of choice. If you simply need to build intranet websites, ASP.NET is great for rapid development. Java is also the preferred choice for the backend of dot-com businesses as it offers greater reliability and stability when dealing with a higher volume of data. Regards, Nitin
  4. Hi! There are more .NET jobs out there, but Java jobs pay better. I'd suggest you learn .NET with C# and try to pick up Java along the way later. Regards, Nitin
  5. The process that I go with to create a website is to start with a design in Adobe Photoshop (sliced PSD file). I then convert it into HTML markup and CSS using Adobe Dreamweaver. Finally, I use Flash wherever HTML prevents me from achieving the functionality that my design requires, such as the input file form element. Regards, Nitin
  6. Hi! I'd suggest you start off with NetBeans due to it's simplicity and, later, when you're more comfortable with using an IDE, try to switch to Eclipse. The Eclipse platform is much more popular as it can be extended to write C/C++, PHP, Java or even C# code, so you'll probably be able to find more support for Eclipse. Regards, Nitin
  7. In your .bat file, add another line "pause". This will keep the command-line window open till the user presses a key on the keyboard. Alternatively, you can get the Java program to read, thus keeping the command-line window open till the user enters some data. If you need more help, reply back and I'll send you an example. Regards, Nitin
  8. C++ is different from C in that it is object-oriented. Think of it as a language that extends the capabilities of structs from C, enabling you to add functions to structs and to add include-like functionality to create several structs that have the same members. C# is similar in syntax to C++, but takes away the complexities of pointers and manual memory management. It is targeted specifically at the .NET framework. ASP.NET is a web development framework and supports the use of C# and VB.NET. However, you can use class libraries that are created in any language that has a compiler targeting the .NET framework. What I mean is you can create a DLL in J#, another DLL in C++, and call the methods in the DLLs from a web user interface built with either C# or VB.NET. For C++, you can use gcc if you are targeting the Linux/Unix platform. For Windows, you can use the Visual C++ or Borland C++ compiler as they include the libraries you need to develop for the Win32 platform. For C#, you can get the .NET SDK from the Microsoft website which includes the C# compiler (csc.exe). You can also get the Visual C# Express edition. You can use the Borland C# compiler too, but you wouldn't get the libraries for development with .NET 3.0 or .NET 3.5 and newer language features wouldn't be supported. As VB.NET and C# target the same platform, I do not see any advantages there. However, depending on your geographical location, you might be able to find more VB.NET developers or perhaps you can find a VB6 developer willing to 'upgrade' his/her skills to VB.NET
  9. Hi!I do not really know much about the game you are building and I haven't played Dojo, but if you're looking for a way to make a type of block (alphabet, circle, or whatever you call it) more frequent than the others, you can use a different algorithm. Here's what I'd suggest:var x = random(3); //I'm assuming this returns 0, 1 and 2var y;if (x < 2) { y = random(5); //vowels; 0=a, 1=e, 2=i, 3=o, 4=u} else { y = random(21); //the remaining letters}Now, if you look at the first statement, there's an equal probability of x returning a 0, 1 or 2. However, since we're performing the same action for x=0 and x=1, we have twice the probability of returning a vowel.Let me know if you'd like me to tweak the algorithm. Perhaps you can send across the Flash (.FLA) file and I could modify it for you?Regards,Nitin Reddy
  10. Hi!My take on AJAX is that you shouldn't think about hand-coding all of the AJAX calls and server responses. Instead, look for a framework that does that for you on your development platform.If you're working with ASP.NET, check out the Microsoft AJAX Extensions (available as an add-on for ASP.NET 2.0; built into ASP.NET 3.5). The UpdatePanel control offers AJAX capabilities, although it is very very inefficient - you can use it for prototyping or for building quick-n-dirty solutions. The ScriptManager control can generate Javascript proxies for calling server-side code leaving you to just add the client-side scripts.Regards,Nitin
  11. Hi! You'll have to save your username and password while connecting. The next step is to go to the connection properties (right-click, properties). You'll be on the General tab of the dialog box. Click on the Options tab, and un-check "Prompt for name and password, certificate etc.". Click on the Advanced tab, and check "Allow other network users to connect through this computer's Internet connection" and "Establish a dial-up connection whenever a computer on my network attempts to access the Internet". See the attachments for screenshots. Regards, Nitin
  12. GoogleTalk is great for voice chat too, but it doesn't support voice call conferencing i.e. a voice chat between more than 2 people. You can also buy Skype phones, which look and feel like real telephones but work over the Skype network.
  13. I would like to add that different browsers render HTML differently - sometimes these are bugs and sometimes it's just the way the behave because the standards aren't strict enough to specify how something ought to work. A good web designer aims for cross-browser compatibility. Imagine having a user who browses your website using the Safari browser on an iPhone - you can't say, "Hey, use Internet Explorer. Safari sucks!" You've got to support the browser or you'll have a user who wouldn't visit your website again. Internet Explorer does, in fact, have a lot of bugs and deviate from standards. You can see the difference in rendering between browser versions, especially the difference between Internet Explorer 8 and Internet Explorer 7. The compatibility mode feature of Internet Explorer 8 enables the user to temporarily switch to Internet Explorer 7-like behavior and Microsoft has worked on a community developed list of websites that Internet Explorer 8 looks up to determine if it should automatically use compatibility mode. Web designers also have the ability to include a META tag to indicate to Internet Explorer 8 to use compatibility mode. Anyway, in the end, browser wars or not, it's the web designer's responsibility to ensure that the website displays correctly on all major browsers (IE, Firefox, Safari, Opera and Chrome).
  14. Hi! Laser printers do use ink. It's called the toner and is in powder form. The powder is attracted to a drum due to static caused by the laser - this is then transferred from the drum to the paper by heat. Just as you would buy ink catridges for an inkjet printer, you would replace the toner for a laser printer. BTW, the printer that McDonalds uses requires a special kind of paper - the paper is treated such that applying heat 'prints' the text onto the paper. The text tends to fade away so you can't use it to print something that you intend to keep for long. Older fax machines are similar. Regards, Nitin Reddy
  15. Hi! I do not really know why you made this assumption, but I'm guessing you aren't aware of the package managers in Linux. You don't have to compile everything from the source code, if that's what you are implying. Even if you do want to compile the software from the source code, the steps are pretty standard, thanks to 'Makefiles' (a kind of a script to compile source code or to uninstall software). Installing software on Linux is as simple as the one-click installation provided on the iPhone via the AppStore - the only difference being that the whole process is free! If you're running Ubuntu, use the Synaptic Package Manager. Regards, Nitin Reddy
  16. That's quite true, but Windows limits you to some extent too - it's just that most people use an Administrator account instead of using a standard user account. You can't install any software on Windows when you are logged in as a standard user. Linux, on the other hand, does enable users to install software for themselves - they can have their own set of software, document and other files! If you do install any malware, it would only affect your files and not that of other users.
  17. Does holding down the Shift key while inserting the USB drive stop the autorun? This works for CDROM drives. BTW, another way you could do this is to use a Linux LiveCD if you want to read the contents of a USB drive - copy the files you need to your hard drive and remove the USB drive when you want to re-boot in Windows.
  18. Apart from the cell phone plans, there are also services like SkypeOut and JustVoIP that offer really cheap rates for long distance and international calls. With $10, you can make international calls to manufacturing plants in India and China, and talk for 5 hours! I doubt it would take longer than 5 hours on the phone to actually get the parts needed to repair a cell phone.
  19. Hi! The similarity that you see is between Linux shell scripts and DOS batch files - both are essentially command-line statement put into a file (they are actually more than just a series of statements, but at a very basic level, that's what they are!). A Linux shell script consists of the location of an interpreter (usually the "bash" script) at the top of the file, indicated by the "#!", followed by statements that can be executed. If you've never written shell scripts before, here's an article on writing your first shell script: http://www.freeos.com/guides/lsst/ch02sec01.html Do post back if you're looking for more. Regards, Nitin
  20. Hi! I find the site quite dull. The grey center area with the grey advertising bars on the sides make the site seem very lifeless. The smudged edges around the logo don't go with the blue glowing text. The navigation menu is also very slow, and why is there a "For the Ladies" link on a site that is @by the guys and for the guys"? I'm sorry if I'm a bit too harsh, but I'm just giving you my honest opinion. Regards, Nitin
  21. Hi! I think you've got the concept of cleaning the computer all wrong - you do not use a cloth to clean it. That creates static! Instead, you can use a vacuum cleaner (take the brush off and simply use it blow or suck up all the dust). Regards, Nitin
  22. The simplest way you can set this up is to run NetMeeting on both computers and send the files across from one computer to another. Enter the IP address of the other computer to connect. As this occurs over the LAN, this is quite fast. If you're familiar with sharing folders in Windows, that'd definitely be a better option. Or you can setup an FTP server (FileZilla, included with XAMPP) to copy the files across via FTP.BTW, 15GB doesn't sound like much - you can use a 16GB flash drive to copy them all across. Portable hard drives can store upto 500GB. Or, better yet, plain ol' external USB hard drives can store up to 2TB (2,000GB).Regards,Nitin
  23. Hi! I really think you ought to spend more time designing the look of the resume as you try to convey the message that you are a web designer. Perhaps you can put some of the bulleted lists next to each other to reduce scrolling and make better use of space. Regards, Nitin
  24. Hi! I like the layout that you've done for Googlue in that you've made everything accessible on top, but since Yahoo has some sort of script to break out of frames, it doesn't really work for their site. Perhaps you should consider creating a browser toolbar instead. A Bookmark toolbar that is pre-populated with suggested sites? Regards, Nitin
  25. Hi!I know this is going to sound mean, but then again, you asked for an honest opinion. I think the theme doesn't really have a sense of color - the maroon background with the pale yellow header bars just doesn't cut it. You still need a logo for the website.Also, I can't read the text for Forgot Password, Forgot Username and Create Account because it's black text on a dark maroon background.I think you ought to look at a few more professional Joomla! themes.Regards,Nitin
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.