Showing posts with label computer. Show all posts
Showing posts with label computer. Show all posts

Saturday, January 15, 2011

[PC NEWS] Last week

Last week - it's my new "PROJECT" . What is it ? I will show you what's happend in computer in last week (I will do it in every Saturday :) )
  1.  First photo of LGA 2011 ?! OMG ... 5 January we have premiere of LGA 1155 and now Intel show new socket ... ok so what's new in new socket ?
    - the 32-lane PCI-Express controller - HURRAY !! now we don't need NF200 to have SLI/CrossFire
    - quad-channel DDR3 (?) - Yeah, it's could be good :)
    - Intel X68 - heh new chipset :/
    for now that's all ... for me - cool, but not to good :/
  2. New info about new graphic card - GTX 595 - what's new ? nothink special... GTX 595 will have  2x GF110
  3.  New ATI ASUS 6970 - what's new ? THIS CARD IS HUGE !! card requires three expansion slots !!:D I Don't know what to say :D
  4. Kingston will make special RAM for Sandy Bridge, its 8GB 2133MHz HyperX - Nothing special...
  5. G.Skill make the same what Kingston - create special RAM for Sandy Bridge but... G.Skill RAM is looks better :D Yeah I know that's stupid :D but what say about it :/
I think that's all for this week :/ nothink special ... Have a Idea ? Write it in comments :P

Wednesday, January 12, 2011

[CAT] next photo of dakota :)

Hi, and next photo of my black cat :D she sit on my old computer :D

Wednesday, January 5, 2011

Sunday, January 2, 2011

[TUTORIAL] Pascal V2

Hello, in this tutorial I will explain you what some 'command' mean in pascal :)

program - for explain 'program p1' it's mean your program will be name p1
writeln - for explain 'writeln('hello world');' computer will be show you text in this case it's will be hello world
readln - for explain 'readln(a);' now if you type 6,variable a will be 6 if you don't type anythink like 'readln();' computer will be wait for any action for example if you hit enter program will be continue

That's all for now, in next tutorial I will show you somethink about variable in Pascal :)

[TUTORIAL] Pascal

Today I will show you how to write a program in... PASCAL :D what is Pascal ? Pascal is very old programming language .
before we start, we must download one program FPC --> http://www.freepascal.org/download.var
Let's start :D

program p1;

begin
writeln('hello world');
readln();

end.

this is very easy program it's only show you text "HELLO WORLD " :D , Let's make calculator :D

program calculator;
var;
a,b:integer;
begin
writeln('type first number');
readln(a);
writeln('type second number');
readln(b);
writeln(a+b);
writeln(a*b);
writeln(a-b);
writeln(a/b);
readln();
end.

this is very easy, and "STUPID" calculator :D
In next lesson (tutorial :P) I will show you how to create program with 'IF' and menu :)