Καλώς ορίσατε στο dotNETZone.gr - Σύνδεση | Εγγραφή | Βοήθεια

 

Αρχική σελίδα Ιστολόγια Συζητήσεις Εκθέσεις Φωτογραφιών Αρχειοθήκες

Πρόσφατες Δημοσιεύσεις

  • NuGet and WebMatrix Helpers

    Ίσως έχετε παρατηρήσει ότι τον τελευταίο καιρό ασχολούμαι αρκετά με το άλλο μου Site-Project ( ITBully ), αυτό βέβαια σε καμία περίπτωση δεν σημαίνει ότι έχω αφήσει αυτό το Blog. Απλά αποφάσισα εκεί να ανεβάζω όλα τα Αγγλικά μου άρθρα...
    19-11-2010, 18:56 από George Chatzimanolis Blog στο George Chatzimanolis Blog
    Δημοσίευση στην κατηγορία:
  • Converting Lambda expressions at runtime

    DevExpress XPO as all modern ORM supports object querying using linq and lamda expressions. A sample query can be written as             var xpQuery = new XPQuery < Customer >( Session . DefaultSession );             IQueryable < Customer > customers = xpQuery. Where (customer => customer. Age == 25);   From the above query we can get a list of customers that are 25  years old . As you can see the code is very simple. The problem   When working with modularized applications you may be in context that you have access to the Customer type  only at runtime or you may want to apply that query to different object types that all have an Age property. How that can be done? 1st attempt Lets register the customer to our module and use reflection to create the XPQuery.             ModuleXXX moduleXxx = new ModuleXXX ();            ...
    16-11-2010, 04:01 από A.Bekiaris's .Net / Xaf Blog στο A. Bekiaris's Blog
    Δημοσίευση στην κατηγορία: , ,
  • The new American Dream

    Wow... I was watching CNN this morning as I was having breakfast and the news item that they were discussing was this one. Of course the way the item is presented on their web site isn't half as impressive as... Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία: ,
  • ITBully Podcast–Episode 2

    Τελικά καταφέραμε να τηρήσουμε την υπόσχεση μας και από χθες το απόγευμα υπάρχει διαθέσιμο προς ακρόαση το 2ο επεισόδιο του ITBully Podcast . Σε αυτό το επεισόδιο μιλήσαμε για διάφορα θέματα που νομίζω ότι αφορούν...
    15-11-2010, 11:39 από George Chatzimanolis Blog στο George Chatzimanolis Blog
    Δημοσίευση στην κατηγορία: ,
  • Hughes's list in F#

    Ορίζοντας τις Combine και Zero σε ένα Computation expression μπορούμε να έχουμε Monoid comprehensions. Πρόσφατα παρατήρησα ότι το Monadic Append στα γνωστά (Array, List, Seq) είναι σχετικά αργό. #time [ for i in {1..1000000} do yield i * 2; yield i * 3; yield i * 4; yield i * 5 ] [ | for i in {1..1000000} do yield i * 2; yield i * 3; yield i * 4; yield i * 5 | ] seq { for i in {1..1000000} do yield i * 2; yield i * 3; yield i * 4; yield i * 5 } |> Seq.iter ignore Μια τεχνική για να έχουμε γρήγορο list append είναι να αξιοποιήσουμε μια παλαιά ιδέα από έναν guru . type FuncList<'a> = 'a list -> 'a list type FuncListBuilder() = member self.Combine (first : FuncList<'a>, second : FuncList<'a>) : FuncList<'a> = (first << second) member self.Zero() : FuncList<'a> = id member self.Yield (value : 'a) : FuncList<'a> = fun tail -> value :: tail member self.YieldFrom (value : FuncList<'a>) : FuncList<'a> = value member self.For (list : FuncList<'a>, f :...
    13-11-2010, 20:24 από το μέλος PALLADIN στο Thoughts and Code
  • Ζωντανό, παγκόσμιο event για το μέλλον και για τα best practices του Silverlight

    Θα ήθελα να ενημερώσω ότι υπάρχει ένα πολύ δυνατό παγκόσμιο event  για silverlight στις 2 Δεκεμβρίου, 2010 το οποίο θα έχει live video steaming. Θα μιλήσει ο Scott Guthrie και άλλος κόσμος κατευθείαν από τα κεντρικά. Η Εγγραφή είναι free . Περισσότερες πληροφορίες, μπορείτε να βρείτε στο επίσημο site a2a_linkname="Ζωντανό, παγκόσμιο event για το μέλλον και για τα best practices του Silverlight";a2a_linkurl="http://www.studentguru.gr/blogs/grnemo/archive/2010/11/12/event-best-practices-silverlight.aspx"; Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία:
  • More tips on writing C macros

    If there is one thing I don't like, that's whining. The second thing I don't like is quite naturally... whiners. And guess what? Macros in C/C++ cause a LOT of whining. I can find on the web a myriad of... Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία:
  • ASP.NET MVC 3 Release Candidate

    Η Release Candidate της ASP.NET MVC 3 μόλις κυκλοφόρησε και πλέον η Razor View Engine υποστηρίζεται πλήρως. Μπορείτε να την εγκαταστήσετε χρησιμοποιώντας το νέο WebPI v3 beta . Είμαι πολύ ενθουσιασμένος γιατί εδώ και καιρό περίμενα να χρησιμοποιήσω την Razor View Engine έχοντας Intellisense, κάτι που πλεόν είναι δυνατόν! Διαβάστε περισσότερα »...
    09-11-2010, 16:50 από George Chatzimanolis Blog στο George Chatzimanolis Blog
    Δημοσίευση στην κατηγορία:
  • ITBully Podcast

    Χθες το βράδυ ηχογραφήσαμε και δημοσιεύσαμε, μαζί με τον Λευτέρη Καραφίλη , το πρώτο μας Podcast ( ITBully Podcast #1 ). Η αλήθεια είναι ότι την ιδέα την είχαμε εδώ και αρκετό καιρό όμως Διαβάστε περισσότερα »...
    08-11-2010, 18:20 από George Chatzimanolis Blog στο George Chatzimanolis Blog
    Δημοσίευση στην κατηγορία: , ,
  • I am in Teched2010 - Berlin

    Another year in Berlin! Another chance to learn great things on Microsoft Technologies.   Διαβάστε περισσότερα »...
  • Get a job at Microsoft as a Software Developer!

    Όπως και πέρισυ, έτσι και φέτος θα ήθελα να σας ενημερώσω για θέσεις εργασίας στα κεντρικά της Microsoft στο Redmond, Seattle. Αξίζει να σημειωθεί ότι διαβάζοντας το περσινό μου blog post ο φίλος Μανόλης Πλατάκης από το τμήμα Πληροφορικής και Τηλεπικοινωνιών του Πανεπιστημίου Αθηνών έστειλε βιογραφικό και μετά από διάφορες συνεντεύξεις τα κατάφερε! Πλέον εργάζεται ως Software Development Engineer in Test στο Development Center της Microsoft στη Νορβηγία . Οι αγγελίες, αυτούσιες όπως μου ήρθανε Microsoft Corporation is coming to Europe to interview for our Software Development Full Time and Internship Positions!!! Redmond, Washington, USA (DEADLINE FOR CV SUBMISSION IS November 30, 2010) Software Development Engineer (SDE) Work at the Core of Every Product We Διαβάστε περισσότερα »...
  • XML in kernel mode?

    I hate XML :-) It's a good thing really,... Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία: ,
  • Functional Programming Reading List

    During the last months, I started to collect some readings (academic publications and books) that one should check out, as he learns functional programming. These are life changing readings (other pretty fundamendal, other very specific), and can be studied in a time frame of several months or more, so unless you are a doctoral researcher on the field of programming languages, take your time and enjoy. [ 1] J. V. Eijck and C. Unger, Computational Semantics with Functional Programming, 1st ed. Cambridge University Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία: , ,
  • Right tool for the job

    Διάβασα πρόσφατα στο Engadget για τα 1.5 Gpixel images που έβγαλε η GigaPan στο World Series και άρχισα να παίζω με το zoom. Δεν μπορώ να πω ότι ενθουσιάστηκα καθώς το εργαλείο κάνει πολλά “σπασίματα”. Αλλά να ήταν μόνο αυτό… Βάζοντας το zoom στο τέρμα, μπορεί να δει κανείς πολύ ωραία εφέ όπως αποκεφαλισμένους ή δικέφαλους ανθρώπους! Παιδιά, καλή η προσπάθεια αλλά γι αυτή τη δουλειά υπάρχει ήδη το κατάλληλο εργαλείο. Deep Zoom λέγεται… Κάντε και μόνοι σας τη σύγκριση: http://70gigapixel.cloudapp.net/...
    03-11-2010, 18:39 από το μέλος KelMan στο Manos Kelaiditis' Weblog
    Δημοσίευση στην κατηγορία:
  • DevExpress interviewed eXpand framework

    Rachel Hawley from DevExoress interviewed me over expand some days ago. You can read more at her blog eXpand: An open source framework built with XAF Διαβάστε περισσότερα »...
    03-11-2010, 13:11 από A.Bekiaris's .Net / Xaf Blog στο A. Bekiaris's Blog
    Δημοσίευση στην κατηγορία:
  • All PDC10 Sessions

    Thanks View or get Downloader...
    03-11-2010, 12:33 από count zero στο count zero
    Δημοσίευση στην κατηγορία: ,
  • Home Entertainment and The American Dream

    I just read this interesting and informative article on Wireless HD. I will quote one particular paragraph: It does not address the desire by customers however to have the ultra-thin HDTV sit up on the wall with the set top... Διαβάστε περισσότερα »...
  • FREE Code Sample Request Service from Microsoft All-In-One Code Framework

    Today, the Microsoft All-In-One Code Framework team announces a NEW, FREE code sample request service. This service is a proactive way for our developer community to obtain code samples for certain programming tasks directly from Microsoft. More...
    02-11-2010, 20:39 από count zero στο count zero
    Δημοσίευση στην κατηγορία: , ,
  • Silverlight vs HTML 5

    Χαμός τις τελευταίες μέρες με το τι είπε ο Muglia και ο ένας και ο άλλος για το τι μέλλει γενέσθαι με το Silverlight. To HTML 5 είναι πολύ της μόδας και όλοι έχουν βρει την ευκαιρία να κάνουν προβλέψεις. Η δική μου ανάγνωση λέει τα εξής: Όταν το Silverlight βγήκε αρχικά, έπρεπε να καλύψει σε πολύ σύντομο χρονικό διάστημα ένα κενό για το οποίο η Microsoft δεν είχε προσφέρει ποτέ κάτι ανάλογο. Οι πρώτες εκδόσεις είχαν αρκετές ελλείψεις ωστόσο με την έκδοση 3 μπορούσε κανείς να πει ότι κάτι γίνεται και πλέον με την έκδοση 4 θεωρείται μια ώριμη τεχνολογία. Γι αυτό και μέχρι την έκδοση 4 βλέπαμε να βγαίνουν οι νέες εκδόσεις πολύ γρήγορα ενώ πλέον η πλατφόρμα έχει σταθεροποιηθεί. Το ότι δεν είδαμε beta της έκδοσης 5 στην PDC δεν σημαίνει ότι ως τεχνολογία εγκαταλείπεται. Το HTML 5 έχει πολυυυύ δρόμο ακόμα μέχρι να είναι έτοιμο για να βγει στην παραγωγή. Ακόμα και αν βγει πολύ γρηγορότερα απ’ όσο προτείνει το W3C (μιλάμε για το 2022), ο κόσμος θα αργήσει να το υιοθετήσει πλήρως καθώς θα πρέπει για λόγους συμβατότητας...
    01-11-2010, 20:21 από το μέλος KelMan στο Manos Kelaiditis' Weblog
    Δημοσίευση στην κατηγορία: ,
  • Runtime Orphaned Collections

    eXpand already provided support for various runtime member scenarios such as Calculated properties at runtime—TIMES 4 Dynamic Types with WorldCreator source code is out In the post I am going to speak about our latest addition which is support for runtime orphaned collections. Using Model Editor As you see in the image bellow you only have to create a new IModelRuntimeOrphanedColection set CollectionType attribute (1) and filter the collection by using the criteria (2). You do not have to set the Type attribute cause it is going to be filled automatically. Although the Model Editor approach with a combination of the ModelDifference module can provide great flexibility such as defining Runtime Collections for a set of Roles or Users has a drawback. It does not Διαβάστε περισσότερα »...
    01-11-2010, 04:21 από A.Bekiaris's .Net / Xaf Blog στο A. Bekiaris's Blog
    Δημοσίευση στην κατηγορία:
  • Show must go on...

    That was a famous song from one of the super-bands of all times, Queen, but it's application is quite wide. In this case it's the Show Of Terror(ism) that must go on... Give me a break guys, just give me... Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία: ,
  • Target Disk Mode

    Hi, Anyone who knows me knows that I am a FireWire guy, still I just found out about a super cool feature that most Macs have: Target Disk Mode Simple and efficient, can be a real time-saver when you need... Διαβάστε περισσότερα »...
  • Download Free ebook: Programming Windows Phone 7, by Charles Petzold

    And more More...
    28-10-2010, 23:18 από count zero στο count zero
    Δημοσίευση στην κατηγορία: , ,
  • Code Generation with T4 Templates – A must have for developers

    T4 Templates files have a .tt extension and are the input to VS2010’s code generation engine for automatically generating text files with all sorts of content (C# code, SQL Commands, XAML, HTML, XML etc). In this post, we will briefly see how we can create and use them and examine some very useful scenarios on situations where they may come in handy. Before starting with the tutorial it is recommended that you download the T4 Editor . It provides syntax highlighting when editing a .tt file from within Διαβάστε περισσότερα »...
    Δημοσίευση στην κατηγορία:
  • Controlling DevExpress Xtratreelist control

    Keeping our promises eXpand team is happy to announce more control over the DevExpress XtraTreelist. We have use eXpand dynamic model creation feature to map all options of the XtraTreelist control to the model. The process used is very similar to the one used for Controlling DevExpress XtraGrid Control at runtime Controlling DevExpress AspxGridControl at runtime Controlling DevExpress XtraGrid Part-3 (The Columns) and we renew our promise to map more controls in the future versions   Bonus Feature Applying the familiar techniques of the Conditional Appearance module is now possible for a TreeListEditor Both features above require to change the Default EditorType to Xpand.ExpressApp.TreeListEditors.Win.ListEditors.XpandTreeListEditor as shown in the imag Διαβάστε περισσότερα »...
    26-10-2010, 07:41 από A.Bekiaris's .Net / Xaf Blog στο A. Bekiaris's Blog
    Δημοσίευση στην κατηγορία:
Περισσότερες Δημοσιεύσεις « Προηγούμενη - Επόμενη »
Με χρήση του Community Server (Commercial Edition), από την Telligent Systems