Se qualcuno ha il proprio XP in italiano ;-) è disponibile l'SP2.
Qui
Lo stile di vita dei single è meno sano a causa dello stress e della mancanza di un punto di riferimento saldo ...
Le risate che mi sto facendo pensando a quando uno dei boss di Devleap leggerà queste righe...
Intanto io posso confermare di essere meno stressato...
Simon Guest ha pubblicato la sua classifica "Top Ten Tips for Web Services Interoperability".
Qui
Microsoft .NET Framework 1.1 Service Pack 1 - qui
Microsoft .NET Framework 1.0 Service Pack 3 - qui
Dal blog di Marco Bellinaso, un interessantissimo HttpModule 100% free (completo di codice sorgente C#) per combattere l'annoso problema dello spamming sulle pagine web. Questo modulo effettua un encoding/decoding
dei link di tipo "mailto:", senza alcun intervento sul codice; basta semplicemente includere il modulo Http nel proprio web.config. Davvero un ottimo tool, è possibile scaricarlo da qui.
Dal blog di Maurizio Tammacco
This white paper describes the methods used to deploy Windows Firewall settings in a managed environment.
Downolad qui
Mi sembrava interessante e penso possa essere utile (e anche per non perderlo):
VCARD: http://blogs.geekdojo.net/ryan/archive/2004/04/28/1797.aspx
VCALENDAR: http://blogs.geekdojo.net/ryan/archive/2004/04/28/1798.aspx
I use them this way:
Integrate a Handler in your web.config
<httpHandlers>
<add verb="*" path="*.vcf" type="xxx.VCard.VcfHandler, xxx" />
<httpHandlers>
namespace xxx.VCard
{
public class VcfHandler: IHttpHandler
{
#region IHttpHandler Member
public void ProcessRequest(HttpContext context)
{
VCard vcard = new VCard();
vcard.FirstName="FirstName";
vcard.LastName="LastName";
...
context.Response.ContentType="text/x-vcard";
vcard.Generate(context.Response.OutputStream);
}
public bool IsReusable
{
get { return false;}
}
#endregion
}
Da questa notte è online la nuova versione del sito di UgiDotNet, sito dell'User Group .Net italiano.
Gli URL sono:
http://www.ugidotnet.org
http://mobile.ugidotnet.org
http://blogs.ugidotnet.org
http://webservices.ugidotnet.org
Complimenti e grazie a Andrea
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpcondeployingcommonlanguageruntimeapplicationusingcabfiles.asp
Esistono due vie per caricare assemblies da files cab:
1. Assembly.LoadFrom
You can give the URL of the cab file to Assembly.LoadFrom. For example,
Assembly.LoadFrom("http://myserver/myasm.cab");
2. Utilizzare app.config
Ad esempio:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="myasm" culture = "neutral" publicKeyToken="0123456789abcdef "/>
<codeBase version="1.0.0.0" href="http://myserver/myasm.cab"/> </dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
...
When we locate the cab file, we extract them to a temporary directory. The temporary directory becomes the application base now and we will probe the desired assembly in the temporary directory. We then copy the assembly to download cache, and remove the temporary directory we created. The final assembly location you see from Assembly.Location will be in download cache directory.
There are subtle difference in using Assembly.LoadFrom and codebase hint.
In Assembly.LoadFrom case, after we extract the cab file, we will only look for assembly with the same name as the cab file, excluding the extension. In our example above, we will only look for myasm.dll/myasm.exe.
In codebase hint case, we will look for the assembly specified in Assembly.Load, instead of the name of the cab file. This means, the cab file does not have to have the same name as the assembly.
A side effect of codebase hint behavior is that you can put multiple assemblies in one cab file. You will need to specify multiple assemblyBinding statements in app.config file to use the same cab file as codebase hint for different assemblies.
If you use this technique, due to how we extract the cab file and find the assembly (see above), we will download, and extract the same cab file multiple times. So bundling multiple assemblies in one cab file may actually hurt performance, instead of improving performance.
Of course, in reality, we use IE to download the cab file. You may benefit from IE’s caching of the downloaded cab file. You really want to measure your scenario, to decide if you want to use this technique or not.
...
Don Box takes Channel 9 on a tour of building 42 at Microsoft. What's there? The Indigo team. Code-name for a future set of .NET technologies that'll help you build and run connected systems.
http://channel9.msdn.com/ShowPost.aspx?PostID=18088#18088
Davvero carino... no?
Un editor, molto leggero, che supporta alcuni linguaggi di programmazione tra cui anche SQL (ok... non tutte le keyword di T-SQL):
http://www.synametrics.com/SynametricsWebApp/MEdit.jsp
Riporto dal sito:
MEdit is a multipurpose editor that can be used to edit local as well as remote files through FTP. Syntax Highlighting for many languages is available including Java, C/C++, Pascal, Visual Basic NT Batch Files, UNIX shell scripts and more.
Può tornare utile...