Ohad's Blog

Lets talk about .net !

Mirror at:
weblogs.asp.net/israelio

News

         Ohad Israeli's Facebook profile

Grab this badge here!

Browse by Tags

All Tags » TECH (RSS)
1st Public Meeting of the IASA Israeli Chapter
The first public meeting of the International Association of Software Architects Israeli Chapter will take place on this Thursday ! The meeting's goal is to introduce IASA and its offerings, and to initiate the Israeli chapter of IASA. During the meeting we will discuss the objectives and roadmap of the IASA Israeli chapter, and how it can advance the Software Architecture profession in Israel. Following the introduction we will host an interesting presentation “ Architecting for the Cloud ”...
IASA Israel Chapter – First Meeting
In this event we will present IASA , the International Association of Software Architects. We will discuss IASA Israel goals and roadmap. Flowing the introduction we will host an interesting presentation “Architecting for the Cloud” given by Danny Cohen. The IASA group is not targeted to specific a implementation technology thus registration is opened for .NET & Java software architects. Please check the Website for more details and a map of the meeting location. When: March 18th 2010, Thursday...
ATL.NET Tools – The Videos
About a week ago I've participated in the first meeting of ALT.NET Tools session in Israel, the session was pure fun, we grouped together a bunch of geeks in one conference room to speak about tooling that can make developer’s live easier. We had several interesting sessions over the meeting with lots of cool tools… some common ones and some are products of newly startup companies. By the middle of the meeting we had lots of pizzas in complementary from our host Delver or by its new name Sears...
Explanation of Raid levels
While reordering some of my old hard drives I found this Image which I do not recall did where I get it from… I t is funny little one explaining the basics about Raid levels. Enjoy :-)
Silverlight 4 Training @ CH9
Channel 9 just published a Silverlight 4 Training which includes hands-on-labs, a video and a whitepaper designed to help you learn about the new features in Silverlight 4 ! The training is focused on three major areas: Enabling Business Application Development Empowering Richer Experiences Moving Beyond the Browser Silverlight 4 now includes cool features like Printing, WebCam and Microphone support, custom right-click, rich text, HTML support and access to local files with trusted applications...
Microsoft PDC 09 – The Videos
PDC videos are starting to show up… keep an eye on http://microsoftpdc.com/Videos The quality of the videos type WMVHIGH is very good although the files might consume large amount of storage for ones who will try to download them all. Let the HOME PDC BEGIN ! Any chance to send home PDC attendees also a new tablet ?
בעל הבית השתגע – Acer Aspite 1420P
בכנס Microsoft PDC בלוס אנג’לס חילקו לכל המשתתפים Tablet PC של ACER בעל המפרט הבא: Operating system • Genuine Windows ® 7 Ultimate 64-bit Platform • Intel ® Core ™ 2 Duo U2300 processor • Mobile Intel ® GS45 Express Chipset System memory • Dual-Channel SDRAM support •2 GB of DDR3 1066 MHz memory, upgradeable to 8 GB using two soDIMM modules Display • 11.6" HD 1366 x 768 • Convertible multi-touch display Graphics • Mobile Intel ® GS45 Express Chipset Communication • Integrated Acer Crystal Eye...
Ray speaks live from PDC 09 Conf @ LA
Cool ! – live streaming ! http://microsoftpdc.com/
PDC 09 Keynotes live from LA (Broadcasting NOW !)
Microsoft PDC 09 keynotes start broadcasting from LA in 8min from now ! Watch them over here
Whats new in CSharp 4.0 and Visual Studio 2010
The Ness Tziona Usergroup is celebrating 1 year of work on Wednesday the 18th ! During the upcoming meeting we will have a session with Pavel about what is new in C# 4.0 ad Visual Studio 2010 – this session will be similar to the session that was delivered in Microsoft some time ago with some tweaks here and there, the session will also include a birthday party to group with lots of surprises. You are not required to bring a present in order to take a part in the birthday part :-) You are welcome...
כנס מיקרוסופט על היעילות החדשה בנמל תל אביב
בהמשך לפוסטים של גדי בנושא הכנס להלן החויה שלי מהכנס. ( פוסט1 פוסט2 פוסט3 ) יצאתי מהבית בסביבות 7:30 (הבית בשוהם… לייד נתב”ג) ושמתי פעמי את נמל ת”א לכנס שאמור היה להתחיל ב-9:00. לאחר 69 דקות של נסיעה מצאתי את עצמי מרחק של 15 קמ מנקודת ההתחלה קרי במחלף גנות. זו היתה נקודת ההחלטה בה החלטתי שהספיקו לי הפקקים להיום ופניתי דרומה לכיוון העבודה כאשר כולי תקווה כי אצליח לראות את שידור הכנס באינטרנט (הרי היתה הבטחה שכזו באתר) ובכן חברים, אנו אולי מתקרבים ל-2010 אך איכות השידות קרי Streaming היתה קרובה יותר...
What’s new in Visual C# 4.0 ? – Part 3 - Dynamic ExpendoObject
This is the third post of what’s new in Visual Studio C# 4.0. At the former posts we covered optional parameters , Named Parameters at this post we will cover C# Dynamics and ExpandoObject dynamic & ExpendoObject C# 1.0 introduced us to the managed world (based on Microsoft perception) C# 2.0 brought us Genetic types. C# 3.0 introduced us to new concept – LINQ C# 4.0 highlight is all about Dynamic Types Say for example that you have the need to create an object on the spot and use it in a local...
Free training on Visual Studio 2010 and C# 4.0
Did you know that you can train yourself for what’s new in Visual Studio 2010 and C# 4.0 (also VB) ? The Microsoft Visual Studio 2010 and .NET Framework 4 Training Kit - October Preview is available for more than a week now and it includes lots of slide decks, demos and labs covering the following topics: Whats New In the .NET Framework 4 Whats New In Visual Studio 2010 Video: Downloading And Installing Visual Studio 2010 Beta 2 Demo: Hello Visual Studio 2010 Common Language Runtime Demo: System...
What's new in Visual C# 4.0 ? - Part 2 - Names Parameters
This is the second post of what’s new in Visual Studio C# 4.0. At the former post we reviewed the feature of optional parameters at this post we will concentrate on Named Parameters. Named Parameters Lets assume you are writing the following procedure : public static void SaySomething( string name, string msg) { Console .WriteLine( string .Format( "Hi {0} !\n{1}" , name,msg)); } When you want to call it from your code you are using something like: Code Snippet static void Main( string ...
What's new in Visual C# 4.0 ? - Part 1 - Optional parameters
This is the first blog from a series of blog post which I'm planning to do on whet’s new in Visual C# 4.0 Optional parameters Optional parameters is a new feature in C# 4.0 which will let you set a default value for an argument of a method. In case that the collie of the method will omit the argument the default value will take its place. So instead of writing the following code: class Program { static void Main( string [] args) { SaySomething(); SaySomething( "Ohad" ); Console .ReadLine...
More Posts Next page »