active questions tagged beginner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T03:08:39Zhttp://stackoverflow.com/feeds/tag/beginnerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829423/automatic-documentation-best-method-for-creating-a-quick-parser0Automatic Documentation - Best method for creating a quick parserDaniel Harvey2009-12-01T22:35:16Z2009-12-02T02:35:32Z
<p>I have a large script that end-users need to edit so it requires somewhat redundant commenting. I use a layout for my file similar to this</p>
<pre><code>//********************
//
// FileName
// This script contains:
// - Function X - does something
// - Function Y - does something else
//
//********************
//********************
// Function X
// does something (<< I'd only like to enter this part once)
//********************
// Code here...
//********************
// Function Y
// does something else
//********************
// Code here...
</code></pre>
<p>I want to create a simple parser that does the copy/pasting of the function summaries to the file's header. I know of several tools that could help to accomplish this, like ANTLR and even RegEx, but what would be the best method?</p>
http://stackoverflow.com/questions/1828694/creating-a-homepage-in-rails0creating a homepage in Rails?steve2009-12-01T20:29:16Z2009-12-02T02:06:33Z
<p>I'm brand new to Ruby on Rails. I created a project by calling:</p>
<pre><code>Rails hello
</code></pre>
<p>And I can access the project by going to <em><a href="http://127.0.0.1/hello" rel="nofollow">http://127.0.0.1/hello</a></em>, but when I leave off the "hello" from the URL I just get a generic homepage saying welcome to ruby. What's the best way to replace this homepage with a homepage for my project?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1830048/ketchuping-in-getting-linux-source0Ketchuping in getting Linux sourceMasi2009-12-02T01:05:17Z2009-12-02T01:10:48Z
<p><strong>What does the following error messages mean?</strong></p>
<pre><code>$ ketchup -m
Traceback (most recent call last):
File "/usr/bin/ketchup", line 681, in <module>
lprint(get_ver("Makefile"))
File "/usr/bin/ketchup", line 160, in get_ver
m = open(makefile)
IOError: [Errno 2] No such file or directory: 'Makefile'
a $ sudo ketchup -m
Traceback (most recent call last):
File "/usr/bin/ketchup", line 681, in <module>
lprint(get_ver("Makefile"))
File "/usr/bin/ketchup", line 160, in get_ver
m = open(makefile)
IOError: [Errno 2] No such file or directory: 'Makefile'
</code></pre>
<p>I have the kernel key in my gpg-keychain.
I am reading <a href="http://www.scribd.com/doc/3648125/Linux-Kernel-Testers-Guide" rel="nofollow">the tutorial</a>.</p>
http://stackoverflow.com/questions/631598/how-to-use-junit-to-test-asynchronous-processes3How to use Junit to test asynchronous processesSam2009-03-10T18:09:31Z2009-12-02T00:31:32Z
<p>How do you test methods that fire asynchronous processes with Junit?</p>
<p>I don't know how to make my test wait for the process to end (it is not exactly a unit test, it is more like an integration test as it involves several classes and not just one)</p>
http://stackoverflow.com/questions/1829593/using-return-to-exit-a-loop0Using return to exit a loop?dotnetdev2009-12-01T23:07:54Z2009-12-01T23:35:07Z
<p>If I write a for, do, or while loop, is it possible to come out of this with the return keyword?</p>
<p>Eg:</p>
<pre><code>class BreakTest
{
public static void Main()
{
for (int i = 1; i <= 100; i++)
{
if (i == 5)
**return;**
Console.WriteLine(i);
}
}
}
</code></pre>
<p>I know return can be used to exit if statements so I am curious about this as I have never tried it (and can't access my software to write the code to test this).</p>
http://stackoverflow.com/questions/1826519/function-returning-more-than-one-value1function returning more than one valuemariotomo2009-12-01T14:27:23Z2009-12-01T23:21:19Z
<p>still trying to get into the R logic... what is the "best" way to unpack the results from a function returning multiple values?</p>
<p>I can't do this apparently:</p>
<pre><code>R> functionReturningTwoValues <- function() { return(c(1, 2)) }
R> functionReturningTwoValues()
[1] 1 2
R> a, b <- functionReturningTwoValues()
Error: unexpected ',' in "a,"
R> c(a, b) <- functionReturningTwoValues()
Error in c(a, b) <- functionReturningTwoValues() : object 'a' not found
</code></pre>
<p>must I really do the following?</p>
<pre><code>R> r <- functionReturningTwoValues()
R> a <- r[1]; b <- r[2]
</code></pre>
<p>or would the R programmer write something more like this:</p>
<pre><code>R> functionReturningTwoValues <- function() {return(list(first=1, second=2))}
R> r <- functionReturningTwoValues()
R> r$first
[1] 1
R> r$second
[1] 2
</code></pre>
<p>--- edited to answer Shane's questions ---</p>
<p>I don't really need giving names to the result value parts. I am applying one aggregate function to the first component and an other to the second component (<code>min</code> and <code>max</code>. if it was the same function for both components I would not need splitting them). </p>
http://stackoverflow.com/questions/1826197/vital-ruby-concepts-to-learn-before-i-jump-into-rails2Vital Ruby concepts to learn before I jump into Rails?JSmith72009-12-01T13:29:03Z2009-12-01T22:19:37Z
<p>Disclaimer - Ruby is the first language I've ever learnt. I don't have any CS background.</p>
<p>I've worked through "Learn to Program" by Chris Pine which has been enjoyable and I now understand the basics pretty well. The next recommended book would be "Programming Ruby 1.9" (the next PickAxe). From what I've read it's just a massive reference book but it's 960 pages and that scares me.</p>
<p>What, in your opinion, would be the next 'gotta-know' concepts that I should learn?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1829275/working-with-select-boxes-ror0working with select boxes (RoR)steve2009-12-01T22:07:04Z2009-12-01T22:07:04Z
<p>I created an application in Rails and generated two models, one for students and one for awards. </p>
<pre><code>rails students
script/generate scaffold student given_name:string middle_name:string family_name:string date_of_birth:date grade_point_average:decimal start_date:date
script/generate scaffold award name:string year:integer student_id:integer
</code></pre>
<p>Each student can have many awards, so I added has_many :awards to the student model. I also added a select box to the view that lets the user create new awards:</p>
<pre><code><%= f.select :student_id, Student.find(:all).collect {|s| [s.name, s.id]} %>
</code></pre>
<p>My question: If I wanted to give the user the option to create an award without specifying a student, how would I modify the select box to allow them to do this?</p>
<p>I'm brand new to Rails. Thanks!</p>
http://stackoverflow.com/questions/355638/jquery-toggle-event-is-messing-with-checkbox-value7Jquery toggle event is messing with checkbox valueJohn McCollum2008-12-10T10:34:22Z2009-12-01T22:04:06Z
<p>Hi all,</p>
<p>I'm using Jquery's toggle event to do some stuff when a user clicks a checkbox, like this:</p>
<pre><code>$('input#myId').toggle(
function(){
//do stuff
},
function(){
//do other stuff
}
);
</code></pre>
<p>The problem is that the checkbox isn't being ticked when I click on the checkbox. (All the stuff I've put into the toggle event is working properly.)</p>
<p>I've tried the following:</p>
<pre><code>$('input#myId').attr('checked', 'checked');
</code></pre>
<p>and</p>
<pre><code>$(this).attr('checked', 'checked');
</code></pre>
<p>and even simply</p>
<pre><code>return true;
</code></pre>
<p>But nothing is working. Can anyone tell me where I'm going wrong?</p>
<p>Edit - thanks to all who replied. Dreas' answer very nearly worked for me, except for the part that checked the attribute. This works perfectly (although it's a bit hacky)</p>
<pre><code>$('input#myInput').change(function ()
{
if(!$(this).hasClass("checked"))
{
//do stuff if the checkbox isn't checked
$(this).addClass("checked");
return;
}
//do stuff if the checkbox isn't checked
$(this).removeClass('checked');
});
</code></pre>
<p>Thanks again to all who replied.</p>
http://stackoverflow.com/questions/1823389/error-in-compiling-a-linux-kernel0Error in compiling a Linux kernelMasi2009-12-01T00:55:58Z2009-12-01T21:56:46Z
<p><strong>How do you read the errors?</strong></p>
<p>I run after having .config -file at /home/aal/build/kernel.</p>
<pre><code>/usr/src/linux-2.6$ make O=/home/aal/build/kernel/
</code></pre>
<p>I get</p>
<pre><code> ... cut ...
CC [M] drivers/staging/go7007/s2250-board.o
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:24:26: error: s2250-loader.h: No such file or directory
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c: In function ‘read_reg_fp’:
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:264: warning: passing argument 1 of ‘down_interruptible’ from incompatible pointer type
/usr/src/linux-2.6/include/linux/semaphore.h:43: note: expected ‘struct semaphore *’ but argument is of type ‘struct mutex *’
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:273: warning: passing argument 1 of ‘up’ from incompatible pointer type
/usr/src/linux-2.6/include/linux/semaphore.h:47: note: expected ‘struct semaphore *’ but argument is of type ‘struct mutex *’
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c: In function ‘s2250_init’:
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:670: error: implicit declaration of function ‘s2250loader_init’
/usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:676: error: implicit declaration of function ‘s2250loader_cleanup’
make[4]: *** [drivers/staging/go7007/s2250-board.o] Error 1
make[3]: *** [drivers/staging/go7007] Error 2
make[2]: *** [drivers/staging] Error 2
make[1]: *** [drivers] Error 2
make: *** [sub-make] Error 2
</code></pre>
http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-wo0Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantic2009-12-01T19:09:13Z2009-12-01T21:29:07Z
<p>I'm getting a result I don't understand in R.</p>
<p>If I use <code>strptime</code> with a year and day formatted %Y-%m (like "2009-12"), I get an NA result. But if I add a day, like "2009-12-01", and change the format string accordingly, I do get a result. Example:</p>
<pre><code>> strptime("2009-12",format="%Y-%m")
[1] NA
> strptime("2009-12-03",format="%Y-%m-%d")
[1] "2009-12-03"
</code></pre>
<p>Why is that?</p>
http://stackoverflow.com/questions/1828406/how-to-get-data-from-a-joined-table0How to get data from a joined tableshin2009-12-01T19:45:21Z2009-12-01T19:55:47Z
<p>I have two table joined with c.id = p.category_id.
I want to get categories.name but it gives an error.
Could anyone tell me how to get data from a joined table please?</p>
<pre><code>function getGalleryone(){
$data = array();
$query = 'SELECT *
FROM products AS p
JOIN categories AS c
ON c.id = p.category_id
WHERE c.name = "Galleri1"
AND p.status = "active"' ;
$Q = $this->db->query($query);
/*
$this->db->select('*');
$this->db->where('categories.name','Galleri 1');
$this->db->where('products.status', 'active');
$this->db->join('categories', 'categories.id = products.category_id');
$this->db->order_by('name','random');
$Q = $this->db->get('products');
*/
if ($Q->num_rows() > 0){
foreach ($Q->result_array() as $row){
$data = array(
"id" => $row['id'],
"name" => $row['name'],
"shortdesc" => $row['shortdesc'],
...
...
"category" => $row['categories.name']
);
}
}
$Q->free_result();
return $data;
</code></pre>
<p>Database Products</p>
<pre><code>CREATE TABLE IF NOT EXISTS `products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`shortdesc` varchar(255) NOT NULL,
`longdesc` text NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`image` varchar(255) NOT NULL,
`class` varchar(255) DEFAULT NULL,
`grouping` varchar(16) DEFAULT NULL,
`status` enum('active','inactive') NOT NULL,
`category_id` int(11) NOT NULL,
`featured` enum('true','false') NOT NULL,
`price` float(4,2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ;
</code></pre>
<p>Database Categories</p>
<pre><code>CREATE TABLE IF NOT EXISTS `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`shortdesc` varchar(255) NOT NULL,
`longdesc` text NOT NULL,
`status` enum('active','inactive') NOT NULL,
`parentid` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
...
...
</code></pre>
<p>Error message</p>
<pre><code>A PHP Error was encountered
Severity: Notice
Message: Undefined index: categories.name
Filename: models/mproducts.php
Line Number: 111
</code></pre>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1828067/moving-from-vb-net-to-c0Moving from VB.Net to C#Joe2009-12-01T18:43:46Z2009-12-01T19:15:48Z
<p>I'm seriously considering moving from VB.Net to C#. If you made the jump to C# from vb.net, then what were the best resources you used to learn the language going from novice to pro?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1371891/prototype-get-inner-html-of-multiple-classes0prototype get inner html of multiple classesMoak2009-09-03T07:25:21Z2009-12-01T18:56:15Z
<p>I am new to prototype and finding it a lot more difficult than jquery. All i want to do is get the inner html of various classes.</p>
<pre><code>$$('.book').each(function() {
var msg = this.down(".information");
alert(msg.innerHTML);
//new Tip(this, msg.innerHTML, {stem: 'topLeft', hook: { tip: 'topLeft', mouse: true }, offset: { x: 14, y: 14 }});
});
</code></pre>
<p>I'm trying to create tooltips for multiple items, but I'm not even getting the alert.</p>
http://stackoverflow.com/questions/1741285/overflow-bit-32bit-alu-vhdl1Overflow bit 32Bit ALU VHDLAndre2009-11-16T10:24:54Z2009-12-01T18:53:18Z
<p>Hi folks,</p>
<p>I'm currently writing a 32Bit ALU (Add/Sub) in VHDL. I've got a problem with the overflow bit.
I can't see when to set the overflow depending on the operation (addition, subtraction) and the input values.</p>
<p>Can you help me ?</p>
<p>best regards,
Andre</p>
http://stackoverflow.com/questions/1825026/beginning-web-programming2beginning web programmingRitchie2009-12-01T09:30:08Z2009-12-01T18:23:05Z
<p>I've been programming in the classic way: read input, process data, print output, for 4+ decades. Web programming is not quite like that...</p>
<p>I've done some HTML and created some pages. But where do I get information about where to place things on the web, how to call/reference them, what permissions do my files need, how do I protect programs/code/data from being accessed any way except through my program, how do I unravel the meaning of server side, user side, sewercide (just kidding). Where can I find a simple example that helps clarify these web programming ideas?</p>
http://stackoverflow.com/questions/25063/how-to-mentor-a-junior-programmer26How to mentor a junior programmerDavid2008-08-24T14:05:31Z2009-12-01T17:11:07Z
<p>Does anyone have any suggestions on how to mentor a junior programmer ? If you have mentored someone did you follow any process or was it quite informal ?</p>
<p>If you've been mentored in the past what kind of things did you find most helpful ?</p>
http://stackoverflow.com/questions/1827148/how-to-make-a-modulino-in-ruby2How to make a modulino in Ruby ? philippe 2009-12-01T16:02:33Z2009-12-01T17:08:05Z
<p>I'm trying to include the unit tests for a module in the same source file as the module itself, following the <a href="http://www252.pair.com/comdog/mastering%5Fperl/Chapters/18.modulinos.html" rel="nofollow">Perl modulino</a> model.</p>
<pre><code>#! /usr/bin/env ruby
require 'test/unit'
module Modulino
def modulino_function
return 0
end
end
class ModulinoTest < Test::Unit::TestCase
include Modulino
def test_modulino_function
assert_equal(0, modulino_function)
end
end
</code></pre>
<p>Now, I can run the unit-tests executing this source file.</p>
<p><strong>But</strong>, they are also run when I require/load them from another script. How can this be avoided ? </p>
<p>Is there a more idiomatic way to achieve this with Ruby, unless this practice is discouraged ?</p>
http://stackoverflow.com/questions/1826878/polymorphism-and-array-of-pointers-problem-in-c1Polymorphism and array of pointers problem in C++cplusplusNewbie2009-12-01T15:21:22Z2009-12-01T17:02:55Z
<p>Hi, I'm working on a project and it's in a stage that I don't know what's wrong. Here's the simplified version:</p>
<p>The code:</p>
<pre><code> class Base { // This base class is pure abstract
public:
virtual ~Base(); // Necessary to trigger destructors in inherited classes
virtual baseFunc() = 0;
};
class DerivedA : public Base{
public:
DerivedA(SomeClassUseBase * tmp){
tmp -> register(this);
}
~DerivedA();
void baseFunc(){
// do something here that's only for DerivedA
}
};
class DerivedB : public Base{
public:
DerivedB(SomeClassUseBase * tmp) {
tmp -> register(this);
}
~DeriveB();
void baseFunc(){
// do something here that's only for DerivedB
}
};
class SomeClassUseBase {
private:
Base ** basePrt;
unsigned int index;
public:
someClassUseBase(int num) {
basePrt = new Base*[num]; //create an array of pointers to the objects
index = 0;
}
void register( Base * base ){
//i tried *(basePrt[index]) = *base, but got the same problem
basePrt[index] = base;
index = index + 1;
}
void checkList() {
for (int i = 0; i < index ;i++){
next = basePrt[i];
next -> baseFunc(); //fails here
}
}
};
int main() {
SomeClassUseBase tmp = new SomeClassUseBase(5);
Base *b[5];
for ( i = 0; i < 5; i += 1 ) {
if ( i % 2 == 0 ) {
b[i] = new DerivedA(&tmp);
}
else {
b[i] = new DerivedB(&tmp);
// the object pointed by tmp::basePrt[0] is lost after this line
} // if
} // for
tmp.checkList(); //crashes here since tmp.bastPrt[0] points to null
}
</code></pre>
<p>The problem is that when in main, i reach the line when the first DerivedB is created, the already created DerivedA pointer by tmp.basePrt[0] is lost some how. I don't know why but i suspect that this has sth to do with polymorphism? Please help!! thanks!!</p>
<p>Edit:</p>
<p>Didn't quite get the code correct the first time, sorry... </p>
http://stackoverflow.com/questions/902542/unable-to-find-a-tab-completion-for-rubygem-in-bash-zsh0Unable to find a tab completion for Rubygem in Bash/ZshMasi2009-05-23T21:38:56Z2009-12-01T16:15:48Z
<p>I have not found a tab-completion script for RubyGem in Bash/Zsh.</p>
<p><strong>Where can you get the tab-completion script for RubyGem in Bahs/Zsh?</strong></p>
http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide141Git for beginners: The definitive practical guideAdam Davis2008-11-24T23:50:29Z2009-12-01T11:28:33Z
<p>Ok, after seeing <a href="http://www.pjhyett.com/posts/234-git-isn-t-hard" rel="nofollow">this post by PJ Hyett</a>, I have decided to skip to the end and go with git.</p>
<p>So what I need is a beginners <strong>practical</strong> guide to git. "Beginner" being defined as someone who knows how to handle their compiler, understands to some level what a makefile is, and has touched source control without understanding it very well.</p>
<p>"Practical" being defined as this person doesn't want to get into great detail regarding what git is doing in the background, and doesn't even care (or know) that it's distributed. Your answers might hint at the possibilities, but try to aim for the beginner that wants to keep a 'main' repository on a 'server' which is backed up and secure, and treat their local repository as merely a 'client' resource.</p>
<p><strong>Procedural note:</strong> <em>PLEASE pick one and only one of the below topics and answer it clearly and concisely in any given answer. Don't try to jam a bunch of information into one answer. Don't just link to other resources - cut and paste with attribution if copyright allows, otherwise learn it and explain it in your own words (ie, don't make people leave this page to learn a task). Please comment on, or edit, an already existing answer unless your explanation is</em> very <em>different and you think the community is better served with a different explanation rather than altering the existing explanation.</em></p>
<p>So:</p>
<h2>Installation/Setup</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323764">How to install git</a></li>
<li>How do you set up git? Try to cover linux, windows, mac, think 'client/server' mindset.
<ul>
<li><a href="http://stackoverflow.com/questions/1482824/setup-git-server-with-msysgit-on-windows">Setup GIT Server with Msysgit on Windows</a></li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#320140">How do you create a new project/repository?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#316062">How do you configure it to ignore files (.obj, .user, etc) that are not really part of the codebase?</a></li>
</ul>
<h2>Working with the code</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/1350157#1350157">How do you get the latest code?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323906">How do you check out code?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#316055">How do you commit changes?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#319465">How do you see what's uncommitted, or the status of your current codebase?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323898">How do you destroy unwanted commits?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/1762631#1762631">How do you compare two revisions of a file, or your current file and a previous revision?</a></li>
<li>How do you see the history of revisions to a file?</li>
<li>How do you handle binary files (visio docs, for instance, or compiler environments)?</li>
<li>How do you merge files changed at the "same time"?</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/323898#323898">How do you undo (revert or reset) a commit?</a></li>
</ul>
<h2>Tagging, branching, releases, baselines</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#322967">How do you 'mark' 'tag' or 'release' a particular set of revisions for a particular set of files so you can always pull that one later?</a></li>
<li>How do you pull a particular 'release'?</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/816614#816614">How do you branch?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/816636#816636">How do you merge branches?</a></li>
<li>How do you resolve conflicts and complete the merge?</li>
<li>How do you merge parts of one branch into another branch?</li>
<li>What is rebasing?</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/1590791#1590791">How do I track remote branches?</a></li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/1590803#1590803">How can I create a branch on a remote repository?</a></li>
</ul>
<h2>Other</h2>
<ul>
<li>Describe and link to a good gui, IDE plugin, etc that makes git a non-command line resource, but please list its limitations as well as its good.
<ul>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323559">msysgit</a> - Cross platform, included with git</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323559">gitk</a> - Cross platform history viewer, included with git</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323559">gitnub</a> - OS X</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323559">gitx</a> - OS X history viewer</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide#323559">smartgit</a> - Cross platform, commercial, beta</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/322989#322989">tig</a> - console GUI for Linux</li>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/644129#644129">qgit</a> - GUI for Windows, Linux</li>
</ul></li>
<li>Any other common tasks a beginner should know?
<ul>
<li><a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/319465#319465">Git Status tells you what you just did, what branch you have, and other useful information</a></li>
</ul></li>
<li>How do I work effectively with a subversion repository set as my source control source?</li>
</ul>
<h2>Other git beginner's references</h2>
<ul>
<li><a href="http://www.sourcemage.org/Git%5FGuide" rel="nofollow">git guide</a></li>
<li><a href="http://book.git-scm.com/" rel="nofollow">git book</a></li>
<li><a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/" rel="nofollow">git magic</a></li>
<li><a href="http://www.gitcasts.com/" rel="nofollow">gitcasts</a></li>
<li><a href="http://github.com/guides/home" rel="nofollow">github guides</a></li>
<li><a href="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html" rel="nofollow">git tutorial</a></li>
<li><a href="http://progit.org/book" rel="nofollow">Progit - book by Scott Chacon</a></li>
</ul>
<h2>Delving into git</h2>
<ul>
<li><a href="http://www.eecs.harvard.edu/~cduan/technical/git/" rel="nofollow">Understanding git conceptually</a></li>
</ul>
<p>I will go through the entries from time to time and 'tidy' them up so they have a consistent look/feel and it's easy to scan the list - feel free to follow a simple "header - brief explanation - list of instructions - gotchas and extra info" template. I'll also link to the entries from the bullet list above so it's easy to find them later.</p>
http://stackoverflow.com/questions/1823816/how-to-pass-this-in-c1how to pass "this" in c++cplusplusNewbie2009-12-01T03:31:11Z2009-12-01T09:30:03Z
<p>I'm confused with the keyword "this" in C++, i'm not sure that if i'm doing the right thing by passing "this". Here is the piece of code that I'm struggling with:</p>
<pre><code>ClassA::ClassA( ClassB &b) {
b.doSth(this);
// trying to call b's routine by passing a pointer to itself, should i use "this"?
}
ClassB::doSth(ClassA * a) {
//do sth
}
</code></pre>
http://stackoverflow.com/questions/1824118/what-may-cause-losing-object-at-the-other-end-of-a-pointer-in-c0What may cause losing object at the other end of a pointer in c++?derrdji2009-12-01T05:11:31Z2009-12-01T08:25:34Z
<p>I have a class <code>V</code>, and another class <code>N</code>. An object of <code>N</code> will have an array of pointers to objects of class <code>V</code> (say <code>V **vList</code>). So, <code>N</code> has a function like
<code>V **getList();</code>
Now in some function of other classes or simply a driver function, if I say <code>V **theList = (N)n.getList();</code> Q1: <code>theList</code> would be pointing at the 1st element of the array? Given that the size of array is known, can I loop through with index <code>i</code> and say <code>V *oneV = *vList[i]</code>? Please correct me if what I'm doing above is wrong.</p>
<p><hr></p>
<p>I have been using debugger to trace through the whole process of my program running, the thing I found was that after using <code>V *oneV = vList[i]</code>, the value of the pointers in the array, <code>vList</code>, were the same as when they were created, but if I follow the pointer to where it is pointing at, the object was gone. I'm guessing that might be the reason why I am getting seg fault or bus error. Could it be the case? WHY did I 'loose' the object at the other end of a pointer? What did I do wrong?</p>
<p><hr></p>
<p>and yes, I am working on a school assignment, that's why I do not want to print out my codes, I want to finish it myself, but I need help finding a problem. I think I still need explanation on array of pointers. Thank you</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read573What is the single most influential book every programmer should read?NotMyself2008-08-04T23:50:22Z2009-12-01T06:36:44Z
<p>If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?</p>
<p>I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.</p>
<p>Suggest your programming books</p>
http://stackoverflow.com/questions/1818501/javascript-how-is-function-x-different-from-x-function6JavaScript: How is "function x() {}" different from "x = function() {}" ?jleedev2009-11-30T08:22:45Z2009-12-01T06:29:13Z
<p>In the answers to <a href="http://stackoverflow.com/questions/336859/javascript-var-functionname-function-vs-function-functionname">this question</a>, we read that <code>function f() {}</code> defines the name locally, while <code>f = function() {}</code> defines it globally. That makes perfect sense to me, but there's some strange behavior that's different between the two declarations.</p>
<p>I made an HTML page with the script</p>
<pre><code>onload = function() {
alert("hello");
}
</code></pre>
<p>and it worked as expected. When I changed it to</p>
<pre><code>function onload() {
alert("hello");
}
</code></pre>
<p>nothing happened. (Firefox still fired the event, but WebKit, Opera, and Internet Explorer didn't, although frankly I've no idea which is correct.)</p>
<p>In both cases (in all browsers), I could verify that both <code>window.onload</code> and <code>onload</code> were set to the function. In both cases, the global object <code>this</code> is set to the window, and I no matter how I write the declaration, the <code>window</code> object is receiving the property just fine.</p>
<p>What's going on here? Why does one declaration work differently from the other? Is this a quirk of the JavaScript language, the DOM, or the interaction between the two?</p>
<p><hr></p>
<p>If I change the first example to <code>var onload = function...</code>, then it still works fine.</p>
http://stackoverflow.com/questions/1823543/is-there-a-way-in-vs2008-to-search-through-a-watch-or-a-quickwatch-for-a-particul2Is there a way in VS2008 to search through a watch or a quickwatch for a particular value?Iain Fraser2009-12-01T01:50:34Z2009-12-01T06:13:29Z
<p>Hi Guys</p>
<p>Suppose I am watching something in VS2008 and I want to search the object I'm watching for an instance of a particular value.</p>
<p>For example, say I'm watching <code>this</code> and I want to search for a control called <code>mycontrol</code> inside it or I want to search for a <code>string</code> that currently has the value of "Hello World".</p>
<p>I know it's kind of a brute force way of doing things, but I find it would be a quick way of identifying where things are going wrong whilst debugging. Warning: I'm about to swear... When I was using PHP, I could see all variables that were currently set by using <code>get_defined_vars()</code>. It was dirty, but it was quick and I'd like to know if there's something similar I can do in VS.</p>
<p>Sorry if I've been a little vague, I'd be happy to elaborate if you have questions.</p>
<p>Cheers
Iain</p>
<p>Edit:
What I'm actually tring to do is interrogate the current state of the application and quickly search for the various classes that I want to debug. What I'm doing is trying to debug where I don't have the source code (I'm writing a control for a CMS). So I know what the value of something should be, but I don't know where in the structure it exists - that's what I want to find.</p>
<p>e.g. An exeption is thrown by the application because <code>foo</code> should be a list of the type <code>bar</code>. I want to find out where <code>foo</code> is defined so I can look around and see what the other variables in the same class are set to.</p>
<p>Sorry again, I'm finding it hard to explain :(</p>
<p>Edit #2:
I find a good tree might help me visualise it better...</p>
<pre><code>Quickwatch
-this
-var1
+var1a
+var1b
-var1c
-base
-foo = "Hello World"
+var1ca
+var2
+var3
</code></pre>
<p>In the above, how would I quickly drill down through the structure to find <code>foo</code>?</p>
http://stackoverflow.com/questions/1823692/finding-the-joy-of-javascript-or-searching-for-another-ui-focused-languages0Finding the joy of Javascript or searching for another UI-focused languages?Midipixel2009-12-01T02:51:01Z2009-12-01T05:40:05Z
<p>Hey everyone,</p>
<p>I'm a GUI designer/interactive musician wanting to improve my programming chops. I already know the basics(variables, loops, arrays, if/else, some logic), but I'm looking to learn in a structured way. I've seen some great books/tuts on Python and Processing (and even Flash)that aim to teach the fundamentals of programming in a fun and accessible. I've drooled on these books and considered learning Python many times, but to be honest, I don't know if these languages could be usefull for me on a professional sense. I need something directly related to interactive interface scripting/programming and JS seems to be my best bet (I've been trying AS3 but the OOP stuff made it somewhat hard for me). </p>
<p>I know JS can be fun (Jquery is). But I just can't find learning sources that are as compelling as the aforementioned material. All I find are tutorials and books that teach web development topics, such as form validation and ajax. I've tried looking for JS game frameworks, but all of them seem to be built for experienced developers and lack documetation or begginer's tutorials.</p>
<p>So, any directions on finding the joy in JS? Perhaps suggestions on other UI-focused languages ?
Thanks for reading this long question. </p>
http://stackoverflow.com/questions/1687789/applications-of-unification1Applications of Unification?Ravi2009-11-06T14:01:23Z2009-12-01T02:51:30Z
<blockquote>
<p>What are (practical) applications of
<a href="http://en.wikipedia.org/wiki/Unification" rel="nofollow">Unification</a> ? Where it is been
used in real world?</p>
</blockquote>
<p>I couldn't get the whole idea of what it is really about and why its considered as a part of Artificial Intelligence.</p>
http://stackoverflow.com/questions/1816877/how-to-rewrite-the-halve-function-in-j0How to rewrite the halve function in J?Niko2009-11-29T21:45:09Z2009-11-30T23:17:09Z
<p>Hi, in the <a href="http://www.jsoftware.com/" rel="nofollow">J programming language</a>,</p>
<pre><code>-: i. 5
</code></pre>
<p>the above function computes the halves of all integers in [0,4]. Now let's say I'd like to re-write the -: function, just for the fun of it. My best guess so far was </p>
<pre><code>]&%.2
</code></pre>
<p>but that doesn't seem to cut it. How do you do it?</p>
http://stackoverflow.com/questions/1818353/can-every-if-else-construct-be-replaced-by-an-equivalent-conditional-expression2Can every if-else construct be replaced by an equivalent conditional expression?nthrgeek2009-11-30T07:39:46Z2009-11-30T22:43:56Z
<p>(I don't have a serious need for this answer, I am just inquisitive.)</p>
<p><strong>Can every if-else construct be replaced by an equivalent conditional expression using the ternary operator <code>?:</code>?</strong></p>