mikegrundvig.blogspot.com mikegrundvig.blogspot.com

mikegrundvig.blogspot.com

Mike Grundvig's Blog o' Stuff

Mike Grundvig's Blog o' Stuff. A blog about my life and times. Well, nothing that serious. It's more of just a geek's random drivel posted for all to see. I hope to post some helpful code at times too but that's only when I run out of drivel. Sunday, May 24, 2009. To give me a break from all the remodeling we've been doing I decided to come up with a fun project to waste some time. That project is not the topic of this post :). As a precursor to that. I can only say one thing about it: WOOHOO! With these...

http://mikegrundvig.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR MIKEGRUNDVIG.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

June

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.3 out of 5 with 8 reviews
5 star
0
4 star
6
3 star
0
2 star
0
1 star
2

Hey there! Start your review of mikegrundvig.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

FAVICON PREVIEW

  • mikegrundvig.blogspot.com

    16x16

  • mikegrundvig.blogspot.com

    32x32

  • mikegrundvig.blogspot.com

    64x64

  • mikegrundvig.blogspot.com

    128x128

CONTACTS AT MIKEGRUNDVIG.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Mike Grundvig's Blog o' Stuff | mikegrundvig.blogspot.com Reviews
<META>
DESCRIPTION
Mike Grundvig's Blog o' Stuff. A blog about my life and times. Well, nothing that serious. It's more of just a geek's random drivel posted for all to see. I hope to post some helpful code at times too but that's only when I run out of drivel. Sunday, May 24, 2009. To give me a break from all the remodeling we've been doing I decided to come up with a fun project to waste some time. That project is not the topic of this post :). As a precursor to that. I can only say one thing about it: WOOHOO! With these...
<META>
KEYWORDS
1 skip to main
2 skip to sidebar
3 marshmallow madness
4 posted by
5 mike grundvig
6 9 comments
7 labels air cannons
8 layer name= floor
9 layer
10 45 comments
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to main,skip to sidebar,marshmallow madness,posted by,mike grundvig,9 comments,labels air cannons,layer name= floor,layer,45 comments,labels flash,games,programming,13 comments,thanks,15 comments,game of life,boids,have fun,22 comments,games forum
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Mike Grundvig's Blog o' Stuff | mikegrundvig.blogspot.com Reviews

https://mikegrundvig.blogspot.com

Mike Grundvig's Blog o' Stuff. A blog about my life and times. Well, nothing that serious. It's more of just a geek's random drivel posted for all to see. I hope to post some helpful code at times too but that's only when I run out of drivel. Sunday, May 24, 2009. To give me a break from all the remodeling we've been doing I decided to come up with a fun project to waste some time. That project is not the topic of this post :). As a precursor to that. I can only say one thing about it: WOOHOO! With these...

LINKS TO THIS WEBSITE

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: August 2010

http://mattbolt.blogspot.com/2010_08_01_archive.html

Wednesday, August 25, 2010. Flex Logging Framework for C# (Silverlight Compatible). I've taken some time and created a logging framework in C# that is very similar (in fact, uses close to identical logic in some cases) to that of flex. It's super flexible and easy to use. You'll find the source at: http:/ github.com/mbolt35/OpenSource/tree/master/silverlight. The Bolt.AS3.Logging. Package contains the necessary classes/interfaces and logging targets. I've also created a very basic example here:. This lin...

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: After Two Years: AS3 Vector.<T> Review

http://mattbolt.blogspot.com/2012/04/as3-vector-vs-array.html

Sunday, April 22, 2012. After Two Years: AS3 Vector. T Review. Let me start off initially by saying that this post is pretty much a rant with examples. On a given day, I complain a lot, mostly about complainers (not including myself), objectively stupid people, or arrogant people/organizations who make stupid choices (the mythical programming unicorns to which all evil code emerges). Or here's a quick rundown:. Vector, let's write a static helper function that accepts a * parameter:. There's no type chec...

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: JavaRay Updates...

http://mattbolt.blogspot.com/2011/04/javaray-updates.html

Monday, April 25, 2011. Just committed a fairly large update which you can see/read here:. I did manage to fix the issue where reflections were showing up on all sides of a scene object:. Next, I'm going to be working on some new types of objects, lights, and externally loaded scenes. Feel free to fork the project and contribute: https:/ github.com/mbolt35/javaray. Subscribe to: Post Comments (Atom).

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: JavaRay: Spot Lights

http://mattbolt.blogspot.com/2011/05/javaray-spot-lights.html

Saturday, May 21, 2011. I've finally gathered enough time to starting writing some more JavaRay code, so I went ahead and finished the Spot Light implementation. Here's a scene with two planes, a specular sphere, and 3 spot lights:. The project is coming along quite nicely and it hasn't lost it's "fun" quality yet, but I'm looking for some ways to optimize. If you have some suggestions, drop me a line! Subscribe to: Post Comments (Atom).

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: September 2010

http://mattbolt.blogspot.com/2010_09_01_archive.html

Tuesday, September 7, 2010. Calling Methods/Properties using Strings in C#. One of my favorite things about C# is the strict typing. Strict typing forces the user to follow good design principles (most of the time). However, it does prevent you from being able to use "true" dynamic objects (Note: there are ways that you can use generics and operator overloading to create a "dynamic" object, but they will not be discussed here). And while you can always use the dynamic. Which contains the "token". Isn't g...

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: C++11 Variadic Templates

http://mattbolt.blogspot.com/2014/04/c11-variadic-templates.html

Sunday, April 13, 2014. C 11 Variadic Templates. In recent news, I've been revisiting my programming roots and tinkering with some of the latest C 11 has to offer. There are many new awesome. Features, including variadic templates. These templates give you the ability to define an arbitrary list of types in your template parameters. This removes the need to define N template parameters using specialization. Consider the following naive example tcontainer:. Syntax. Here is a very basic example:. Personall...

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: November 2012

http://mattbolt.blogspot.com/2012_11_01_archive.html

Thursday, November 1, 2012. A Heap of Voxels. I'm a little late to the Voxel engine party, and it may not be the "cool" thing to do anymore, but it's definitely an interesting topic, so perhaps there is still some buzz floating around. I've been playing around with procedural mesh generation in Unity3D and thought I'd have a go at building a little Voxel "engine." I will make references to MineCraft (how could I not? But consider claims relative to C#, Mono, and Unity3D; not Java. Thread it to Death.

jobemakar.blogspot.com jobemakar.blogspot.com

Jobe Makar: Blog moved to Wordpress!

http://jobemakar.blogspot.com/2010/09/blog-moved-to-wordpress.html

Ramblings of a Flash game programmer. Sunday, September 12, 2010. Blog moved to Wordpress! I've ported my blog (and all posts and comments) over to Wordpress. Come check it out:. Subscribe to: Post Comments (Atom). Follow me - @jobemakar. Blog moved to Wordpress! I am lead game programmer for Electrotank www.electrotank.com. View my complete profile.

mattbolt.blogspot.com mattbolt.blogspot.com

Game Development: JavaRay: Ray Tracing in Java

http://mattbolt.blogspot.com/2011/04/javaray-ray-tracing-in-java.html

Sunday, April 17, 2011. JavaRay: Ray Tracing in Java. I've been tinkering around lately with Java, and trying to catch up on the last 8 years I've missed. I was first introduced to Java in 2002 at UNC-CH, but it was nothing like the Java today. I thought re-writing this project in Java would be fun, so I started working on it this weekend, and here's what I have so far:. It supports both ambient and diffuse lighting. I plan on adding:. It should only be the objects between the sphere and eye point. L...

UPGRADE TO PREMIUM TO VIEW 12 MORE

TOTAL LINKS TO THIS WEBSITE

21

OTHER SITES

mikegruener.com mikegruener.com

BHHS Select Properties - Michael Gruener - BHHS Select Properties | St. Louis Real Estate & St. Charles

My Searches ( 0. My Properties ( 0. My Trip List ( 0. Expenses to Save For. The more you know. 2017 ROI Cost VS. Value. One Tank Road Trips. Economic and Market Watch. Find the Perfect Home. Estimate a Home's Value. Browse upcoming St. Louis Open Houses in your chosen area. Search Open Houses ». Find your perfect home in the perfect location. Search by Map ». Search for your family’s next home in specific school district. Search by School ». Need more information about a specific listing?

mikegruenloh.com mikegruenloh.com

www.mikegruenloh.com

Your website is ready. This site, www.mikegruenloh.com, has been successfully created and is ready for content to be added. Replace this default page with your own index page.

mikegrumetinsurance.com mikegrumetinsurance.com

Mike Grumet Insurance Services

mikegrumetinsuranceservices.com mikegrumetinsuranceservices.com

Mike Grumet Insurance Services

mikegrunde.com mikegrunde.com

MG | portfolio page

Portfolio listed by type and media. B) – logo variations (sports website). I) inserted ad images. Scroll image for info, click on title to expand. Theme modified by Mike Grunde.

mikegrundvig.blogspot.com mikegrundvig.blogspot.com

Mike Grundvig's Blog o' Stuff

Mike Grundvig's Blog o' Stuff. A blog about my life and times. Well, nothing that serious. It's more of just a geek's random drivel posted for all to see. I hope to post some helpful code at times too but that's only when I run out of drivel. Sunday, May 24, 2009. To give me a break from all the remodeling we've been doing I decided to come up with a fun project to waste some time. That project is not the topic of this post :). As a precursor to that. I can only say one thing about it: WOOHOO! With these...

mikegrundy.com mikegrundy.com

Michael Grundy

Let’s render zipper teeth by hand. That sounds like fun…. April 24, 2017. April 18, 2017. Hobonichi Techo A6 cover. January 2, 2017. One of these days I’ll make everyone’s presents in August. December 24, 2016. Santa’s workshop is cranking tonight. December 23, 2016. December 15, 2016. Should have edge painted before I closed it. The towel made it easier. December 11, 2016. Anyway… I’m packing now. November 11, 2016. Did I promise a big post soon? Rdquo; mode. In other words: normal. October 13, 2016.

mikegrungejazz.com mikegrungejazz.com

Mike Glendinning | Grunge Jazz. Beefheart Wouldn't Let Me Shit In His Toilet. | The Grunge Jazz Story

The Grunge Jazz Story. Did You Know I Have Albums? Just like Jazz music, this genre had lots of space to evolve and could integrate with other sounds around the world. It could be written and performed many ways and the founder of the sound wants anyone to play it the way they hear it in their head. A note from Mike,. Thank you and God Bless. Where I Hang Out On The Net. Get On The E-mail List. Did I mention Get On The List?

mikegruosso.com mikegruosso.com

Homes in Monmouth County, NJ, View real estate and homes for sale in Monmouth and Ocean County

You have been successfully signed up. This page will refresh momentarily. Keller Williams Realty - East Monmouth. Revel in stunning suburban landscapes. Family-friendly properties that exude comfort. Expansive residences for growing families. Comfortable, convenient homes for all buyers. Gorgeous, tree-lined streets. Posted January 28, 2017. Posted January 28, 2017. Posted January 28, 2017. Relocating to the Big City. Posted January 28, 2017. 5 Tips for Buying a Home. Looking to buy a home? Information S...

mikegrutka.com mikegrutka.com

Mike Grutka Official Site | Acoustic based funky modern roots rock-n-roll

Mike Grutka Official Site. Acoustic based funky modern roots rock-n-roll. No e-mail required. Take them. Share them. Enjoy! No public Twitter messages. Happy New Year- 2010 in review, Looking back. Tent Tour 2010 #14: So Far to end up so close to home. Tent Tour 2010 #13: Pittsburgh part 3 Howler's Coyote Cafe. 2015 - Mike Grutka Official Site. Proudly powered by WordPress. 2010 Weaver by WPWeaver.info.

mikegrygier.deviantart.com mikegrygier.deviantart.com

mikegrygier (Michal Grygier Szczepanski) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 2 Years. This deviant's full pageview. Last Visit: 2 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? Jul 6, 2015.