User Kaushik - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:15:11Z http://stackoverflow.com/feeds/user/11325 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/720202/positioning-formulas-in-latex/720227#720227 0 Answer by Kaushik for Positioning formulas in latex Kaushik 2009-04-06T03:59:17Z 2009-04-06T03:59:17Z <p>I won't attempt to address your question directly since it seems to have been addressed above. I will however suggest that you try LyX to ease yourself into the TeX world. It presents a graphical interface with immediate preview that may be more intuitive given your background using word and so on. It's built upon a LaTeX base, so you're using LaTeX commands where applicable, but it's still (in my opinion), a much easier introduction to TeX.</p> <p><a href="http://www.lyx.org/" rel="nofollow">LyX</a></p> http://stackoverflow.com/questions/119238/what-are-your-favorite-cs-video-lectures/119455#119455 2 Answer by Kaushik for What are your favorite CS video lectures? Kaushik 2008-09-23T06:51:14Z 2008-09-23T06:51:14Z <p>I tend to use Berkeley's and MIT's. OCW tends to be more centralized and organized, but it's quite easy to find the actual course websites for Berkeley classes for lecture notes and so on (in addition to lectures from <a href="http://www.webcast.berkeley.edu" rel="nofollow">here</a>). </p> http://stackoverflow.com/questions/118550/best-latex-viewer-for-linux/118875#118875 0 Answer by Kaushik for Best LaTeX viewer for Linux Kaushik 2008-09-23T03:04:04Z 2008-09-23T03:04:04Z <p>More generally for others apart from the poster: If you're using Windows you'll have to install MiKTeX or a similar distribution to be able to actually convert source files into DVIs or PDFs. You may want to consider a GUI like TeXnic Center. If you're running a Mac, then you'll need to install MacTeX or Tetex. If you're running a linux distribution, then most tools will already be present. As suggested earlier, give LyX a try. It's quite cross-platform and is a more intuitive means to transition into using LaTeX.</p> http://stackoverflow.com/questions/111763/where-can-i-learn-about-proven-methods-for-sharing-cryptographic-keys/112270#112270 1 Answer by Kaushik for Where can I learn about proven methods for sharing cryptographic keys? Kaushik 2008-09-21T21:48:02Z 2008-09-21T21:48:02Z <p>Go here for a discussion of the mathematical basis to Shamir's secret sharing and brief discussion of the type of practical applications that it has. Scroll down the page to the lecture notes on Polynomials and Secret Sharing. It's probably a v. basic overview of the area, but should be quite interesting for you. <a href="http://www.cs.berkeley.edu/~daw/teaching/cs70-s08/" rel="nofollow">Discrete Mathematics Notes</a></p> http://stackoverflow.com/questions/112064/what-is-an-invariant/112147#112147 0 Answer by Kaushik for What is an invariant? Kaushik 2008-09-21T21:01:17Z 2008-09-21T21:01:17Z <p>Following on from what it is, invariants are quite useful in writing clean code, since knowing conceptually what invariants should be present <em>in</em> your code allows you to easily decide how to organize your code to reach those aims. As mentioned ealier, they're also useful in debugging, as checking to see if the invariant's being maintained is often a good way of seeing if whatever manipulation you're attempting to perform is actually doing what you want it to.</p> http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111879#111879 9 Answer by Kaushik for What did you use to teach yourself python? Kaushik 2008-09-21T19:46:40Z 2008-09-21T19:46:40Z <p>Dive into Python as well. It's already present in ubuntu hardy installations, so it's very convenient.</p> <p>The <a href="http://www.pythonchallenge.com/" rel="nofollow">Python Challenge</a> is a very pleasant way to get used to programming with python. You also get to try some quirky puzzles, so it's quite enjoyable.</p> http://stackoverflow.com/questions/1447653/multiple-programmers-in-software-development-how-do-we-work-on-the-same-code-and/1447660#1447660 Comment by Kaushik on Multiple Programmers in Software Development. How do we work on the same code and it always be updated?? Kaushik 2009-09-20T04:59:12Z 2009-09-20T04:59:12Z One easy way to set up an SVN server is to use Google Code. Go to <a href="http://code.google.com/hosting/createProject" rel="nofollow">code.google.com/hosting/createProject</a> and choose Subversion as your version control system. Anything you host on Google code can be viewed and checked out by anyone though. http://stackoverflow.com/questions/1307577/how-do-we-as-a-community-help-encourage-programming-in-public-schools-or-stat/1307663#1307663 Comment by Kaushik on How do we, as a community, help encourage programming in public schools? (Or state Schools for the UKers.) Kaushik 2009-08-20T19:29:19Z 2009-08-20T19:29:19Z Were you thinking of scratch? <a href="http://scratch.mit.edu/" rel="nofollow">scratch.mit.edu</a> or Alice? <a href="http://www.alice.org/" rel="nofollow">alice.org</a>? http://stackoverflow.com/questions/259660/painless-analysis-of-algorithms-training/259679#259679 Comment by Kaushik on Painless 'Analysis of Algorithms' Training? Kaushik 2009-03-02T06:09:49Z 2009-03-02T06:09:49Z In particular, look here <a href="http://www.cs.berkeley.edu/~vazirani/algorithms.html" rel="nofollow">cs.berkeley.edu/~vazirani/algorithms.html/&hellip;</a> for a draft of the textbook used at Berkeley. There are no podcasts or webcasts that I know of for a class on Algorithms at Berkeley.