Warning: Use of undefined constant widget_share_on_facebook_register - assumed 'widget_share_on_facebook_register' (this will throw an Error in a future version of PHP) in H:\root\home\shadowcouncil-001\www\AugmentedDeveloper\wp-content\plugins\share-on-facebook\shareonfacebook.php on line 269
Augmented Developer | Gadgetry for the Next Generation | Page 5

Learn Some basic CSS in 5 minutes –

Sitting on your butt today because of the snow? Learn some basic web code? Take 5 minutes out to understand CSS Classes.

Go to http://jsfiddle.net/ and get a basic understanding for lined CSS (Style sheets).

Below is an example on how to manipulate a web page through styles one in line and one from a Cascading Stylesheet CSS file. See how you can change these and post your picture. (For more properties other than color)

In top left HTML :

<h1 class=”h2-red”>Hi</h1>
<h1 style=”color: green;”>Hi Green</h1>
In top Right CSS
.h2-red
{
color: red;
text-align: center;
}

Note Align can have many

left Left-aligns the heading
right Right-aligns the heading
center Center-aligns the heading
justify The heading is justified to both margins

Try playing around with the code in the .h2-red and the HTML. Post your results.
jsfiddle

Share on Facebook

MVC 5 Crashes on Debug, with the failed DLL :Web App C#

keywords: Internet Explorer IE devenv devenv.exe crash mvc 5 freezes
There are a few fixes out there that didn’t work for me.

I deleted the IISEXPRESS Folder and added _CSRUN_DISABLE_WORKAROUNDS to system environmental variables rebooted etc. No luck (though this has worked for others).

What I had to do to fix: Open Visual Studio in /safemode as administrator. Then add the ASP.NET Web Project to the solution in Visual studio.

Worked first time.  Could be an add-on.

Share on Facebook

Larpferno – code base started. – MonoGame – C# – Win 8.1

Started on the base framework for Items and Player Dwellings. Cabin Raiding rules, House Guards, Material “Enchantability” and the like.

Maintainability index is 93/90/95. Good stuff. – 600 solid lines

larpferno_bak

Share on Facebook

Very simplistic example of Parallel.Foreach – C# – Faster UI

Keywords: WPF Winforms Slow UI C# speed increase

I am a developer by trade and I run into legacy Winform and WPF applications quite a bit.

I went to look for a simplistic Parallel.ForEach Example, and I couldn’t really find one.

In the constructor you will see something like this. Where everything is Synchronous and slow.

Since some of these are SQL calls unless I go the route of using the new SQL Asynchronous features (which would require a bit of real rework). I am going the lazy route:

GetUser();
LoadWeapons();
LoadPlayer();
LoadLastKnownCombatLocation();

First we want to load each into an Action.
var getUser = () => {GetUser()};
var loadWeapons = () => {LoadWeapons()};
var loadPlayer = () => {LoadPlayer()};
var loadLastKnownCombatLocation = () => {LoadLastKnownCombatLocation()};

//Create List (any IEnumerable should work)
var allActions = new List();

//the add can be done in the instantiation using {}’s instead
allActions.Add(getUser);
allActions.Add(loadWeapons);
allActions.Add(loadPlayer);
allActions.Add(loadLastKnownCombatLocation);

Parallel.ForEach(allActions, (e) => e.Invoke());

This is only solid in situations where UI is not dependent on another call first, IE LoadUser() may be needed to LoadPlayer(), You can easily make a parallel for all data pulls then another for all
UI updating.

–Augmented Developer

Share on Facebook

Running Give Camp.. Hope you can make it! April 12-13 2014 Alpharetta

https://www.eventbrite.com/e/microsoft-givecamp-atlanta-2014-tickets-9511768957?ref=enivtefor001&utm_source=eb_email&utm_medium=email&utm_campaign=inviteformal001&utm_term=eventpage

Share on Facebook

Augmented Living using Netflix (Windows 7-8RT C#)

How to use Augmented Living to watch Netflix.

Share on Facebook

Augmented Living – Communications Application for the Disabled (C# – Windows 7-8RT)

You can use any input device that will act as a mouse or Leap or Kinect.

Share on Facebook

Leap with Augmented Living on Windows 8 RT (C#)

Here is a situation where someone could use the application with one finger, if somehow disabled.

Share on Facebook

C# Training week one rehash.

 

I have been asked over the years where to start learning how to code, or where to start learning C#.  This in itself will not be teaching you c#, that would be redundant and I am not sure I could do as good of a job as those like Jesse Liberty did on this Scratch course.

I will be helping you learn C#, through pointing you pre-reviewed concentrated training videos and samples.  Pluralsight will be our main content source. They are the best at what they do and I lean heavily on them monthly to learn new technologies.  Since there is so much information available I figured I would give you a list to follow to get you on your way.
C# is a fairly easy and forgiving language.

This course  not meant to be any specific amount of time.  Some of you may fly through this training in hours and others in weeks.

First we will learn code, what is and how to manipulate objects.
Then we will place that code in some sort of User Interface (commonly called a UI) , this is like a web site page or a WPF/Windows 8 application.
Then we will learn data manipulation
Then patterns.

You should be able to apply this knowledge to any current job, where you handle any kind of business process daily or IT work. You will also be able to handle any Junior technical interview by the time we have written against Mobile, Web, Desktop.  Consumed Data from a file, XML, Web Service, Odata Service, and Cloud storage.

It took me almost 2 years of coding on my own time to get a job as a developer.  So I cannot guarantee you work.  Though I can to help you give yourself the skills you would need to get a job if one was available.

I run a Microsoft user group and help organize the Atlanta Code Camp for Microsoft.

This year Give Camp is March 28-30th at the Microsoft Building.  I am handling sponsors this year if any of you want to help (that is the recruiters).

Fun stuff____________________________________________________________________________________________________________

Download Visual Studio 2013 Express from www.VisualStudio.com or use your MSDN subscription if you have one.

If you have MSDN Download VS2012 Premium or Ultimate
http://msdn.microsoft.com/en-us/subscriptions/downloads/hh442898.aspx

http://www.microsoft.com/en-us/download/confirmation.aspx?id=36020 (update to work with windows 8 if needed)

If you do not:

Download Microsoft Visual Studio 2013 Express for windows desktop

http://www.microsoft.com/visualstudio

.Net Framework 4.0   http://www.microsoft.com/en-us/download/details.aspx?id=17851

.Net Framework 4.5   http://www.microsoft.com/en-us/download/details.aspx?id=30653

Optional:  SQL Server 2012 (since express comes with studio Id use that for now and we can upgrade you later when you need SSIS etc).

Install:

Web Platform Installer:
http://www.microsoft.com/web/downloads/platform.aspx
Training Site:
www.pluralsight.com

First Training Videos:

http://www.pluralsight.com/training/Courses/TableOfContents/csharp-from-scratch
Questions I will need answered before you get a next lesson.

What is a Variable?

What is a class?

What is an interface?

Which inherits and which implements?

In common tongue what value’s do these types hold? (C#)

String

Int

void

Bool

Why is Boolean (bool) so important?

Most business logic relies on this.

Is my ticket cleared? If(ticket.Cleared)

Has my customer paid? If(bill.Paid == bill.Total)

Is my invoice old? If(bill.Duedate < DateTime.Now)

Markup Languages

Is HTML Markup?

Is C# Markup?

Is XAML Markup?

Share on Facebook

Microsoft Holiday party

I had the pleasure of putting together the Holiday party again this year with Don Wert from Atlanta MDF.
We had 400 sign up and ran out of the 80 spare badges at the door.

We had a monster table of toys for toys for tots, had 52 “leads” from recruiters for jobs. Had food, drinks, dessert, prizes and raised 700 or so for the Local UG’s.

All in all it was a good night.. next GiveCamp 😉

photo 1

Share on Facebook