User Kaushik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:15:11Zhttp://stackoverflow.com/feeds/user/11325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/720202/positioning-formulas-in-latex/720227#7202270Answer by Kaushik for Positioning formulas in latexKaushik2009-04-06T03:59:17Z2009-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#1194552Answer by Kaushik for What are your favorite CS video lectures?Kaushik2008-09-23T06:51:14Z2008-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#1188750Answer by Kaushik for Best LaTeX viewer for LinuxKaushik2008-09-23T03:04:04Z2008-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#1122701Answer by Kaushik for Where can I learn about proven methods for sharing cryptographic keys?Kaushik2008-09-21T21:48:02Z2008-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#1121470Answer by Kaushik for What is an invariant?Kaushik2008-09-21T21:01:17Z2008-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#1118799Answer by Kaushik for What did you use to teach yourself python?Kaushik2008-09-21T19:46:40Z2008-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#1447660Comment by Kaushik on Multiple Programmers in Software Development. How do we work on the same code and it always be updated??Kaushik2009-09-20T04:59:12Z2009-09-20T04:59:12ZOne 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#1307663Comment by Kaushik on How do we, as a community, help encourage programming in public schools? (Or state Schools for the UKers.)Kaushik2009-08-20T19:29:19Z2009-08-20T19:29:19ZWere 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#259679Comment by Kaushik on Painless 'Analysis of Algorithms' Training?Kaushik2009-03-02T06:09:49Z2009-03-02T06:09:49ZIn particular, look here <a href="http://www.cs.berkeley.edu/~vazirani/algorithms.html" rel="nofollow">cs.berkeley.edu/~vazirani/algorithms.html/…</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.