Archive For February 2012
FizzBuzz Javascript
on February 25, 2012 by Adam in Uncategorized, Comments (0)
<html>
<head>
<script type=”text/javascript”>
{
for (i=0;i<=100;i++)
{
if(i%3==0||i%5==0){
if(i%3==0){
document.write(“Fizz”);
}
if(i%5==0){
document.write(“Buzz”);
}
}
else{
document.write(i);
}
document.write(“<br />”);
}
}
</script>
</head>
<body>
</html>
{
for (i=0;i
Code Hero – fizzbuzz for VB into richtextbox
on by Adam in Uncategorized, Comments (0)
fizzbuzz If number Mod 3 = 0 OrElse number Mod 5 = 0 Then If number Mod 3 = 0 Then RichTextBox1.Text = RichTextBox1.Text & “Fizz” End If If […]
Top Regrets When Dying
on February 22, 2012 by Adam in Interesting, Comments (0)
A UK newspaper recently posted a profound article listing the top 5 regrets people have when on their deathbed. The regrets were recorded by Bronnie Ware, an Australian nurse working […]
Inhalable Caffeine
on February 19, 2012 by Adam in Interesting, Comments (0)
Recently a new product was brought to my attention via a Senator’s call for an FDA review of Aeroshot Energy, which is in essence an inhabitable dose of caffeine and […]
Finally, App Store Here I Come
on February 12, 2012 by Adam in Apps, Comments (0)
Finally working through all the issues I’ve had with my distribution license and a buggy version of Apple application loader causing Xcode to incorrectly identify my icon as a faulty […]
Whitney Houstin Passes Away
on February 11, 2012 by Adam in News, Comments (0)
“I Will Always Love You” is the song that comes to mind when I think about Whitney Houstin; she died today at age 48 in Beverly Hills.
The Luoyang App
on by Adam in Apps, Comments (0)
If you’ve come to this page it probably means you’ve arrived via the support email for the “Luoyang App”. Please comment here for fast response to your questions/concerns/upgrade ideas. Thanks […]
on February 7, 2012 by Adam in Uncategorized, Comments (0)
#gallery-1 { margin: auto; } #gallery-1 .gallery-item { float: left; margin-top: 10px; text-align: center; width: 33%; } #gallery-1 img { border: 2px solid #cfcfcf; } #gallery-1 .gallery-caption { margin-left: […]