Categories
programming tech culture

Happy Pi Day

π 3.14…. http://www.piday.org

Categories
computer learning computer tips programming tech culture video

How does a computer work

www.code.org made a short video series of how computers work in simple terms

input storage process output
 

Categories
programming special publishing

my Drupal business listing recipe

  1. A custom node type called business listing
  2. use link module
  3. use location module
  4. use view module
  5. use captcha Module
  6. use image module
  7. used taxonomy for categories

used with brainerdupdate.com

Categories
programming

Countdown by 7


I was asked to countdown from 100 by 7. I was having trouble doing it right, I ended up with 4 when I knew it should have been 2. this script shows it correctly.
 

 
 
<script type="text/javascript" language="JavaScript">
num=100;
while (num>=0)
{
document.write( "The number is " + num + "<br>");
num=num-7;
}
num2=100%7;
document.write( "The remainder is " + num2 + "<br>");
</script>

Content ©1999 - Nathan Steffenson, Nate's Computer Services - All rights reserved. - Be Green! save money and energy. Please do not print this web page.