Posts

Showing posts from 2015

50 Online Learning and Free Courses Websites

Image
Here about 50 sites for online learning free courses 1. Alison: http://www.alison.com/ 2. Academic Earth: http://academicearth.org/ 3. Coursera: http://www.coursera.org/ 4. Code: http://code.org/ 5. Codecademy: http://www.codecademy.com/ 6. Canvas: https://www.canvas.net/ 7. CK12: http://www.ck12.org/student/ 8. Do Awesome Things: http://goo.gl/OovNyK 9. Education Portal: http://education-portal.com/ 10. Edx: https://www.edx.org/ 11. Future Learn: https://www.futurelearn.com/ 12. FB Advertising: http://todmaffin.com/summerschool 13. FloQQ: http://www.floqq.com/en/ 14. Class Central:  https://www.class-central.com/ 15. HubSpot: http://www.hubspot.com/ 16. Khan Academy: https://www.khanacademy.org/ 17. LTB: http://www.learntobe.org/ 18. Mooctivity: http://www.mooctivity.com/ 19. MIT: http://ocw.mit.edu/index.htm 20. MRUniversity: http://mruniversity.com/ 21. MangoDB: http://www.mongodb.com/ 22. My Open Course: http://www.myopencourses.com/ 23. MOOC Fellowship

ومن الحب ما قتل

أخبرتهم أنى أحبك فاستطرفوا الخبر ******* قالوا أيعشق عاقل حين العواصف سيل المطر؟؟؟ ******* قالوا أيترك ظامئ قطر الندى شاربا كدر النهر ؟؟؟ ******* حزرونى .... مجنونة محبوبتك .... وسقتك مجنون الفكر ******* كالطقس فى احوالها ومن النوادر تستقر ******* كالثلج تبدو ساعة ... وساعة كلهيب مستعر ******* مهر جامح محبوبتك ..... فخذ الحذر ******* قلت لا .... فحبيبتى شمس النهار وهى بالليل القمر ******* وهى ماء الندى فوق أغصان الزهر ******* حديثها همس كحفيف أوراق الشجر ******* متسرعة .... متقلبة.... وهذا من طبع البشر ******* احبها مجنونة .... ومن ذا الذى يعشق حجر ؟؟؟ ******* احبها بكل حال ...... فهى القضاء وهى القدر من أشعار الشاعر اللى معرفش اسمه بالرغم من انى حافظ القصيدة من حوالى 20 سنة

مين اللى ميحبش فاطمة

بين غربتك فى ديار أهلك وغربتك فى بلاد الله * * * * لو ضى قنديل زهزهلك مش ترمى كله وتجرى وراه * * * * ياهل ترى يا نور يابعيد انت بصحيح ولا انت سراب * * * * وهعيش معاك فى الضى سعيد ولا غريب ما بين أغراب من أشعار : سيد حجاب

How to handle actions and views names in my ASP.NET MVC application?

Image
I have an ASP.NET MVC applications and i don't want to explicitly write the actions or the views names like this : return RedirectToAction("Index"); or return View("Home"); what is the best practice for handling those strings? There is a T4 based approach to creating ASP.NET MVC strongly typed helpers. T4 Template Source on Stackoverflow

Clone a Generic List in C#

I have a generic list of objects in C#, and wish to clone the list. The items within the list are cloneable, but there doesn't seem to be an option to do  list.Clone() Is there an easy way around this? You can use an extension method. static class Extensions { public static IList < T > Clone < T >( this IList < T > listToClone ) where T : ICloneable { return listToClone . Select ( item => ( T ) item . Clone ()). ToList (); } } Source on StackOverFlow