Publications

Recent Posts

  • Using C# anonymous types to assert complex results in your unit tests

    Dror Helper    Jun 25, 2019

    Does this sounds familiar to you: You come to work early(ish) in the morning – ready to apply a new technology you’ve just learnt about – just to find out that you can’t. Your frustration grows as you understand that in order to use this “new and shiny” some adjustments must be made and what ... Continue reading Using C#... Read more

  • Connect(); 2017 recap event – Recordings

    Tamir Dresher    Jan 11, 2018

    Last month i organized a small local event for the Israeli .NET community where we talked about all the latest announcement and news in the .NET world. The recordings from the event are now live (courtesy of Alon Fliess). Since this was a local event in Israel, all the talks were in Hebrew Connect(); 2017 [...] Read more

  • Boost your productivity with Visual Studio’s DebuggerAttributes

    OzCode Blog    Dec 18, 2017

    This post originally appeared on Moaid Codes   Visual Studio is a great IDE with a great Debugger. It currently provides one of the best debugging experiences out there. The extensibility and the customizability of Visual Studio makes it even better. For example, it provides Attributes for customizing the display of objects during debugging sessions. [...] The post Boost... Read more

  • Multitenant Software Architecture on Channel 9

    Eran Stiller    Dec 06, 2017

    In continuation to my last post, I noticed that I didn’t blog about speaking at NDC Oslo this last June. As part of my speaking engagement, I had the opportunity to [...] The post Multitenant Software Architecture on Channel 9 appeared first on Stiller on Software. Read more

  • *N Async, the next generation

    Eli Arbel    Aug 10, 2016

    In the previous installment, I discussed how to use iterators (yield return) to create async methods. This time, we’re about to do almost the opposite – use async methods to implement async iterators. Read more

  • טרנד טכנולוגי או צעד חכם מתבקש?

    Alon Fliess    Mar 08, 2016

    מי שמכיר אותי יודע שאני תמיד בעד טכנולוגיות חדשות, כאלה שפתרו את הבעיות הקודמות שלנו ויצרו בעיות חדשות  אבל... במקרים רבים אנו מקבלים החלטות טכנולוגיות על סמך מה שכולם עושים ואומרים ולאו דווקא על מה שמתאים לנו. כמובן שלא מדובר בהחלטה שמנותקת לחלוטין מהדרישות של האפליקציה, אלא שהטרנד מטה את הכף ולא ההיגיון הצרוף. בסופו [...] Read more

  • Microsoft acquiring Xamarin. My take.

    Ariel Ben-Horesh    Feb 27, 2016

    A few days ago, my twitter feed was ablaze, Microsoft decided to finally acquire Xamarin. I've even received a few mentions: I've asked myself, am I really pleased by this Microsoft move? Currently I've mixed feelings, it's all subject to change since we don't really know the plans that will be set in motion (I've [...] Read more

  • When Not-True Doesn’t Equal False

    Avner Shahar-Kashtan    Feb 21, 2016

    There is a strangely common, reoccurring bug I’ve seen return, again and again, in most projects I’ve worked on in recent years. I call it the “Not True != False” bug, and it crops up, usually, when passing query parameters to a search service of some sort, when you want to search for entities who match a certain condition, and... Read more

  • Slides from IDNDUG – July 2015 – Cross-Platform Development with VS2015 and .NET Core

    Kobi Moraz    Jul 15, 2015

    Thanks for all that attended my session at IDNDUG on Cross-Platform Development with VS2015 and .NET Core. Below are links to the session slides, resources and credits. Slides Resources and Credits​ Apache Cordova​ Getting Started with Visual Studio Tools for Apache Cordova​ https://www.visualstudio.com/en-US/explore/cordova-vs​ https://github.com/Microsoft/cordova-samples​ Visual Studio 2015​ https://www.visualstudio.com/en-us/news/feature-timeline-vs​ .NET Core 5​ https://github.com/dotnet/coreclr https://github.com/aspnet/home Sessions​ Taking [...] Read more

  • Debug WPF Design Time Errors

    Alex Suprun    Apr 13, 2015

    In one of my posts I told about WPF Visual Designer and how to display design time data in MVVM projects. I hope you had a chance to try it and work with this nice WPF feature because it is one of the most time-saving features in WPF development. If you still didn’t – I suggest you start using ...... Read more

  • The Beginner’s Guide to Exception Handling with the TPL

    Amir Zuker    Dec 18, 2013

    I published a post in OzCode’s blog that describes the aspects of exception handling with the TPL.You can follow this link if you like to enjoy the read. Read more

  • פיתוח אפליקציית Windows Phone 8 בעזרת PhoneGap/Cordova

    Tomer Shamam    Dec 15, 2013

    פיתוח אפליקציית Windows Phone 8 בעזרת PhoneGap/Cordova החלטתם להיכנס לעולם המובייל ולפתח אפליקציה מגניבה שאולי גם תכניס לכם קצת כסף. על הדרך כמובן שעשיתם מחקר קטן באינטרנט כדי לבדוק איזו פלטפורמה הכי מובילה כי ממש לא בא לכם לכתוב את אותה האפליקציה שלוש או ארבע פעמים מחדש, כל פלטפורמה עם הכלים שלה. אבל במקביל גם [...] Read more

  • So I Have a Blog Now…

    Yaniv Yosifovich    Nov 19, 2013

    Yes, It’s official – I have a blog now. I’ve been putting this off for a while now, even avoiding it to tell the truth. But everyone’s got a blog these days, so why not me? On this blog I plan to give my 2 cents on software development, technology and other geek-related topics. A [...] Read more

  • Server-Side support for HTML5 History API

    Schmulik Raskin    Sep 12, 2012

    In traditional Single-Page Applications for the web, routing was accomplished by updating the ‘hash’ section of the URL, using the ‘hashbang’ method. So for example, if my route was setup as '/Feature/ComponentId', the resulting URL would look something like 'http://www.example.com/#!/Feature/ComponentId'. This was great, because all browsers support updating the ‘hash’ without causing a full-page refresh, [...] Read more