среда, 31 октября 2012 г.

Email Extractor. How to extract emails from websites.


I came across an awesome email extractor. It extracts email addresses from websites. In some cases you don't have desire to scan and extract emails form the whole site but only one or list of pages. Enter urls to email extractor and it will do the work for you.



How to extract people' contact information such as email addresses from websites like blogs and forums ? One of the ways is to search them manually by using Google, Bing. Email extractor software is useful when you have to contact people and let them know about your new service or product. Sometimes you don't know where your leads live Use them in email extractor and it will search and extract all of them in search engine like bing and then extract emails from all of them.



Email extractor may grab email addresses on websites like forum, blog, Facebook, Twitter or any other website where you think your customers are hanging on. You may find and extract all email addresses scan files on your hard drive and extract emails. Do you have any idea where your customers hang on on internet ? I believe they are surf on social networks like facebook, twitter, forums, blogs.



Email extractor can also search emails in mail boxes, files. One of the easiest ways to say about your product/service is to extract emails of people from websites and send them offers directly by email address, phone. It is a fact that lots of people have emails. It happens that people leave contact information on sites open.



In some cases you might not know sites you need to scan for emails but you know some keywords describing your customers. All you need to do is to type keywords in the textbox of application and press start button inside email extractor. Extract emails from blogs, forums, websites Enter site/blog/forum name you want to scan and extract email addresses. Imagine the situation: you have an awesome product and nobody knows about it. How to get your audience/customers know about your product/service? You definitely need to advertise it somehow.

пятница, 8 июня 2012 г.

New Solar Station in Crimea Becomes Ukraine's Green Strategy Milestone

KYIV, Ukraine, June 7, 2011.

Pursuing a long-term strategy, Ukraine has finalized construction of a new solar energy power station in Crimea. Being highly dependent on imported energy resources, the country puts a lot of efforts to make the internal energy production and consumption more efficient. The newly built solar plant is also a part of the National Projects, aimed at lessening the imported energy consumption by 30 percent by year 2015.

The construction of the solar power plant capable of producing 25 thousand megawatt-hours of environmentally clean electrical energy per year has been accomplished in accordance with Nature Energy project. Such capacity will meet the needs of about 5000 households in the area and will help reduce carbon dioxide emissions by 20 thousand tons per year.

Natural Energy is one of Ukraine's National Projects launched by the Ukrainian leadership in late 2010. It is aimed at producing electric energy from the 'clean' sources such as the sun and the wind in the amount of 2000 MW. The objective of such initiative is to supply the area with low transportation cost electricity and preserve the environment making these areas attractive for tourism development.

The State Agency of Ukraine for Energy Efficiency and Energy Conservation which developed a program of energy efficiency, reports that the share of alternative energy shall make up to 30 percent of Ukrainian energy market before 2015. Nowadays, around 60 percent of energy resources, mainly natural gas, in the country is imported.

Ukraine has an extensive potential market of solar energy projects. The capacity of solar radiation in Ukraine reaches from 800 to 1450 W / m squared per year. Hence Ukraine's geographical position, the southern regions of the country bear the highest potential: Crimea, Mykolaiv, Kherson and Odesa regions.

The main incentive for the growth of Ukraine's solar Photovoltaic market is a so-called green tariff system, introduced in September 2008 and amended in April 2009, which introduced fixed feed-in tariffs for electricity from renewable sources for 20 years.

Ukraine is the twelfth largest energy market in the world with an installed capacity of 54 GW as of 2009, exporting its excess electricity to such countries as Russia, Slovakia, Romania, Poland, Moldova and Hungary.

суббота, 2 июня 2012 г.

App Fabric Service Bus.


Hello! . App Fabric Service Bus. This publication is the second of its kind, dedicated to this mechanism. At first I recall, we met with the definition and basic scenarios of technology and know how to create your first namespaces. Here you can watch it at this link:. Introduction to AppFabric Service Bus. scenarios. Today, the post will be more technical - will try to create and use a WCF- service by. Service Bus.
Thus, the problem is as follows: to build a WCF- service, which contains a single method. The method will accept a string parameter and immediately return it to the client. This service will try to host a service on the bus. That is, in fact Service Bus will act as a relay messages between the client and the WCF- service. To solve the problem created a new Solution to the following projects:. EchoService. Client. ,. EchoService. Server. ,. EchoService. Source. In the studio, it looks like this:.


Echo service solution architecture

EchoService. Client. is a console application through which users can send messages to the server. EchoService. Server. - This is our server ( also console application), based on which will open WCF- host who runs one we want to WCF- Service. Since both the client and the server requires a contract WCF- service - we put it in a shared assembly called. EchoService. Source. In this assembly is a single interface, the code is shown below.

using System;. 
using System. Collections. Generic;.
using System. Linq;.
using System. Text;.
using System. ServiceModel;.

namespace EchoService. Source.
{.
[ServiceContract (Name = 'EchoContract', Namespace = 'http://samples. microsoft. com / ServiceModel / Relay / ')].
public interface IEchoContract.
{.
[OperationContract].
string Echo (string message);.
}.
}.


Nothing unusual - a standard interface with a single method of Echo, takes a string parameter and returns. In the assembly. EchoService. Server. is the implementation of this interface - it's a class called. EchoServer. - The code is also presented below.

using System;. 
using System. Collections. Generic;.
using System. Linq;.
using System. Text;.
using EchoService. Source;.
using System. ServiceModel;.

namespace EchoService. Server.
{.
[ServiceBehavior (Name = 'EchoService', Namespace = 'http://samples. microsoft. com / ServiceModel / Relay / ')].
public class EchoServer: IEchoContract.
{.
public string Echo (string message).
{.
Console. WriteLine ('Received: { 0 }', message);.
return message;.
}.
}.
}.


There are also all standard - class implements an interface marked with the attribute and IEchoService. ServiceBehavior. (thus the class is marked as the implementation of WCF- service). Echo method in addition to returns came in the parameter string back to the client, and displays it in the server console. But the main functionality of the server is contained in a file Program. cs. Let's look at its contents:.

using System;. 
using System. Collections. Generic;.
using System. Linq;.
using System. Text;.
using Microsoft. ServiceBus;.
using System. ServiceModel;.
using System. ServiceModel. Description;.

namespace EchoService. Server.
{.
class Program.
{.
static void Main (string [] args).
{.
Console. Title = ' server ';.
Console. Write ('Enter Service Bus namespaces ');.
string serviceNamespaceDomain = Console. ReadLine ();.
Console. Write ('Issuer Name:');.
string issuerName = Console. ReadLine ();.
Console. Write ('Issuer Secret:');.
string issuerSecret = Console. ReadLine ();.

Uri address = ServiceBusEnvironment. CreateServiceUri ('sb', serviceNamespaceDomain, 'EchoService');.

TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior ();.
sharedSecretServiceBusCredential. CredentialType = TransportClientCredentialType. SharedSecret;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerName = issuerName;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerSecret = issuerSecret;.

ServiceHost host = new ServiceHost (typeof (EchoServer), address);.
IEndpointBehavior serviceRegistrySettings = new ServiceRegistrySettings (DiscoveryType. Public);.
foreach (ServiceEndpoint endpoint in host. Description. Endpoints).
{.
endpoint. Behaviors. Add (sharedSecretServiceBusCredential);.
}.
host. Open ();.
Console. WriteLine (' Location of service:' address);.
Console. WriteLine (' Press [Enter] to exit ');.
Console. ReadLine ();.
host. Close ();.
}.
}.
}.


Let's take a detailed look at what 's going on. So, the first to start the service required input data, namely kridenshaly to access. Service Bus. and the name of namespaces. It is just going in the first lines of the program. It then creates a unique address universal access service ( at the output we get here is the address in this format:. sb:/ /. servicebus. windows. net / EchoService. ). To access the. Service Bus. All clients must be authenticated. In our case, the so-called authentication. SharedSecret. and there is the following code segment:.


TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior ();.
sharedSecretServiceBusCredential. CredentialType = TransportClientCredentialType. SharedSecret;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerName = issuerName;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerSecret = issuerSecret;.


This authentication method is similar to the standard scheme, in which steam is passed username / password ( also supports the following authentication schemes:. Saml. ,. SimpleWebToken. and. Unauthenticated. ). So in the end with the standard tools of the assembly. System. ServiceModel. dll. creates a WCF- host and run our Echo- service ( of course with each access point is set created earlier behavior, ensuring the ability to connect authenticated users only ).

Let's take a look at the source code of the client.

using System;. 
using System. Collections. Generic;.
using System. Linq;.
using System. Text;.
using Microsoft. ServiceBus;.
using System. ServiceModel;.
using EchoService. Source;.

namespace EchoService. Client.
{.
class Program.
{.
static void Main (string [] args).
{.
Console. Title = ' Client ';.
Console. Write ('Enter Service Bus namespaces ');.
string serviceNamespaceDomain = Console. ReadLine ();.
Console. Write ('Issuer Name:');.
string issuerName = Console. ReadLine ();.
Console. Write ('Issuer Secret:');.
string issuerSecret = Console. ReadLine ();.

Uri serviceUri = ServiceBusEnvironment. CreateServiceUri ('sb', serviceNamespaceDomain, 'EchoService');.

TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior ();.
sharedSecretServiceBusCredential. CredentialType = TransportClientCredentialType. SharedSecret;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerName = issuerName;.
sharedSecretServiceBusCredential. Credentials. SharedSecret. IssuerSecret = issuerSecret;.

ChannelFactory. channelFactory = new ChannelFactory. ('RelayEndpoint', new EndpointAddress (serviceUri));.

channelFactory. Endpoint. Behaviors. Add (sharedSecretServiceBusCredential);.
IEchoContract channel = channelFactory. CreateChannel ();.
((ICommunicationObject) channel). Open ();.

Console. WriteLine (' Enter text to send to the server:');.
string input = Console. ReadLine ();.
while (! String. IsNullOrEmpty (input)).
{.
try.
{.
Console. WriteLine (' The server responded: {0 }', channel. Echo (input));.
}.
catch (Exception e).
{.
Console. WriteLine (' Error:' e. Message);.
}.
input = Console. ReadLine ();.
}.

((ICommunicationObject) channel). Close ();.
channelFactory. Close ();.
}.
}.
}.


Algorithm to connect to the bus completely identical to that meter in the back end. The differences lie only in the fact that we do not open a new host, and the open channel with the code here:.

ChannelFactory. channelFactory = new ChannelFactory. ('RelayEndpoint', new EndpointAddress (serviceUri));. 
channelFactory. Endpoint. Behaviors. Add (sharedSecretServiceBusCredential);.
IEchoContract channel = channelFactory. CreateChannel ();.
((ICommunicationObject) channel). Open ();.


All that's left to do is add a couple of lines of code in the configuration files of both projects. At the back end to add the following configuration:.













At the same client sends the following snippet:.











In both cases indicated the main access point and a new service called Binding. netTcpRelayBinding. (this type of bindings in the assembly. Microsoft. ServiceBus. dll. and provides safe and reliable means of communication between computers. Service Bus. ).

Everything is ready, it remains to be done only a small step before starting the system. And it found on the site kridenshaly to access (this is our. Issuer Name. and. Issuer Secret. Required by both the client and server). You can find them in the section. >AppFabric - Service Bus. namespaces in the property under the name. Default Key.



Default Keys For AppFabric Service Bus


By clicking on the button. View. opens a modal window, which is just and will include data necessary for us.



Service Bus Keys


That's all the preparation can be considered completed. To demonstrate, I 'll show you a couple of screenshots showing the operation of the system.



Echo Service via Service Bus


As you can see the system works fine, but for a service we would not have put a considerable effort, the majority of routine work for us to perform a new WCF- Binding, which is in a namespace. Microsoft. ServiceBus.

In this post you can complete the. The source files of the project can be taken at the following link:. AppFabric Service Bus Echo Service. Very soon we will get acquainted with more progressive and sophisticated variants of Service Bus, but for now thank you for your attention, I hope the publication was useful and interesting:).

среда, 30 мая 2012 г.

Today I am busy


His wife returned. With a dog. The dog is already taken my seat on the protection of cats.

You can speculate until the form in which to do a post about the current economic situation in the context of the existence of small businesses do - text or video. There will be many critics of the mat, for all the shitty, and it only gets worse. My head is all double- brooded, and invented.

We also give tomorrow PBX for call center. Tying our retarded system of urban issues in a whole. I am sure that more than any other company in Russia is not building its business model to more than ten city rooms in different cities. But to overcome stereotypes of people in our country alone, we can not.

---------------------------------.
Sign up. to update the blog with one click!. Read on Twitter!. ::. Advertising blog.

понедельник, 28 мая 2012 г.

For selling links banyat



Let's just say there are two factors at the site that have a significant impact on its presence in the index - to, say, a trust (prescription, a reference, the uniqueness of the material) and the number of outbound links (we are selling links).

Once the trust factor / number of outbound is not in your favor - the site falls under the filter. If the value exceeds the limit - falls out of the index.

What is the basis? . Kopipast old - alive. Kopipast new - not in index. Unico, where there are few options or not - alive. Unico, which sold a lot of options - not in the index. The site, littered with cellars links, but very old in the UC and the unique hand- written educational material - alive. Kopipastny old site with a high reference - alive. Kopipastny site with a small reference - under the filter. In general, the sample is enough for.

Conclusion: if the site is needed in the index Yandex - need less to sell, to build up a reference on it and wait until they grow old domain. Well and good if all the content will be unique. If you do not feel like waiting and start the race - who is faster - you glanders or Yandex from the index, you do not care about the rules and everything we put into. Golden dorostroeniya principle has not been canceled, and in this case, the primitive. Especially as included in the index and frame such sites are kept for a long time and even give a meaningful traffic.