Posts

Penguins Rising: Html5 Custom Cursor Support

Image
    Apart from the original Penguins Rising game, I thought it would be interesting to allow the user to modify or upgrade their cursor for a particular gun. However this was not possible for Internet Explore at all, even for 11! In most cases when I can not implement something in one browser or another, I simply default to the original structure.  With though IE styling breaks completely when using custom cursor so I had to scrap the idea for now. My goal for Penguins Rising has always been to support "modern browsers" and "mobile browsers". IE9 is in that grey area but IE10 is a must and because of this I have to just use the built-in cursor styling which is how it is setup right now. Sadly this limits me to only what is available in the browser's styling. Just an idea of what could have been... Resources CSS cursor property How To Create an IE-Only Stylesheet CSS-Tricks  - Not helpful in my case. css - Custom cursor image doesn't work in a

Asp.net MVC: Partial View to handle Multiple Models

    I was working on this idea a few years back and the idea was to make two partial views in an asp.net MVC more scalable. I was looking the down road for something that could handle whatever the object was and display it. What I later discovered thanks to a colleague was that I should just do a reflection of the object but I feel the better longer term solution could be found in  third link  of resources. Rather than spend anymore time on this idea I simply kept the two partial views and wrote this down as I have bigger plans with this strategy in mind for a project. Resources Using partial views in ASP.net MVC 4 - Stack Overflow How to get the list of properties of a class? - Stack Overflow How to get data to my view that comes from more than one object? - Stack Overflow When To Use Templates vs When to Use Partial Views - Stack Overflow ASP.NET MVC 3 Partial View Template - Stack Overflow

Google Authorship with Blogger

Image
    There is no guarantee what will show up in google search for your content but I learned some cool ways  you can influence what appears and I feel not enough people are aware of Google's Authorship feature. This feature allows you to digitally sign off on web content that is yours. That is how I describe it but you can find the actual description in the resource links. Cool Results! The setup for this was really easy and quick, I simply followed the second option for setup and placed the ?rel=author" inside my href that was linked to my Google Plus account. Resources Google Authorship Google Structured Data Testing Tool  - My results! Author information in search results - Webmaster Tools Help

Exporting Blender Models to WebGL Notes

    Here is a collection of notes that I took sometime when I was working on " The Rust Spot " project. My original purpose for doing this was to create 3d auto parts and display them into the web browsers. Allowing users to get a better idea of what they would be purchasing before hand. Resources Blender 2.5 Exporting X3D Files and using X3DOM Part 1 - YouTube  - Demo WebGL #Content Creation- Wikipedia  - X3DOM in relationship to WebGL X3DOM-WebGL Tests Blender Web HTML5 Canvas how to  -  Concept in how to achieve Blender-webgl-exporter - A WebGL JavaScript exporter for the Blender Blender export — X3DOM  - Working Example!

Penguins Rising: Responsive Text with the Title Screen

Image
    With little testing as possible I wanted to create a title for penguins rising that was styled and would resize based on the device. I knew how to achieve this using css media queries however I would still need to test my queries on multiple devices which would take more time to test than actually write them. So I wondered what if there was a faster way to do this. Looking around I found ways to achieve this but most required Jquery and creating an event trigger to update the text size. Which wouldn't be too difficult to create but I have removed Jquery from my solution for sometime now. Things I looked at for this solution Text (not changing it too often.) Font-size - scale to full width of the screen. Font-Style - Added this later but not all devices liked text strokes in css. The answer if very clear to me and one that at the beginning I considered, but I wanted to weigh all my options first. By simply making the Title a image and setting the width to 100% should

Create Custom Webconfigs in Asp.Net MVC

Image
   Here are some highlighted notes on creating a custom web-config, that I wrote after finding a very quick and easy solution to. Overall the process is very easy to get started just I felt pictures were needed because the solution I found lacked any. Start of our Application Without editing, and by default Asp.net MVC comes with a Debug and Release config but since I like to create a QA stage for my configurations with all my application another webconfig needs to be added. Now right click on the project solution and go to properties , this will bring up the configuration manager. You can also just click on the build tab shown in the second image below. Configuration Manager/Properties Under the configuration tab and inside the dropdown simply select "New" and add in your custom Config name, for this article I just name mine example. Important keep the l eave the "create new project configurations" check." If not checked you will not be able to

Asp.Net MVC Warning Msg: "Consider app.config Remapping of Assembly"

    I don't like to ignore warnings if I can help it so looking at the output window in Visual Studio I can see the following message listed in the title. I make it my goal once a project is working and completely setup to go back and clean out as many warnings as possible which in most cases I do this while I'm working. There are a lot of ways to see this warning message but one of the reasons that it appears for me is from updating packages. For one reason or another some packages aren't updating properly and the older versions are still being pointed to in one or more webconfigs.     There are two approaches I have found to solve this, one is updating the webconfigs manually which will require you to look at the packages and versions being pointed to in the webconfigs. Or you can try the using Nuget command console. Targeting just the packages that appears in the warning message, and re-installing. This sometimes will work but if that fails there is a step had to I try

Popular posts from this blog

UI-Bootstrap Collapsible Sticky Footer

Installing Windows on Acer chromebook 15 cb3-532

Aspetcore: NLog with Postgresql