ALT + F4 Technology news, programming, design, reviews, how to tips and art…

Radoslav Angelov – Web Design PDF Portfolio

Posted on December 3, 2011

I am looking for any web designer / developer job at the moment. I had to make the PDF portfolio becouse every website online requires some sort of portfolio or CV. I didn`t have ether of them but I was thinking that If I could impress the people with graphics maybe they would contact me and interview me in person. Lets see if it works.

Please leave some feedback if possible.

Screenshot of the logo for the PDF portfolio:

 

LINK

If Else – C#

Posted on September 29, 2011

Again very simple just like most of the programming languages

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication5
{
 class Program
 {
 static void Main(string[] args)
 {
 int randomnumber;

 Console.WriteLine("Please enter a number between 0 and 10:");
 randomnumber = int.Parse(Console.ReadLine());

 if(randomnumber > 10)
 Console.WriteLine("The number should be less than 10");
 else
 if(randomnumber < 0)
 Console.WriteLine("The number should be more than 0");
 else
 Console.WriteLine("good job");

 Console.ReadLine();
 }
 }
}

Simple Maths – C#

Posted on September 29, 2011

This is simple example of C# maths. The same way can be used for PHP and Flash AS3

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication5
{
 class Program
 {
 static void Main(string[] args)
 {
 int num1, num2, result;
 num1 = 5;
 num2 = 3;
 result = (num1 + num2);

 Console.WriteLine(result);
 }
 }
}

Hello World – C#

Posted on September 29, 2011

The start of learning C# - my version is Visual Basic 2008

Hello World Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication5
{
 class Program
 {
 static void Main(string[] args)
 {
 System.Console.WriteLine("Hello World");
 }
 }
} 

The code in black is added automatically by C# and the red code is the code that displays "Hello World"