Tuesday, February 8, 2011

Canon PowerShot SD1400IS 14.1 MP Digital Camera with 4x Wide Angle Optical Image Stabilized Zoom and 2.7-Inch LCD (Black)

 



Virus Making using C#


C# Game Tutorial For Beginners


Visual C# 2008 - How to make a Flashy Program - Head First C# - Tutorial


the matrix virus C# code


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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Title = "the tiger Virus";
            Console.ForegroundColor = ConsoleColor.DarkGreen;
            Console.WindowLeft = Console.WindowTop = 0;
            Console.WindowHeight = Console.BufferHeight = Console.LargestWindowHeight;
            Console.WindowWidth = Console.BufferWidth = Console.LargestWindowWidth;
#if readkey
            Console.WriteLine("H1T 7NY K3Y T0 C0NT1NU3 =/");
            Console.ReadKey();
#endif
            Console.CursorVisible = false;
            int width, height;
            int[] y;
            int[] l;
            Initialize(out width, out height, out y, out l);
            int ms;
            while (true)
            {
                DateTime t1 = DateTime.Now;
                MatrixStep(width, height, y, l);
                ms = 10 - (int)((TimeSpan)(DateTime.Now - t1)).TotalMilliseconds;
                if (ms > 0)
                    System.Threading.Thread.Sleep(ms);
                if (Console.KeyAvailable)
                    if (Console.ReadKey().Key == ConsoleKey.F5)
                        Initialize(out width, out height, out y, out l);
            }
        }

        static bool thistime = false;

        private static void MatrixStep(int width, int height, int[] y, int[] l)
        {
            int x;
            thistime = !thistime;
            for (x = 0; x < width; ++x)
            {
                if (x % 11 == 10)
                {
                    if (!thistime)
                        continue;
                    Console.ForegroundColor = ConsoleColor.White;
                }
                else
                {
                    Console.ForegroundColor = ConsoleColor.DarkGreen;
                    Console.SetCursorPosition(x, inBoxY(y[x] - 2 - (l[x] / 40 * 2), height));
                    Console.Write(R);
                    Console.ForegroundColor = ConsoleColor.Green;
                }
                Console.SetCursorPosition(x, y[x]);
                Console.Write(R);
                y[x] = inBoxY(y[x] + 1, height);
                Console.SetCursorPosition(x, inBoxY(y[x] - l[x], height));
                Console.Write(' ');
            }
        }

        private static void Initialize(out int width, out int height, out int[] y, out int[] l)
        {
            int h1;
            int h2 = (h1 = (height = Console.WindowHeight) / 2) / 2;
            width = Console.WindowWidth - 1;
            y = new int[width];
            l = new int[width];
            int x;
            Console.Clear();
            for (x = 0; x < width; ++x)
            {
                y[x] = r.Next(height);
                l[x] = r.Next(h2 * ((x % 11 != 10) ? 2 : 1), h1 * ((x % 11 != 10) ? 2 : 1));
            }
        }

        static Random r = new Random();
        static char R
        {
            get
            {
                int t = r.Next(10);
                if (t <= 2)
                    return (char)('0' + r.Next(10));
                else if (t <= 4)
                    return (char)('a' + r.Next(27));
                else if (t <= 6)
                    return (char)('A' + r.Next(27));
                else
                    return (char)(r.Next(32, 255));
            }
        }

        public static int inBoxY(int n, int height)
        {
            n = n % height;
            if (n < 0)
                return n + height;
            else
                return n;
        }
    }
}

Thursday, January 27, 2011

الدرس الثانى فى دورة أحتراف لغة السى شارب!!!!!!!!!!!!

فى الدرس الاول تعرفنا على طريقة أنزال البرنامج وتشغيلة وكتابة برنامج بداخلة وحفظ البرنامج.
---------------------------------------------------------------------------------------------
سوف نبدأ الدرس الثانى باسم الله الرحمن الرحيم
نقوم أولا بفتح المشروع الذى قمنا بكتابة فى الدرس الاول :
ويوجد عدة طرق لفتح مشروع موجود من قبل :
- نختار من القائمة الرئيسية كلمة file فتظر تحتها قائمة نختار منها الاختيار open Project  فتظهر أمامنا شاشة يوجد فيها مجموعة مجلدات Folders باسماء المشاريع التى أنشأناها سابقا نختار منها ملف البرنامج ونفتحة ونختار البرنامج الذى نريدة كما فى الشاشة التالية.


- أو سوف تلاحظ عن تشغيل البرنامج وجود شاشة باسم Recent Project وفى الجانب الايسر للبرنامج وهى تحتوى على البرامج التى قمت بالتعامل بها فى المارات السابقة كما بالشكل التالى :


----------------------------------------------------------------------------------------------------------------------------------
ملاحظة : أذا قمت باختار كلمة Close بدلا من كلمة Close Soulation فهذا الاختيار يغلق الملف المفتوح فقط ولا يغلق المشروع بالكامل ويستخدم هذا الاختيار هذا الاختيار عندما يريد المبرمج غلق أحد ملفات المشروع فقط وليس المشروع بالكامل.
-----------------------------------------------------------------------------------------------------------------------------------
أن لغة السى شارب تحتوى على العديد من المكتبات التى من ضمنها مكتبة System والتى تحتوى تقريبا على جميع الاوامر التى سوف نستخدمها فى عملية البرمجة وأيضا مكتبة System تحتوى فى داخلها على مجموعة من الاوامر كام سوف نرى فيما بعد
-----------------------------------------------------------------------------------------------------------------------------------
مثال :
خطوات شرح البرنامج :
- لقد قمت أولا بحجز مخزن نصى من النوع String وأعطيت لة الاسم myname.
- قمت بفتح مكتبة Console وأخترت منها الامر Writeline.
أمر Writeline هذا يعتبر أمر من أوامر الطباعة على الشاشة أو بمعنى أخر ما يكتب بعدة يظهر فى النتيجة كما هو.
ملاحظة الامر لا يقبل اللغة العربية - وأيضا شكل الجملة بعدة تاتى بين ("الجملة التى تريد أن تظهر تكتب هنا") ثم (;) لانهاء التعامل مع الامر .
ثم قمت بجعل المتغير (myname) يساوى أمر Readline.
وأمر Readline هو أيضا من ضمن أوامر مكتبة Console وهذا الامر يسمح بادخال البيانات من لوحة المفاتيح الى شاشة التنفيذ مباشرة وهى يعتبر أمر من الاوامر المضافة على اللغة.
وشكل أمر Readline يكون كالاتى console.Readline ثم قوسين () ثم (;).
أمر Readline لا يتعامل مع المتغيرات الرقمية الا عن طريق التحويل.
- ثم قمت بكتابة أمر أخر لطباعة كلمة Hello وما تم أدخالة فى المخزن myname على الشاشة أما ال{0} الذى يوجد على الشاشة لن يتم يظهر على الشاشة لاننى أقصد بة أن يذهب الى أول مخزن بعد (,) أو بعد ال" " ويطبع ما بدخلة ولقد قمت باضافة مسافة لكى لا يطبع الاسم ويكلمة بكلمة Hello والنتيجة تكون كالاتى :

---------------------------------------------------------------------------------------------------------------------------------

مثال أخر لجعل أمر Readline يتعامل مع المتغيرات الرقيمة عن طريق برنامج صغير لجمع أى رقمين :

خطوات شرح البرنامج :
- طبعا قمت بحجز مخزن من النوع String وأعطيتة الاسم s.
- وقمت أيضا بخزن مخزنين أخرين ولكن من النوع Int أى النوع الرقمى الذى يتعامل مع الارقام الصحيحة فقط لا يمكن فى هذا البرنامج جمع الكسور الارقام الصحيحة فقط.
- وقد قمت بكتابة أمر طباعة write ليطبع على الشاشة الاسم الذى كتب بعدة enter number :
ملاحظة الفرق بين الاوامر Write - writeline
الامر Write  يستخدم للطباعة وأيضا يتم الكتابة بعدة على نفس السطر.
 أما أمر Writeline يستخدم أيضا للطباعة ولكن عندما تريد أدخال بيانات يتم أدخالها على السطر التالى وليس نفس السطر.
- ثم قمت باستخدام أمر Readline ليتم عن طريقة أدخال البيانات من لوحة المفاتيح الى المخزن(s) بكل سهولة ويسر.
- ثم قمت بكتابة أمر Convert وهذا الامر من أوامر مكتبة Console ويستخدم فى تحويل البيانات من نوع متغير الى نوع متغير أخر مثل ما فى المثال.
ولقد ذكرنا سابقا أن أمر Readline لا يتعامل مع المتغيرات الرقيمة ولهذا قمت بادخال أمر Convert لكى أقوم بتحول المخزن (ٍs) الذى سوف يتم أدخال البيانات بة الى متغير رقمى ليتم جمة على أساس الارقام بمعنى أننى أذا قمت بجمع المتغيرات من نوع String معا سوف يعطى هذا الرقم 10+11=1110 وليس مجموعم هكذا 21 .
- ثم قمت باستخدام أمر Write مرة أخرى ليبطع على الشاشة enter number.
- ثم قمت باستخدام أمر Readline ليتم عن طريقة السماح لى بادخال البيانات من لوحة المفاتيح الى البرنامج وتكون البيانات التى سوف يتم أدخالها من النوع الرقمى لاننى قمت باستخدام متغير رقمى صحيح من النوع Int وهى أختصار كلمة Integer
- وقمت أيضا بكتابة أمر Convert أخر ليتم تحويل ما يتم أدخالة فى المتغير (s) من النوع النصى الى النوع الرقمى ليتم الحصول على المجموع بصورة صحيحة .
- وقمت أخيرا بكتابة أمر Writeline ليتم عن طريقة طباعة ما سوف يلى هذا الامر ولكن فى هذة المرة صور الامر مختلفة لننى لا أريدة أن يطبع ما بين ال " ما يكتب هنا " ولكننى أريدة أن يقوم بجمع متغييرن من نفس النوع Int لذلك قمت بوضع المتغييرين بدون "" ليتم عمل العملية المنطقية ويقوم بالجمع الصحيح كما فى شكل النتيجة التالية :

------------------------------------------------------------------------------------------------------------------
وهنا نصل الى نهاية الدرس الثانى وأرجوا من الله أن يكون هذة الدورة مفيدة للجميع
شكرا وتحياتى للجميع
أنتظرونا فى الدرس القادم بأذن الله
mostafa.cs2011@gmail.com
------------------------------------------------------------------------------
 







Wednesday, January 26, 2011

Kindle 3G Wireless Reading Device



 






♪♪ Review Kindle 3G Wireless Reading Device, Free 3G + Wi-Fi 

 
50% better contrast for the sharpest text and images
















Eight adjustable text sizes for comfortable reading






دورة سى شارب كاملة من البداية حتى الاحتراف !!!!!!!!!!!!!!!!!!!

سوف نبدأ هذة الدورة معان باذن الله:
بسم الله الرحمن الرحيم  :
سوف أبداء معكم من الان حتى الاحتراف فى دورة تعلم لغة السى شارب  :
1. يجب علينا أن نقوم بتحميل البرنامج وتسطبة من خلال الرابط التالى ( ملاحظة : البرنامج مجانى ولكن يحتاج فقط الى عملية التسجيل(
بعد تسطيب البرنامج نبدأ الان بشغيلة والتعرف علية ولكن قبل أن نبدأ فى ذلك علينا أولا معرفة ما هو برنامج السى شارب هذا وما هى الاهداف الذى يستخدم من أجلها:
·         تعريف لغة السى شارب : لغة السى شارب المرئية هى أحدى اللغات الحديثة التى تمكن المبرمج من برمجة مختلف التطبيقات فى بيئة النوافذ بسهولة ويسر وفى وقت قياسى وذلك بما يتيح فيها من أدوات يستغلها المبرمج لانشاء برامجة بدون كتابة كافة التفاصيل وتعتمد لغة السى شارب المرئية فى أنشاء برامجها على تقنيات البرمجة الحديثة  "البرمجة الشيئية الموجهة" Object Oriented Programming.
·         ولغة السى شارب هى فى جورها لغة السى ++ مضاف عليها وسائل مساعدة تمن المبرمج من تصميم برامجة باقل جهد ممكن.
سوف أبدأها معكم باذن الله عن طريق الصور الماخوذة من ال PowerPoint
وسوف نبدأها ببعض المصطلحات عن اللغة كالاتى :







وبعد ذلك سوف نقوم بكتابة أول برنامج لنا فى Console Applicatio
1. نفتح البرنامج start-----> All programs------>Microsoft Visual C# 2008 Express Edition
2. نقوم بتشغيل البرنامج وسوف تظهر لنا الشاشة التالية :
3. نضغط منها على قائمة File----->new project فتظهر لنا الشاشة التالية :


 4. ثم نختار منها Console Application وأيضا من خلال هذة الشاشة نستطيع أدخال أسم البرنامج من التكست الذى أمامنا أمام كلمة Name
5. بعد أختيار نوع البرمجة Console Application تظهر لنا شاشة كتابة الاكواد داخل البرنامج وهى الشاشة التالية :
ثم نقوم بكتابة أول كود برمجى فى لغة السى شارب كالاتى :

لان الاكواد لن تظهر بصورة جيدة سوف أقوم بااعادة كتابتها مرة أخرى كالاتى :
ثم نقوم بتشغيل البرنامج ويتم تشغيل البرنامج عن طريق أربعة طرق :
- بالضغط على زر التغيل الاخضر الذى يوجد فى أعلى الشاشة.
- أو عن طريق الضغط على قاءمة Debug -----------> Start Debugging
- عن طريق الضغط على F5 من لوحة المفاتيح 
- وأيضا لتشغيل البرنامج وتثبيت الصورة النتيجة نضغط من على لوحة المفاتيح على Ctrl+F5
بعد التشغيل سوف يظهر لنا الشاشة التالية شاشة النتيجة :
وسوف نشرح ما الذى يحدث من حين الضغط على زر التشغيل الى حين أظهار النتيجة على الشاشة :
- بعد كتابة البرنامج وعندما نريد تنفيذة تتم عملية التنفيذ على مرحلتين : 
الاولى : ترجمة البرنامج وتصحيح أخطاؤة أذا وجدت.
الثانية : هى تنفيذ البرنامج.
تتم العمليتان كالاتى :
1. الترجمة : من الممكن ترجمة برنامج السى شارب الى عدة صور مثل EXE وهى لغة الالة حيث يكون البرنامج فى صورة Executable Form أو يترجم الى نسخة من DLL Dynamic Link Library 
فاذا كان البرنامج صيحي تظهر لنا فى نافذة المخرجات أسفل الشاشة الشاشة التالية فارغة :
 وهذة الشاشة تدل على عدم وجود أخاء وأذا وجد أخصاء بها نعود مرة أخرى للاكواد ونعاود تصحيحها ونعيد مرة أخرى ترجمة البرنامج.
---------------------------------------------------------------------------------------------------------------------
2. التنفيذ : لتفيذ البرنامج نختار من القائمة الرئيسية كلمة Debug فتظهر لنا لستة الاختيرات فنختار منها كلمة Start without debugging لتنفيذ البرنامج وأخراج النتيجة.
---------------------------------------------------------------------------------------------------------------------
ثم ناتى الان لمرحلة أغلاق وحفظ المشروع :
- أذا أراد المبرمج بعد أنتهاء العمل فى برنامجة غلق المشروع فيتم ذلك عن طريق القائمة الرئيسية نختار منها كلمة File لتظهر تحتها قائمة نختار منها Close Soulation فيغلق المشروع بكل الملفات التابعة لة وأذا أراد المبرمج كتابة برنامج جديد فانة يعيد خطوات أنشاء مشروع جدبد كما أوضحناها فى الجزء السابق .
شكل شاشة الحفظ تكون كالاتى أولا تظهر لنا شاشة نختار منها Save
بعد الضغط على كلمة Save فتظهر لنا الشاشة التالية :
فنحدد أسم البرنامج الذى سوف يحفظ بة Name
ثم المكان الذى سوف يتم الحفظ بة Location
 -----------------------------------------------------------------------------------------------------------
وفى نهاية الجزء الاول من شرح السى شارب أرجو أن يعجبكم هذا الشرح وأرجوا التعليق على هذا الشرح لتتم تكملة باقى الدروس وشكرا وأسأل من الله التوفيق 
وأنا تحت أمر كل من يحتاج الى أى مساعدة
 mostafa.cs2011@gmail.com
وشكرا

Tuesday, January 25, 2011

Toshiba Satellite L655: Fashionable, Affordable and Portable with 15.6-Inch Screen



Offering plenty of mobile computing power plus room to multitask, study, and play, the Toshiba Satellite L655 (model L655-S5158) offers a generous 15.6-inch display that's great for doing more things at once--handling business at home or in the field, watching movies or playing online RPG games. The L655 is perfect for handling computing essentials at home, school or work--from surfing the Web and downloading video to managing household finances or studying for finals. And its high-gloss Fusion Finish in Helios Black will be sure to raise a few eyebrows.
Toshiba Satellite L655
Enjoy added screen real estate with the L655's 15.6-inch screen (see larger image).
Burn through the hottest new digital media, content creation and advanced 3D gaming with the breakthrough performance of the Intel Core i3 processor--with 4-way multitasking processor power to work on four tasks simultaneously.
This all-purpose, eco-smart machine's stunning 15.6-inch LED-backlit display is easy on the battery and provides 720p native high-definition resolution. It includes a plethora of multimedia features, including a SuperMulti drive that can handle all your DVD and CD formats, built-in speakers with Dolby audio processing, and Intel HD integrated graphics.
Fusion Finish in Helios Black

Fusion Finish in Helios Black.
Thanks to the built-in webcam and Toshiba Face Recognition software on this machine, you'll enjoy a more convenient way to communicate, log on or share your laptop among the family. Other high-tech features include a power-saving Eco Utility to help reduce power consumption based on your needs, one USB/eSATA combo port, and an HDMI that lets you scale up with an external monitor or home theater.
This Satellite comes pre-installed with the Microsoft Windows 7 Home Premium operating system (64-bit version).

Key Features

  • 15.6-inch widescreen HD TruBrite LED-Backlit display not only renders stunning visuals, but it's more environmentally friendly as it uses less power (1366 x 768 resolution, 16:9 aspect ratio).
    Learn More

    Toshiba Satellite L655
    A wide range of ports will keep you well connected, including
    an HDMI output (see larger image).

    Toshiba Satellite L655
    Enjoy a full 104-key keyboard with 10-key pad (see larger image).
    Intel Core i3
  • 2.53 GHz Intel Core i3-380M dual-core processor for a fast, responsive PC experience (3 MB L3 cache). It comes equipped with Intel HD Graphics, an advanced video engine that delivers smooth, high-quality HD video playback, and advanced 3D capabilities, providing an ideal graphics solution for everyday computing. Intel's Hyper-Threading Technology enables each core of your processor to work on two tasks at the same time, delivering the performance you need for smart multitasking.
    Learn More
  • 640 GB SATA hard drive (5400 RPM)
    Learn More
  • 4 GB of installed DDR3 RAM (1066 MHz; expandable to 8 GB)
    Learn More
  • Intel HD Graphics with 64 MB - 1274 MB dynamically allocated shared graphic memory.
    Learn More
  • 8x SuperMulti DVD drive with double layer support and Labelflash printing, which enables you to personalize your discs and keep them looking attractive and organized with direct-to-disc laser printing.
    Learn More
  • Wireless Connectivity
    • With its integrated Wireless-N Wi-Fi networking capabilities, this laptop provides up to five times the performance and twice the wireless range using 802.11n-compatible routers as you would with 802.11g networks. It's also backward compatible with 802.11b/g networks (commonly found at Wi-Fi hotspots and in older home routers).
      Learn More
  • Built-in stereo speakers with Dolby Advanced Audio blends a suite of technologies to deliver a stunning audio experience from headphones or your laptop speakers. It analyzes audio signals and restores tones often lost in encoding, mimicking the same optimization techniques that go into tuning movie theaters and mixing rooms, resulting in brighter highs and deep, thumping bass tones. It also expands stereo signals to 6.1- or 7.1-channel playback for a listening experience that will have you talking long after the performance.
    Learn More
    Toshiba ReelTime
    Toshiba ReelTime. Click here to learn about its features.

    Toshiba Eco Utility
    Toshiba Eco Utility. Click here to learn about its features.
  • Included Toshiba Software:
    • Toshiba Media Controller offers simplified media sharing. Using an intuitive drag-and-drop interface, it lets you share videos, music and pictures from the media library on your laptop with compatible devices in your home entertainment network, or with other compatible laptops and devices, like an Xbox 360 game console. And you can do it all without moving equipment, burning discs or fumbling with cables.
    • Toshiba Bulletin Board is an easy-to-use organizational and productivity app that lets you build your own personalized space on your desktop. With Toshiba Bulletin Board, you can quickly and easily manage your to-do lists and calendars, plus create your own custom work area by pinning your favorite photos, documents, links and more.
    • Toshiba ReelTime helps you cut down the time it takes to search for files. The easy-to-use app takes traditional text-based file structures one step further to help you find what you're looking for more quickly. Accessible from your taskbar, it shows you a visual timeline of your recently accessed files--using graphical thumbnails--so you can easily identify and get to your files faster.
      Learn More
  • Included Toshiba Utilities:
    • Toshiba eco Utility makes it easy to go green as you go mobile. Hit the Eco Button and you'll launch the Toshiba Eco Utility, which puts all sorts of easy-to-read information on your screen, and gives you the ability to adjust the power settings on your laptop. It also activates a light showing you're in the Eco Mode. The Toshiba Eco Utility lets you pick the optimal power plan for your situation. Choose High-Performance when you need every watt you can get, Power Saver for the least energy consumption, or Balanced as a perfect blend of the two.
      Learn More
  • Up to 5 hours of battery life (6-cell battery)
    Learn More
  • Dimensions & Weight: 14.96 x 9.84 x 1.49 inches (WxDxH); 5.48 pounds
    Learn More

Networking, Connectivity & Expansion

  • 3 total USB 2.0 ports with 1 eSATA/USB combo port that enables you to connect to compatible external hard drives for lightning fast transfers of large multimedia files--up to 5 times faster than via a standard USB port.
  • HDMI high-definition audio/video output allows a single cable to transmit uncompressed high-definition video to your compatible digital TV or external monitor.
  • VGA video output (analog, RGB)
  • Microphone and headphone jacks
  • Multi-format memory card reader compatible with Secure Digital, Secure Digital High Capacity, Memory Stick, Memory Stick PRO, Multi Media Card, xD Picture Card
  • Fast Ethernet (10/100)

What's in the box

This package contains the Toshiba Satellite L655-S5158 notebook PC, rechargeable lithium-ion battery, AC adapter, and operating instructions.
It also comes with the following software:
Norton Internet Security 2011 (30-day trial); Microsoft Office Starter 2010; Google Toolbar and Google Chrome; Microsoft Windows Media Player 12; Microsoft Silverlight; Microsoft Live Essentials; Toshiba Online Backup (30-day trial)
This laptop is backed by a 1-year limited hardware warranty.

Microsoft Windows 7 Home Premium

Pre-installed with the Microsoft Windows 7 Home Premium operating system (64-bit version), you'll be able to easily create a home network and share all of your favorite photos, videos, and music. Windows 7 is the easiest, fastest, and most engaging version of Windows yet. Better ways to find and manage files, like Jump Lists and improved taskbar previews, help you speed through everyday tasks. Windows 7 is designed for faster and more reliable performance, so your PC just works the way you want it to.
And with Windows Anytime Upgrade, you'll be able to add new features to your PC in as little as 10 minutes. Windows will walk you through the simple upgrade process, it requires no software or downloads, and you'll keep your existing programs, files, and settings

Environmental Specifications

  • Energy Star 5.0 certified
  • Gold EPEAT designation for meeting standards to help reduce its environmental impact.
  • RoHS compliant effectively reducing the environmental impact by restricting the use of lead, mercury and certain other hazardous substances

Product Description

For plenty of power, plus room to multitask, study and play, the Satellite L655 laptop is a great choice, with its famous Toshiba quality, value and style, and a generous 15.6” diagonal TruBrite HD display. This larger screen is great for doing more things at once, handling business at home or in the field, watching movies or playing online RPG games. New multi-core processors from Intel and AMD, plus lots of memory and storage, make it a strong all-around performer for students, small-business owners, families and light gamers, who’ll love its stunning Fusion Finish in a choice of colors. A webcam with Wireless-N, and wide range of ports, will keep them well connected with room to expand and share. Select models with HDMI or a Blu-ray Disc player deliver super-sized entertainment. And Toshiba “Smart Features”-like a Touch pad with multi-touch control and our power-saving eco Utility-make this laptop convenient for them and right for the environment too. With Toshiba, mainstream is far from mediocre.

برنامج لزيادة ساعات عمل بطارية اللاب توب

يمكنك استخدام بطارية اللاب توب لعدد اكبر من الساعات بأستخدام

برنامج
  Battery Doubler

http://www.ibtesama.com/vb/imgcache2/147616.gif 
http://www.spreadmyfiles.com/files/0Y7OUTMW/Laptop%20Battery%20Doubler%20v1.2.rar

 طريقة عمل البرنامج : البرنامج بيتحكم فى تقليل استهلاك البطارية عن طريق الابروم
الموجودعلى البطارية وهو المسئول عن اجمالى ععد ساعات عمل البطارية

password : www.fullandfree.info

اقوى اسطوانات الصيانة MutiBoot Dual Hiren 2010

الان وحصريا الاسطوانة الاقوى فى مجال صيانة الحاسب الالى

MutiBoot Dual Hiren 2010





التى تحمل عدة برامج لا يستغنى عنها اى فنى صيانة فى مجال الحاسب الالي





واكثر من ذلك يوجد بالاسطوانة