Sunday, September 9, 2018

The .NET Framework Architecture


Common Language Specification (CLS)
Enables cross-language interoperability
Common Language Specification describes interoperability requirements
Inside CLS common type system (CTS) describe how different data types for the same constant should work together.
For example char array in C++ and Strings in C# can be used as sequence of alphabets.
CLS is what the languages must provide in order to work in the .NET Word.
This Specification is public so any one can write a language to work with .NET frame work but first to complete the CLS.
Over 15 languages  are  supported today by .Net.
C#, VB, Jscript, Visual C++ are from Microsoft, but there are  some other languages  also that use the same set of services as they came with CLS.
NET Classes (4 Areas)
ASP.NET:
ASP.NET provides the core Web infrastructure such as Web Forms development and Web Services.
Windows Forms:
User interface development on the Windows platform can be done using Windows Forms
ADO.NET:
Provide the means (functions, classes and so on..) for  data access.
Base Class Library:
Finally, the core base classes library (BCL) contains namespaces that group classes into common blocks of functionality for common and frequent use.
For example all the classes deals with files are in one namespace
Common Language Runtime (CLR)
CLR provide common runtime Environment for all .NET languages.
CLR purpose is to run and load Application compiled to Microsoft Intermediate Language (MSIL) or IL in short.
CLR manages basic services of .NET such as:
Memory management
Garbage collection
Exception Handling
Loading/Running Applications
CLR with Managed and Un-Managed code
CLR allow the applications to run the managed and unmanaged code.
Unmanaged code runs out side the CLR.
For example VB6/C++ code compiled w/o .NET
Managed code runs within the CLR and get benefits of the CLR  features( Memory management, Garbage Collection and So on).









NET Framework Base Class Library

BCL consists of classes that provide base functionality for .NET Framework
And many classes that make your life as developer easier
Library of classes used by all .NET applications
Contains large number of classes (Block of functionality, properties and events) grouped into namespaces
Each class within namespace has a unique name.
BCL’s namespaces group classes into common blocks of functionality.
For example all the classes deals with files are in one namespace i.e. System.IO
Some BCL namespaces…
System
That includes the basic data types like integer, string, time, Boolean and so on.
Some console and input/output, garbage collection and memory management functions.
System.Data
Including the classes dealing with data including ODBC, SQL server, data sources and so on.
System.IO
Have functionality about working with streams and disks i.e. moving data from one place to an other.
System.Text
Dealing about string and texts. Converts data from block of bytes to texts and so on.
System.Text.RegularExpresions
Providing some magic of string operations and matching of data.
System.Web
Provide design and run time support for web application.
System.Windows.Forms
Provides the support for using and designing the windows application and its controls.
System.Text.RegularExpresions
Providing some magic of string operations and matching of data.
System.Web
Provide design and run time support for web application.
System.Windows.Forms
Provides the support for using and designing the windows application and its controls.
System.Collections.Generic
Deals with the safe-type-caste provide conversion between data values.
If different names for the same data type are there in different language then this class ensures the .NET that actually they are the same. E.g. int in C++ is same to integer in VB.net and numeric of SQL.
System.Linq
Providing classes to link a source and enable the application to query the data.
Design for
A Simple window application  Add, Subtract, and Multiply

 




Addition Code

private void btnAdd_Click(object sender, EventArgs e)
        {
            int num1, num2, result;
            String rslt;
            num1 = Convert.ToInt32(txtNum1.Text);
            num2 = Convert.ToInt32(txtNum2.Text);
            result=num1+num2;
            rslt = result + "";
            txtResult.Text = rslt;
Subtraction Code
private void btnSub_Click(object sender, EventArgs e)
        {
            int num1, num2, result;
            String rslt;
            num1 = Convert.ToInt32(txtNum1.Text);
            num2 = Convert.ToInt32(txtNum2.Text);
            result = num1 - num2;
            rslt = result + "";
            txtResult.Text = rslt;
       }
Multiplication Code
private void btnMul_Click(object sender, EventArgs e)
        {
            int num1, num2, result;
            String rslt;
            num1 = Convert.ToInt32(txtNum1.Text);
            num2 = Convert.ToInt32(txtNum2.Text);
            result = num1 * num2;
            rslt = result + "";
            txtResult.Text = rslt;
        }





Thursday, August 30, 2018

Introduction


Introduction to C#…

Officially Microsoft define C# as  a “simple, modern and object-oriented language derived from C and C++.”
But most independent observations would change this description to “derived from C, C++ and Java.”
Because syntactically C# is very similar to C++ and Java.
As many of the key words are the same for example the same braces ({}) to block a piece of code, (;) for separation of statements from each other and the way to get the data from external source which is out of .NET Environment.
To discuss more about C# language and its associated environment, the .NET Framework, as the most important technology for developers for many years, the following should be considered.
Net Framework as a run time environment for MS Windows 2000 and onward - is a fresh start for Microsoft rather extending the existing code base again and again.
As the point will come that the extension to existing code will become more complex with a passage of time. 
The time will come that compatibility will have no value for outdated products.
Finally, caused .Net Frame Work.
.NET is designed to provide a new environment where you can develop almost any application to run on OS (windows).
While C# is a new programming language that has been designed specifically to work with .NET.
Using, C# we can create a classic window desktop application, a database access component, a component of distributed application, a dynamic web page and XML web service.
C# provides a means for you to code up any type of software or component you need to write for the windows platform.
Using, C# we can create a classic window desktop application, a database access component, a component of distributed application, a dynamic web page and XML web service.
C# provides a means for you to code up any type of software or component you need to write for the windows platform.
Need of .NET and C#…
In order to understand the significance of .NET, it is useful to remind that in past history of operating systems, although they may look quite different on the surface, but all of the window operating systems from window 3.1 (introduced in 1992) through windows server 2003 have the same familiar Windows API at their core.
As we progress to the new versions of windows, huge numbers of new functions have been added to the API, but this has been a process of evolving and extending the API rather than replacing it
Microsoft choose this evolutionary approach to software for the obvious reason that it is concerned about the backward compatibility.
Over the years a huge base of third-party software has been written for windows, and windows wouldn’t have enjoyed the success it has had if every time Microsoft introduced a new technology that broke the existing code base!
Backward compatibility is an essential feature of Windows technologies but extending the existing code has a big disadvantage.
Every time technology evolves and add new features it becomes more complicated than it was before. 
So now it is clear that in case something had to change. Microsoft could not go on forever extending the same development tools and languages, always making them more and more complex in order to satisfy the conflicting demands of keeping up with the newest hardware and maintaining backward compatibility.
There comes a point where you have to take new start with a clean line if you want a simple yet sophisticated set of languages, environment and developer tools, which make it easy for developer to write state-of-the-art software.
This fresh start is what C# and .NET are all about. Clearly .NET is a framework (An API) for programmers of different skills.
While C# is a language that has been designed from scratch to work with .NET, as will as to take advantage of all the progress and OOP principles that have taken place over the past 20+ years.
We should make it clear that the backward compatibility has not been lost in the process. Existing programs will continue to work, and .NET designed with ability to work with these programs.
Presently communication between software components on windows almost entirely takes place using COM (Component Object Module).



Sunday, July 23, 2017

Network Cable

The following are types of cables used in computer networks.
Network Cable
The network cable is used to connect to and transfer data between computers and the network. There are several types of network cables and the right type to use, depends on the structure and topology of your network. The examples of network cables are Twisted pair, Coax, Ethernet and fiber optic junction.
Unshielded Twisted Pair-UTP
The UTP (unshielded twisted pair) is used in many Ethernet networks. It consists of four couples who accommodated in the cable covering. Each pair is rotated in some additional twists to disturbance of other devices on the network. The structure of this type of cable increases the reliability and helps minimize network failures.
Coaxial Cable
The coaxial cable or coax another important type of network cable. It has a copper conductor in the middle of it and a plastic coating acts as an insulator between the Central conductor and a metal shield. The cable is then covered with a coating. The lining can think or thick-thicker padding that less flexible is an extra protection.
Ethernet Cable
The Ethernet crossover cable is used to a computer network consists of two or more computers to connect. This type of network cable eliminates the need for network switches and routers. The cable also connects computers using their network adapters, such as a network interface card (NIC).
Fiber Optic Cable
The fiber optic grid is used for networks that extend over large distances. The fiber optic cable consists of several layers, protective lining. Also sends light in contrast to electrical signals as other cables. This feature of fiber optic cable makes it an ideal cable for  large amounts of electrical interference in the network. It transmits information at high speed and is therefore used in large network environments such as those used by large companies.

Network Threats or Viruses

There are many network threats today, which are spread over the internet. The most common include the following.
1-Viruses
2-Worms
3-Trojan horses 
4-Spyware 
5-Zero-day attacks, also called zero-hour attacks 
6-Denial of service attacks 

1-Viruses
-    A virus is a computer code (written with the express intention to replicate itself) that can attach itself to a program, file, hardware and can spread computer to computer.
-    As a virus move from one computer to another it damages hardware, software and files also.

2-Worms
-    Worms are subclasses of viruses, it can spread itself without user action across the network.
-    Worms are just like viruses, but the worms have ability to spread themselves so automatically and rapidly.
-    For example, if there is a worm in your system, then it can send itself by email to all of your contacts and then these computers further send worms. This causes a heavy stream of network traffic, which can slow down business networks by using network bandwidth.

3-Trojan Horses
-    Trojan horses appear to be software, but they compromise with your security and can damage your network hardware, files. 



4-Spyware
-    Spyware is a general term that is used to describe software which performs the following actions on your computer without your consent (permission).
1-    Advertising
2-    Collection of personal information.
3-    Changing the configuration of your computer.
Above action can slow down or damage your computer.
Spyware can come in the following ways.
1-    Application/software installation.
2-    Email.
3-    Web sites.

5-Zero Day/Zero Hour Attack
-    Zero day/zero hour attacks those tries to destroy computer hardware, files and software and about which vendors have no information.
-    There is no security available for zero day/zero hour attacks.

6-Denial of Service Attack
-    DOS or DDOS is an attempt to make resources unavailable to its intended user.
-    One common method of DOS or DDOS is penetrating the target machine with external communication requests.  


Sunday, July 16, 2017

شما مى توانيد و شما قهرمان هستيد

اشپيگل آلمان به نقل از مسلم شيرزاد: 'دل شير ندارى، سفر عشق مكن'
بخش از نوشته مجله اشپيگل آلمان كه به چاپ رسيد: مسلم شيرزاد رييس ٢٧ ساله دانشگاه جهان نور يك ستاره رسانه يى است، او مدت شش سال گرداننده برنامه هاى برجسته سياسى تلويزيون طلوع بوده است.
شيرزاد مى گويد به ٥٠ كشور سفر نموده، اما اروپا براى اروپايى ها، آستراليا براى آستراليايى ها و افغانستان براى ما خوب است، ما آينده عالى داريم
وقتى از شيرزاد پرسيده مى شود، اما فساد، بيكارى و ناامنى افغانستان چطور؟
شيرزاد با متل افغانى پاسخ مى دهد: دل شير ندارى سفر عشق مكن
.درسى كه شيرزاد به دانشجويانش در دانشگاه جهان نور مى دهد اينست كه من بالاى شما اعتماد دارم، شما مى توانيد و شما قهرمان هستيد

از صفحه مسلم شیرزاد

Tuesday, September 6, 2016

همیشه مهربان خواهم ماند .
حتی اگر کسی قدر مهربانیم را نداند.
من خدایی دارم که به جای همه برایم جبران میکند….

Friday, July 22, 2016

داستان واقعی از خیانت!


همسرم قبل از ازدواج با من عاشق دخترخاله اش بود و قسمت هم نشده بودند. دخترخاله زودتر ازدواج کرده بود و همسرم هم پس از معرفی توسط یک آشنا، مرا دید و با هم ازدواجکردیم.
عادت داشت که بعد از سرکارش ، با رفقای باب و ناباب جمع شوند و الواتی کنند و من هر شب تا نیمه شب منتظر او بودم. گاهی شام خورده بود و گاهی نه و من فقط سکوت میکردم. 
وضع مالیمان بد نبود و دو طبقه خانه داشتیم. طبقه بالا اتاق خوابها و حمام و طبقه پائین آشپزخانه و پذیرائی ...

یک شب مهمان داشتیم. وسط مهمانی بود که متوجه شدم همسرم نیست و کمی طول کشید. رفتم طبقه ی بالا که ببینم چرا نیست و اگر کاری هست انجام بدم و ... بالا رفتم و در اتاق خوابمان را باز کردم و صحنه ای دیدم که امیدوارم هیچ زن متاهلی نبیند.
همسرم و دخترخاله اش. 
چیزی نگفتم و...
بعد از مدتی که از ازدواج ما گذشت، دخترخاله همسر بدلیل نداشتن تفاهم، از همسرش جدا شده بود و حالا شده بود یک زن آزاد!

تمام طوفانی که در درونم برپا شده بود را کنترل کردم و سریع پائین آمدم. به فاصله ی کمی همسرم و دخترخاله پائین آمدند و مثل موش تا آخر مهمانی هردو با ترس و لرز در گوشه ای نشسته بودند.
مهمانی تمام شد و من با کنترل بسیار خیلی عادی جشن را ادامه دادم كه اصلاً هيچ چيز نشده.
👈
حالا بقیه داستان از قول آقا:

اصلا فکر نمیکردم در آن بيروبار مهمانی همسرم بالا بیاید. شرایط خیلی بدی بود. سریع لباس پوشیدیم و بلا فاصله آمدیم پائین تا جلب توجه نکنیم. 
هر لحظه منتظر برپائی طوفان عظیمی از جانب همسرم بودم. اما هيچ كه هيچ این زن چه دیده.

جشن را با روی خوش ادامه داد و با مهربانی به من هدیه داد و بقیه هدیه دادند و کم کم مهمانهای دورتر که میرفتند و پدر مادرهایمان فقط مانده بودند، من منتظر بودم تا همسرم دیده هایش را بیان کند. دخترخاله که سریع بعد نان و کیک رفت و همسرم خیلی عادی با او برخورد کرد.
هرچه تنهاتر میشدیم ترسم بیشتر میشد اما خانمم هيچ كه هيچ اصلاً فكر ميكردي چيزي نديده بود. 
پدر و مادرم رفتند و قبل آنها هم پدر و مادر و برادر همسرم.
از بدرقه که برگشتم دیدم همسرم مشغول جمع و جور کردن پذیرائی و جمع کردن بشقابهای پیش دستی و ... بود.

کمی کمکش کردم و باز منتظر طوفان بودم. خیر خبری نبود 
رفتم خوابیدم, مگر خوابم میبرد.

همسرم آمد و بعد چند دقیقه خوابش برد اما من تا صبح دنده به دنده میشدم. فردا صبح، شنبه بود و سرکار رفتم. همسرم هم طبق معمول صبحانه ام را آماده کرده بود و بزور دو لقمه ای با چای قورت دادم و دیدم ديگ اي از غذای شب گذشته برایم گذاشته بود و گفت که دیگه مجبور نشی نان چاشت بری بیرون و من تشکری کردم و بیرون برامدم.
دوستانم وقت نان از دستپخت همسرم خوردند و چقدر تعریف کردند و من حس خوش و ناخوش بدی با هم داشتم. 
آخر شب کمی زودتر از پیش رفقا برگشتم و دیدم مثل همیشه همسرم منتظر من هست تا باهم نان شب بخوریم. سفره رنگین تر بود و بازهم فردا ديگ غذا و ... من منتظر دعوا بودم و او هيچ كه هيچ.

شب بعدي باز کمی از شب قبل زودتر برگشتم و...
همسرم روزبه روز محبتش را بیشتر میکرد و من اسارت بدی را تحمل میکردم. منتظر بودم تا دعوا را شروع کند و من بتوانم به رخش بکشم که اورا از اول دوست نداشتم و عاشق دخترخاله ام بودم و هستم ولی چيز نميگفت...

رویم نمیشد چندان نگاهش کنم ولی کم کم شجاعت پیدا کردم و یک شب سیر نگاهش کردم و زیبائیهای همسرم را دیدم, شبیه دخترخاله نبود اما زن بود با همه زیبائیهای زنانه اش ...
اما من مغرور، مرد بودم !
مگر میشد اسیرم کند؟ در برابر خیانت من، نه تنها برویم نیاورده بود بلکه سعی میکرد هرچه بیشتر محبت کند.
شبهازودتر و زودتر بخانه می آمدم و كنايه های دوستان را بجان میخریدم و میگفتم : بله رفيق ها من 
مرغك خانم ام هستم.

یک شب که دیگه طاقت ام طاق شده بود، رو به همسرم کردم و گفتم : تو كه مرا كُشتي!!
پس چرا دعوا نمیکنی؟ چرا سرزنشم نمیکنی؟ بجايش برايم محبت میکنی که چرااااا؟

همسرم سرش پائین بود و گفت که حتما کمبودی از طرف من داشتی که بطرف دخترخاله ات رفتي! من سعی کردم که کمبودهای گذشته را جبران کنم ! همین
اشكم آمد و شکستم ...من کجا بودم و او کجا!
بعد از آن شب دیگر سراغ دخترخاله ام نرفته بودم و ازو خبری نداشتم ولی ناخودآگاه اورا با همسرم مقایسه کردم و طلاق او را و.......
همسرم موفق شد از من مردی بسازد که هر قسم است عاشق و در خدمت زن اش است. و از ین که برايش نوكرِ زن بگويند، ناراحت نميشود و افتخار میکند همچین زن توانائیه دارد که آبروی مرد اش را خرید.
(خانمها فرشته هایی هستند که قدرت تغییر هر نوع شرایط و هر نوع انسانی را با عشقشان و بر خوردشان دارند)
 ((از صفحه مکتب اسلام.))

Sunday, July 10, 2016

داستانی از عرفا


میگویند که دو برادر بودند پس از مرگ پدر یکی جای پدر به زرگری نشسته دیگری تا از وسوسه نفس شیطانی به دور ماند از مردم کناره گرفته و غار نشین گردید.
روزی قافله ای از جلو غار گذشته و چون به شهر برادر میرفتند، برادر غارنشین غربالی پر از آب کرده به قافله سالار میدهد تا در شهر به برادرش برساند.
منظورش این بود که از ریاضت و دوری از خلایق به این مقام رسیده که غربال سوراخ سوراخ را پر از آب میتواند کرد بی آنکه بریزد.
چون قافله سالار به شهر و بازار محل کسب برادر میرسد و امانتی را می دهد، برادر آن را نخ بسته و از سقف دکان آویزان میکند و در عوض گلوله آتشی از کوره در آورده میان پنبه گذاشته و به قافله سالار میدهد تا آن را در جواب به برادرش بدهد.
چون برادر غار نشین برادر کاسب خود را کمتر از خود نمی بیند عزم دیدارش کرده و به شهر و دکان وی میرود.
در گوشه دکان چشم به برادر داشت و دید که برادر زرگرش بازوبندی از طلا را روی بازوی لخت زنی امتحان میکند،‌ دیدن این منظره همان و دگرگون شدن حالت نفسانی همان و در همین لحظه آبی که در غربال بود از سوراخ غربال رد شده و از سقف دکان به زمین میریزد. 
چون زرگر این را می بیند میگوید:
ای برادر اگر به دکان نشستی و هنگام کسب و کار و دیدن زنان و لمس آنان آب از غربالت نریخت زاهد میباشی، وگرنه دور از اجتماع و عدم دسترس همه زاهد هستند...

و شعری از استاد سخن سعدی
شنیدم زاهدی در کوهساری
قناعت کرده از مردم به غاری
بدو گفتم چرا در شهر نائی
که از آزار غربت وا رهائی
بگفت آنجا پریرویان نغزند
چو گِل بسیار شد پیلان بلغزند

در اوج قدرت مرد باش

بزغاله ای روی پشت بام بود و به شیری که از پایین عبور می کرد توهین می کرد و ناسزا می گفت. شیر گفت: این تو نیستی که به من ناسزا می گوید، بلکه این جایگاه توست که به من ناسزا می گوید. مبادا بوسیله جایگاهت به دیگران توهین کنی،که تکیه گاهت با گذر زمان سست شده و فرو می پاشد، آنگاه تو می مانی و آنهایی که تحقیرشان کردی. پس در اوج قدرت مرد باش

Thursday, June 30, 2016

محل فروش اخبار کابل

در تمام کابل امروز دو یا سه محل فروش اخبار است و در این سه محل کمتر از پنجاه شماره روزنامه بفروش نمیرسد تنها با خواندن و مطالعه میشود دنیا را به دید دیگر دید . پدر و مادر و پدر کلان و مادر کلان کابل شب ها برای کودکان شان افسانه میخواند کتاب های بیهقی برای کودکان کتاب های قصه را تهیه میکرد و آنها را تشویق به مطالعه میکرد . اما امروز؟


Wednesday, June 29, 2016

رسم و رواج عروسی

در کشور ما عجیب رسم و رواج را ملاحظه میکنم، بطور مثال در محفل خواستگاری که میروی شرط بازی را می بینی:
میگویند که دختر را میدهیم بشرطیکه داماد جوان و مقبول باشد...
به شرطی که ماستر و داکتر باشد...
به شرطی که وظیفه دار باشد...
به شرطی که خانه دار باشد...
به شرطی که از فامیلش جدا باشد...
به شرطی که.... به شرطی که.... به شرطی که...
یک نفر هم نمیگوید : به شرطیکه مسلمان باشد، با اخلاق باشد تاکه حقوق خدا و بنده گانش و حقوق همسرش را پامال نکند !!
همین است که توازن اخلاقی معاشره برقرار نیست...!!
آخر به کی بگویی ؟؟!



در کشور ما عجیب رسم و رواج را ملاحظه میکنم، بطور مثال در محفل خواستگاری که میروی شرط بازی را می بینی:
میگویند که دختر را میدهیم بشرطیکه داماد جوان و مقبول باشد...
به شرطی که ماستر و داکتر باشد...
به شرطی که وظیفه دار باشد...
به شرطی که خانه دار باشد...
به شرطی که از فامیلش جدا باشد...
به شرطی که.... به شرطی که.... به شرطی که...
یک نفر هم نمیگوید : به شرطیکه مسلمان باشد، با اخلاق باشد تاکه حقوق خدا و بنده گانش و حقوق همسرش را پامال نکند !!
همین است که توازن اخلاقی معاشره برقرار نیست...!!
آخر به کی بگویی ؟؟!



به جز الله (ج) به هیچ کس تکیه نکنید

:به جز الله (ج) به هیچ کس تکیه نکنید

هنگامی که برادران یوسف می خواستند او را به چاه بیفکنند، وی خندید. برادرانش تعجب کردند و گفتند: برای چه 
:می خندی؟ یوسف گفت
فراموش نمی کنم روزی را که به شما برادران نیرومندم نظر افکندم و خوشحال شدم و گفتم
کسی که این همه یار و یاور نیرومند دارد از حوادث سخت چه غمی خواهد داشت. روزی به بازوان شما دل بستم، اما اکنون در چنگال شما گرفتارم و به شما پناه می برم، ولی به من پناه نمی دهید
.خدا؛ شما را بر من مسلط ساخت تا بیاموزم که به غیر او حتی برادرانم تکیه نکنم


به جز الله (ج) به هیچ کس تکیه نکنید

:به جز الله (ج) به هیچ کس تکیه نکنید

هنگامی که برادران یوسف می خواستند او را به چاه بیفکنند، وی خندید. برادرانش تعجب کردند و گفتند: برای چه 
:می خندی؟ یوسف گفت
فراموش نمی کنم روزی را که به شما برادران نیرومندم نظر افکندم و خوشحال شدم و گفتم
کسی که این همه یار و یاور نیرومند دارد از حوادث سخت چه غمی خواهد داشت. روزی به بازوان شما دل بستم، اما اکنون در چنگال شما گرفتارم و به شما پناه می برم، ولی به من پناه نمی دهید
.خدا؛ شما را بر من مسلط ساخت تا بیاموزم که به غیر او حتی برادرانم تکیه نکنم


Monday, June 27, 2016

صدقه

ستره محكمه اندازه صدقه فطر را در سال جاری ۶۰ افغانى فی‌نفر تعيين كرده است
مقدار صدقه فطر بر شخص بالغ و نابالغ یکسان می‌باشد.
از ابن‌عمر رضی‌الله عنه روایت است که رسول ‌الله صلی‌الله علیه وسلم دستور داد تا صدقه فطر قبل از نماز عید فطر پرداخت گردد.
(بخاری ۱۵۰۳)




Saturday, June 25, 2016

خواص مهم خربوزه

خواص مهم خربوزه:
خربوزه میوه چاق کننده و پر انرژی است.
خربوزه سرشار از ویتامین هایA ،D وC است.
خربوزه به علت دارا بودن خاصیت ملیّن، برای معالجه قبضیت تجویز می شود.
خربوزه اﻋﺼﺎب را آرام و ﺗﻘﻮﯾﺖ ﻣﯽ ﻧﻤﺎﯾﺪ
خربوزه به هضم غذا کمک می کند.
نوشیدن دم کرده ی پوست خشک شده ی خربوزه ، سنگ مثانه را دفع می کند.
هشدار: خربوزه را نه در سیری بخورید و نه هم در گرسنگی! بلکه بین دو وقت غذایی بخورید.
در خوردن خربوزه اضافه روی و پرخوری نکنید و گرنه برعکس مضر ثابت میشود.
برای معلومات مفید با ما همراه شوید!
صحت برای همه


Friday, June 24, 2016

روستایی که ساکنانش فقط ۳ ساعت روزه می گیرند


روستایی که ساکنانش فقط ۳ ساعت روزه می گیرند

روستای«وکان»در کشور عمان در ارتفاع ۲هزار متری از سطح دریا در دشتی در منطقه «نخل» واقع است و با مسقط پایتخت این کشور ۱۵۰ کیلومتر فاصله دارد.
راه منتهی به این روستا از چندین دشت عبور می کند و رسیدن به آن نیازمند موترهای شاسی بلند است.
با وجود آن که تعداد ساعت های روزه گرفتن در ماه مبارک رمضان در کشورهای عربی امسال بین ۱۴ ساعت و نیم تا ۱۶ ساعت و نیم است اما یک روستای کوچک وجود دارد که ساکنانش فقط ۳ساعت روز می گیرند.
آفتاب در این روستا دقیقا ساعت ۱۱ صبح طلوع و در ساعت ۲ و ۳۰ دقیقه ظهر به افق عمان غروب می کند به عبارتی زمان روز این روستا فقط سه ساعت و نیم است.
.این روستا از اعتدال دما در تابستان و کاهش دما در زمستان برخوردار است


Tuesday, June 21, 2016

آنچه روزه را باطل نمی‌کند

آنچه روزه را باطل نمی‌کند:
۱- فرو بردن آب دهان.
۲- مزه کردن غذا بدون فرو بردن آن.
۳- مسواک و خمیردندان.
۴- اسپری آسم.
۵- عطر و خوشبویی، حتی به صورت بخور.
۶- سرمه.
۷- قطره گوش و چشم.
۸- آزمایش خون. (خونی که به اندازه‌ی آزمایش گرفته شود).
۹- آمپول عضلانی.
۱۰- باقیمانده‌ی غذای سحری در دهان.
۱۱- احتلام (خروج منی درحال خواب).
•┈┈┈┈┈•✿❁✿•┈┈┈┈┈┈•
✅ امید است این مطلب نزد شما متوقف نشود، زیرا که رسول الله ﷺ میفرماید؛ الدال علی الخیر کفاعله(کسی که به کار خوبی راهنمایی کند، مانند انجام دهنده آن کار خوب است.)

The .NET Framework Architecture

Common Language Specification (CLS) Enables cross-language interoperability Common Language Specification describes interoperabili...