Category Archives: Web Design

Design To Website, Blog How To Set Up, Google Update Pagerank, Google Crawl, Free Submit Site

C# Tutorial 24

C# TutorialIn this part of my C# video tutorial I show how to make a Paint App, and then we look at Drawing Lines, Ellipses, and Rectangles using Canvas. We’ll be using System.Windows.Shapes in this tutorial. They are great to work with because they respond to events just like other WPF components.

For best results take notes on the cheat sheet provided below as you watch and leave any questions you have. Continue reading C# Tutorial 24

Learn Erlang in One Video

Learn Erlang in One VideoIn this tutorial I’m going to teach the core syntax of the Erlang language with many examples. This video is for someone that already knows another language and wants to translate common programming syntax into Erlang.

If you jump to YouTube in the description you’ll find time stamps to every main part of the video. For best results take notes on the cheat sheet provided below as you watch and leave any questions you have. Continue reading Learn Erlang in One Video

Install Erlang for Eclipse

Install Erlang for EclipseYou guys asked me for a Learn Erlang in One Video tutorial and so I’ll make it in the next video that I upload. I thought it would be a good idea however to cover how to install and setup Erlang with Eclipse Neon in a separate video so here it is.

I show how to setup Erlang on both MacOS and Windows. I then show how to set everything up using Eclipse Neon and then we’ll run some Erlang code to make sure everything works. Continue reading Install Erlang for Eclipse

C# Tutorial 23

C# TutorialIn this part of my C# tutorial I will be covering the Document API. We’ll use the Document API layout managers to work with formatted documents using the XML Paper Specification (XPS).

I’ll show how to use the FlowDocument, FlowDocumentReader, FlowDocumentPageViewer, FlowDocumentScrollViewer and RichTextBox. For best results take notes on the cheat sheet provided below as you watch and leave any questions you have. Continue reading C# Tutorial 23

C# Tutorial 19

C# TutorialThis is the 1st of many videos about designing GUI interfaces with WPF and XAML. Windows Presentation Foundation (WPF) is used to create graphical user interfaces. Using XAML eXtensible Application Markup Language you can create the UI using XML like tags.

We’ll also look at event handling, tracking mouse movements, open dialogs, save dialogs, popups, multiple layout managers and much more. Continue reading C# Tutorial 19

C# Tutorial 16

C# TutorialIn this part of my C# tutorial I’ll cover threads in depth. With threads you can execute multiple pieces of code that share resources and data without corrupting it. I cover a simple thread example, sleep, a more advanced with lock, Priority, and how to pass data to a thread.

For best results take notes on the cheat sheet provided above as you watch and leave any questions you have. Continue reading C# Tutorial 16

C# Tutorial 15

C# TutorialIn this video I’ll cover LINQ. Language Integrated Query (LINQ) provides many tools for working with data. LINQ is similar to SQL, but it can work with data aside from databases. I’ll cover From, Where, Orderby, Select, In, Inner Joins, Group Inner Join, Equals and using LINQ with multiple different collections.

For best results take notes on the cheat sheet provided above as you watch and leave any questions you have. Continue reading C# Tutorial 15

C# Tutorial 8

C# TutorialIn this part of my C# tutorial series we will make a fun little game. I’m going to show how to create 2 warriors that will fight to the death in a simulated battle. More complex video games follow many of the techniques we cover in this video. It also will show how awesome object oriented programming is in that it gives you the ability to model just about any real world object, or interaction.

For best results print the code and then write your own programs while referring to the cheat sheet. Continue reading C# Tutorial 8

C# Tutorial 6

C# TutorialIn this part of my C# tutorial we cover public, private, protected, constants, read-only fields, constructors, setters, getters, properties and more on static. I’m taking my time to make sure everyone completely understands object oriented programming in C#. We are getting near the end of the basic syntax and will start doing fun stuff soon.

For best results print the code below and write out your own notes in your own words and use that as a cheat sheet. Continue reading C# Tutorial 6

C# Tutorial 5

C# TutorialWe start learning about object oriented programming in this part of my C# tutorial. We’ll cover Classes, Methods, Fields, Constructors, Static Classes, Methods and Fields, Structs and Nullable Types. I’m going to cover OOP over a few videos to make sure everyone completely understands everything.

All of the code follows the video below. For best results, print it out and take notes in your own words and then ask me if you have any questions. Continue reading C# Tutorial 5