hot questions tagged neophyte - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:14:37Zhttp://stackoverflow.com/feeds/tag?tagnames=neophyte&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1746064/what-is-a-good-web-host-that-is-developer-friendly-for-what-i-am-trying-to-do-a4What is a good web host that is "developer-friendly" for what I am trying to do and learn?Ben McCormack2009-11-17T01:39:53Z2009-12-04T18:21:48Z
<p>10 years ago, I read one of those <a href="http://rads.stackoverflow.com/amzn/click/0672313693" rel="nofollow">Teach Yourself HTML in 24 Hours</a> books and haven't looked into developing for the web since.</p>
<p>I'm currently trying to learn C# and Silverlight and make my way into the world of professional software development. I'm not specifically targeting the web, but if I put up a personal website, I'd like to be able to explore the programming options available to me.</p>
<p>I'd like to start a website that allows me to host a blog, show off my work, and provide me a basic sandbox for learning to program for the web. However, I'm not sure of what kind of web-hosting package to fit my needs. Site's like JustHost.com offer open-source web hosting for under $4/month, where a site like MaximumAsp.com offer shared hosting for $49/month and virtual hosting for $99/month.</p>
<p>I would prefer to work in the ASP.NET space with MS SQL for data, but I'm not sure what the premium would be.</p>
<p>Here are my priorities (in order from top to bottom):</p>
<ul>
<li>Affordable (between $5 and $25 per month)</li>
<li>Easy to start and maintain a blog and other "content"</li>
<li>Able to host Silverlight</li>
<li>ASP.NET if possible</li>
<li>MS SQL DB if possible</li>
<li>Reliable</li>
</ul>
<p>Part of the problem is that I don't know what programming limitations I have if I go with a shared site instead of a site with full access to a machine (virtual or physical). For example, if installing a blog engine on an ASP.NET site requires root access, that may not be the best choice for me.</p>
<p>Any help guiding me in the right direction for a "developer-friendly" web host would be much appreciated.</p>
http://stackoverflow.com/questions/988380/essential-dojo3Essential DojoCarl Manaster2009-06-12T18:53:07Z2009-11-21T00:08:35Z
<p>I'm starting to use Dojo; this is (essentially) my introduction to AJAX. We have a Java backend (torque / turbine / velocity) and are using the <a href="http://jabsorb.org/" rel="nofollow">jabsorb</a> JSON-RPC library to bridge Java and Javascript.</p>
<p>What do I need to know? What is the big picture of Dojo and JSON, and what are the nasty little details that will catch me up? What did you spend a couple of days tracking down, when you started with Dojo, that you now take for granted? Thanks for any and all tips.</p>
http://stackoverflow.com/questions/984218/pseudocode-check-complete-coding-noob-needs-validation-for-assignment4Pseudocode check. Complete Coding Noob needs validation for assignmentlazfish2009-06-11T23:02:49Z2009-07-08T19:53:36Z
<p>I have already turned this in so you won't be helping me cheat. Just wondering if this looks right:</p>
<p>The assignment:
Input a list of employee names and salaries, and determine the
mean (average) salary as well as the number of salaries above and
below the mean.</p>
<p>The Plan:
Allow input of names and salaries
Calculate Mean
Sort values
Count values above Mean
Count values below Mean</p>
<pre><code>//This program will allow a user to input an employee name and salary
//The output will contain the mean salary
//as well as the number of salaries above and below the mean
//
//Arrays Used:
//Name(K) = Array for employee names
//Salary(K) = Array for salaries
//
//Variables Used:
//Mean = Mean of all employees Salaries
//UpMean = Number of Employees making more than the mean
//DwnMean = Number of Employees making less than the mean
//Sum = Sum of all salaries
//CountM = Counter for Mean
//CountUp = Counter for # of salaries above mean
//CountDwn = Counter for # of salaries below mean
Main
Call WelcomeMessage
Call InputData
Call Calculate
Call OutputData
End Program
WelcomeMessage
Write, “Beginning the Salary Program”
End WelcomeMessage
InputData
Declare Name(100) Of Strings
Declare Salary(100) Of Real
Declare Mean, UpMean, DwnMean As Real
Set Sum = 0
Set CountM = 0
Set CountUp = 0
Set CountDwn = 0
Write, "Enter Employee name and Salary."
Write, "Enter *,0 when done."
Input Name(K), Salary(K)
While Name(K) <> "*"
Set CountM = CountM + 1
Set Sum = Sum + Salary
Write, "Enter Employee name and Salary."
Write, "Enter *,0 when done."
Input Name(K), Salary(K)
End While
End InputData
Calculation
//Here Mean is found
Set Mean = Sum / CountM
//Here Number of Employees making more than the mean is found
For K = Step 1 to CountM
If Salary(K) > Mean Then
Set CountUp = CountUp + 1
End If
//Here Number of Employees making more than the mean is found
Set CountDwn = CountM - CountUp
//The above algorythm doesn't account for the possibility
//of someone making exactly the average so subtract 1 to reconcile
If Salary(K) = Mean Then
Set CountDwn = CountDwn - 1
End If
End Calculation
OutputData
Write, "There were," CountM, "salaries entered."
Write, "The mean salary is:", Mean
Write, "There are", CountUp, "employees who make more than the average"
Write, "There are", CountDwn, "employees who make less than the average"
End OutputData
</code></pre>
http://stackoverflow.com/questions/79753/recommended-reading-list-for-a-relativenewbie1Recommended reading list for a (relative)newbie?Nate30002008-09-17T03:46:47Z2008-09-17T06:36:59Z
<p>What literature(written or otherwise) would you recommend for someone new to the world of coding? I would prefer something about C, but if you have any other suggestions, what are they?</p>