Καλώς ορίσατε στο dotNETZone.gr - Σύνδεση | Εγγραφή | Βοήθεια
Pdf
Δημοσιεύτηκε στις Σάββατο, 26 Φεβρουαρίου 2011 6:15 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
Nice F# site, with edited material. More…
Δημοσιεύτηκε στις Παρασκευή, 18 Φεβρουαρίου 2011 11:01 πμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Writing concurrent applications using agents, Tomas Pertricek, Phil Trelford from Skills Matter. More
Δημοσιεύτηκε στις Παρασκευή, 24 Δεκεμβρίου 2010 7:12 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , , ,
Nice intro More
Δημοσιεύτηκε στις Σάββατο, 4 Δεκεμβρίου 2010 11:47 πμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Thanks View or get Downloader
Δημοσιεύτηκε στις Τετάρτη, 3 Νοεμβρίου 2010 12:33 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
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
Δημοσιεύτηκε στις Τρίτη, 2 Νοεμβρίου 2010 8:39 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , ,
And more More
Δημοσιεύτηκε στις Πέμπτη, 28 Οκτωβρίου 2010 11:18 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , ,
ExtensionMethod.NET is a database of C# 3.0, F# and Visual Basic 2008 extension methods. It contains many user-rated extension methods that will expand your code library immediately. More
Δημοσιεύτηκε στις Δευτέρα, 25 Οκτωβρίου 2010 2:08 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Δημοσιεύτηκε στις Πέμπτη, 14 Οκτωβρίου 2010 2:21 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , , ,
Cool article about Attributes every .NET developer should know More
Δημοσιεύτηκε στις Σάββατο, 9 Οκτωβρίου 2010 8:58 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Very nice collection of infographics tools More
Δημοσιεύτηκε στις Σάββατο, 9 Οκτωβρίου 2010 8:12 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , ,
More
Δημοσιεύτηκε στις Τετάρτη, 29 Σεπτεμβρίου 2010 1:31 μμ από napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
http://highscalability.com/blog/2010/9/5/hilarious-video-relational-database-vs-nosql-fanbois.html

Δημοσιεύτηκε στις Κυριακή, 19 Σεπτεμβρίου 2010 1:03 πμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
A simple isNull for string functionality with Active Patterns

1
2
3
4
5
6
7
8
9
10
11
12
13
14
open System

let (|Empty|Null|String|) (s:string) =
if s = null then
Null
elif s.Trim() |> String.IsNullOrEmpty then
Empty
else
String (s.Trim())

let public IsNull (rep: string)
(s:string) =
match s with
| Empty | Null -> rep.ToString()
| String _ -> s

If someone knows why the underlined ToString() is needed I would appreciate it

Δημοσιεύτηκε στις Πέμπτη, 29 Ιουλίου 2010 2:49 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
A very interesting entry to AssemblyInfo that I found is InternalsVisibleTo. If added to a project makes visible internal classes & members to a calling assembly
[assembly: InternalsVisibleTo("MyProject.Tests.Unit")]

Δημοσιεύτηκε στις Σάββατο, 24 Ιουλίου 2010 5:46 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
First, I would like to thank N.Palladinos for his various help on F#. F# is a new language officially hosted in VS 2010. Worth mentioning is that even if someone does not choose to write in that language, the knowledge may make him a better programmer. Very good sources for F# are:
Most people recommend Chris Smith's Programming F# for a book. I have read Don Syme's Expert F# which is very good but requires some experience in the first place.

Δημοσιεύτηκε στις Σάββατο, 24 Ιουλίου 2010 3:17 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Useful with some update in source. More

Δημοσιεύτηκε στις Σάββατο, 12 Ιουνίου 2010 6:45 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
I have started working on VS 2010 recently. I have created a website and I found the working environment is very clear and helpful. The new font family and some black vs color scheme, with the default indicators of the environment and default project templates are time-saving. The responsiveness is significantly faster. I encourage to install any power tools available.

Δημοσιεύτηκε στις Σάββατο, 12 Ιουνίου 2010 3:52 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
There is a need to find the height of a binary tree. Meaning beginning from root (0),  the maximum hopes to "highest" leaf.
Having the definition:
 data Tree a = Node a (Tree a) (Tree a) | Empty
showing a Tree could be a node with two (node or empty ) or empty, the following recursive algorithm takes six lines of code in Haskell:
 height tree = tall tree 0
where tall node h = case node of
Empty -> h
Node _ left right -> if l > r then l else r
where l = tall left (h + 1)
r = tall right (h +1)
After, I found that:
 treeHeight :: Tree a -> Int
treeHeight Empty = 0
treeHeight (Node _ t1 t2) = 1 + max (treeHeight t1) (treeHeight t2)

Δημοσιεύτηκε στις Παρασκευή, 9 Απριλίου 2010 10:51 πμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Microsoft and Amazon Sign Patent-Sharing Deal.More

Δημοσιεύτηκε στις Τρίτη, 23 Φεβρουαρίου 2010 11:23 πμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
Oracle merge predictions for Open Source . More

Δημοσιεύτηκε στις Κυριακή, 31 Ιανουαρίου 2010 2:52 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
  Technics and policy about the back button. more

Δημοσιεύτηκε στις Κυριακή, 27 Δεκεμβρίου 2009 3:23 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
  At the latest event an issue was raised about dependency at runtime. more

Δημοσιεύτηκε στις Δευτέρα, 21 Δεκεμβρίου 2009 9:53 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: ,
The CodePlex Foundation today announced the creation of the first Foundation project gallery, the ASP.NET Open Source Gallery, and the acceptance of the first project into that gallery, the ASP.NET Ajax Library project. more


Δημοσιεύτηκε στις Κυριακή, 22 Νοεμβρίου 2009 3:32 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία: , ,
Intriguing article about EA policy :)


Δημοσιεύτηκε στις Παρασκευή, 30 Οκτωβρίου 2009 9:02 μμ από το μέλος napoleon | 0 σχόλια
Δημοσίευση στην κατηγορία:
Περισσότερες Δημοσιεύσεις « Προηγούμενη - Επόμενη »