maurodx Settembre 20th, 2007
We have a Forex Trade Signals Software application. It delivers Forex Signals Alerts
in real time. It tells you the entry and exit points for every pairs of
currencies.
This is
a revolutionary system, managed and provided by renowned traders, who
have proved themselves on the Forex market in the major exchanges. This
is the perfect tool and ideal solution for anyone who wishes to trade
with complete confidence. It is designed for those who do not have
sufficient experience or who do not have the time to analyse the
market.
This system is designed for
those new to forex. The signals are easy to understand and enter. No
confusing terminology. If you can enter basic orders (market, limit,
stop loss), then you can be successful at this system! The signals are
so easy to enter that a nine year old child can enter them … really!
Service is available to public from October 2007 with a little monthly fee payable with PayPal.
Buy it with the button at the right!
or contact me mauroevania@gmail.com
See you soon
Print This Post
CodeKeep C# Feed Novembre 11th, 2008
->
CodeKeep C# Feed Novembre 11th, 2008
CodeKeep C# Feed Novembre 11th, 2008
Description: Handy for generating a unique (ish) filename from a file or array of bytes
Link: http://www.codekeep.net/snippets/780b5eed-ebfa-4450-b8c6-09170c186032.aspx
/// <summary>
/// Generates a hashcode for use as a filename from the given byte array
/// </summary>
public static String GenerateHashcodeFilename(Byte[] byteArray)
{
Byte[] hashVal = new MD5CryptoServiceProvider().ComputeHash(byteArray);
StringBuilder sb = new StringBuilder();
foreach (Byte b in hashVal)
{
sb.Append(b.ToString("X2"));
}
return String.Format("{0}", sb.ToString());
}

CodeKeep C# Feed Novembre 11th, 2008
Description: Basis of a simple xml serializable class inc. a collection
Link: http://www.codekeep.net/snippets/36ed6afe-5067-44d3-91df-e23b41d17584.aspx
namespace Name.Space
{
[Serializable]
[XmlRoot("RootName")]
public class SerializeSomething
{
private String x;
private List<x> listOfx;
public SerializeSomething()
{
listOfx = new List<x>();
}
[XmlArray(ElementName = "ListName")]
[XmlArrayItem(ElementName = "Item")]
public List<x> SomeList
{
get
{
return listOfx;
}
}
[XmlAttribute(AttributeName = "AttribInRoot")]
public String RootAttrib
{
get
{
//
}
set
{
//
}
}
}

CodeKeep C# Feed Novembre 11th, 2008
Description: Template for a static file logger. DIVIDER is whatever you use to seperate the entries i.e a row of dashes etc.
Link: http://www.codekeep.net/snippets/4b71f3d9-e4a8-437f-9946-64039f3eada8.aspx
public static void Write(String message)
{
StringBuilder builder = new StringBuilder();
builder.AppendLine(String.Format("[{0}]", DateTime.Now.ToString()));
builder.AppendLine(message);
builder.AppendLine(Resources.DIVIDER);
File.AppendAllText(LOGPATH, builder.ToString());
}

CodeKeep C# Feed Novembre 11th, 2008
CodeKeep C# Feed Novembre 11th, 2008
CodeKeep C# Feed Novembre 11th, 2008
CodeKeep C# Feed Novembre 11th, 2008
CodeKeep C# Feed Novembre 11th, 2008
Description: Empty regioned class
Link: http://www.codekeep.net/snippets/22c74480-95b6-45cd-aadc-d521bbe88957.aspx
using System;
using System.Collections.Generic;
using System.Text;
namespace Name
{
public class Name
{
#region Declarations / initializers
#endregion
#region Constructors
public Name()
{
}
#endregion
#region Public methods
#endregion
#region Private methods
#endregion
}
}
