[BuscoPeople.com] is one Web Application oriented finding people to share hobbies and to practice languages. This is a personal project I've wanted to join all the technologies I've learned throughout my career. With it I hope to help other people like me, people looking for language exchange.

Web application. BuscoPeople.com

You can perform searches in cities of different countries. Or if you wish, you can perform global searches. To select your city you must click on the top of the web, in the city that previously is checked by default "World".

Web application. BuscoPeople.com

You can perform the search by selecting more than one language or skills, and offering more than one language or skill. The search will be successful and will show the list of ideal people for you.

Web application. BuscoPeople.com

Search and filter to Facilitate searching skills to Web users. Users can write what they want in a text box and instantly see how the skills disappear and appear only those of your search. This search is conducted in all languages of the application to facilitate searching users.

Web application. BuscoPeople.com

The results of the search are displayed in a paginated list. In this list we can find people which fulfill our multiple search criteria.

Web application. BuscoPeople.com

You can send messages to other members from the search list, from the user profile, or from the list of messages received. The history of sent / received can be reviewed from the Message tab.

Web application. BuscoPeople.com

Have the ability to add to your favorites to other users. With this, you can contact the much easier and direct access to their profile.

Web application. BuscoPeople.com

You have the opportunity to receive an email when another user contacts you and when a user adds you to favorites. To receive these emails, you should have marked the option in your user details.

Web application. BuscoPeople.com

Registration on the website is only with a valid email and password. Then you can add other data if you are desired. You will receive an email registration to be validated to confirm your account and access all the functionality of the website.

Web application. BuscoPeople.com

From the user detail page you can add and edit your data. To add a new skill, just do the main quest. To remove a skill, click the x. To save your changes you need to press the Save Changes button.

Web application. BuscoPeople.com

From the detail page user can add a photo, or choose an avatar from those available.

Web application. BuscoPeople.com

The user will be notified when you have new unread messages.

Web application. BuscoPeople.com

Login/Logout Functionality.

Web application. BuscoPeople.com

Remember email with your password, you will be received in the user's language.

Web application. BuscoPeople.com

The first time a user visits to our website, automatically detects the language of the user and is transparently redirected to your language. We also have a database of IP's for countries that helps us to automatically detect the country of the user connecting to our website.

Web application. BuscoPeople.com

The image shows the full application architecture. You can clearly see its division into three layers: the presentation layer, the layer of business logic, and data access layer. The layers are summarized below.

Web application. BuscoPeople.com

The application architecture consists of three logical layers. The presentation layer contains components that implement and show the user interface and manage user interaction. This layer includes controls for user input and display, in addition to components that organize user interaction (ASP.NET). The business logic layer, meanwhile, represents the business rules that apply across programming logic (computer instructions) on how these rules apply (C#.NET). The data access layer consists of definitions of tables and columns in database and computer logic needed to navigate the database. The access layer data enforces rules regarding the storage and access of information (ENTITY FRAMEWORK).

Web application. BuscoPeople.com

The presentation layer has been developed using the .NET framework for web applications developed and commercialized by Microsoft (ASP.NET). In our architecture: all pages using a common MASTER PAGE, inherit from a base class that contains the common functionality, and all pages are composed of configurable USER CONTROLS. All these pages use HELPERS with common functionality. This does not have to repeat the functionality anywhere in the application. All my projects are supported by a library (KERNEL_UI.dll) containing common functionality for all web projects that I make (angellapuente.com with ASP.NET, BombaDeHumo in android,...).

Web application. BuscoPeople.com

The business logic layer represents the business rules that apply across programming logic on how these rules apply. Our business logic layer was developed using the programming language C # .NET Microsoft .NET framework. In our architecture is divided into two sublayers: Fulfillment Business Logic Layer (FBLL) and Business Logic Layer (BLL). They also handle the CACHING, authentication, authorization, coupling and cohesion, EXCEPTION MANAGEMENT, logging and validation.

Web application. BuscoPeople.com

One of the most important parts of the application is the persistence layer. It is important to be consistent, flexible and transparent to the application layer without mixing the sql queries or manually create classes and repeat functionality. I have worked with several tools, from the most rudimentary static classes with methods that were running sql "bareback" or hand-generated classes that used an instance of DataRow. Until it was included Entity Framework (EF) and LINQ to Entities in the .NET 4.0 framework. This project has been developed using Entity Framewok. Entity Framewok is ready to model the data layer of a more generic and flexible way. We support a database in Microsoft SQL SERVER.

Web application. BuscoPeople.com

LINQ to Entities provides Language-Integrated Query (LINQ) support that enables developers to write queries against the Entity Framework conceptual model using Visual Basic or Visual C#. Queries against the Entity Framework are represented by command tree queries, which execute against the object context. LINQ to Entities converts Language-Integrated Queries (LINQ) queries to command tree queries, executes the queries against the Entity Framework, and returns objects that can be used by both the Entity Framework and LINQ.

Web application. BuscoPeople.com

This is the Schema database Entity Framework still in development.

Web application. BuscoPeople.com

It is scheduled a periodic maintenance and review of the database. Including: Checking consistency of the database, file management data and log files, index fragmentation, statistics, damage detection, size reduction and backups.

Web application. BuscoPeople.com

Microsoft SQL Server is a system for managing databases produced by Microsoft based on the relational model.

Web application. BuscoPeople.com

A Web Service is a technology that uses a set of protocols and standards used for exchanging data between applications. Different software applications developed in different programming languages, and executed on any platform can use web services to exchange data in computer networks like the Internet. Interoperability is achieved by adopting open standards. The OASIS and W3C organizations are the committees responsible for the architecture and regulation of Web services. It is a machine that responds to requests from Web clients and sends the requested resources. We have used a small Web Service to communicate from an ANDROID application (Developed with Mono for Android) with our Web application. This communication is done through a Web Service ASMX.

Web application. BuscoPeople.com

Unit testing helps you ensure the correctness of your program by verifying that the application code does what you expect it to do. In unit testing, you analyze the functionality of your program to discover discrete testable behaviors that you can test as individual units. You use a unit testing framework to create tests of those behaviors and to report the results of those tests. Test Explorer provides a flexible and efficient way to run your unit tests and view their results in Visual Studio.

Web application. BuscoPeople.com

Sending messages to other members is done through techniques javascript, AJAX. You can send multiple messages to multiple users, without reloading the web page because everything is done invisibly to the user.

Web application. BuscoPeople.com

The instant search filter have been made in Javascript. In this way, all the functionality of screening is performed in the web client. There is the possibility to filter by type skills, and find a skill by writing in a box. Instantly you will see how the skills are disappearing and appear only those of your search. This search is conducted in all languages of each skill to facilitate searching users.

Web application. BuscoPeople.com

The first time a user visits to our website, automatically detects the language of the user and is transparently redirected to your language.

Web application. BuscoPeople.com

To display the different lists of the application have been used elements .NET ListView and DataPager Web Server Control. The number of elements contained in each page is set to the settings in the web.config file.

Web application. BuscoPeople.com

Web.config file is the main configuration options for a Web application in ASP.NET. The file is an XML document that defines configuration information regarding the web application. The web.config file contains information that controls the loading of modules, security settings, configurations session state, compiler options and the language of the application. The web.config files may also contain specific objects such as connection strings to the database. In our case include the use of global variables of the application, redefining the maximum size of requests, setting sessions and cookies, security permissions, assembled the app, redirects on error and modules. Note the use of RewriteModule module is explained in another section.

Web application. BuscoPeople.com

Javascript Autocomplete email's domain using jQuery UI.

Web application. BuscoPeople.com

There is a module in the application that is responsible for the generation of all routes of the application. With this we have centralized all URLs generated by the application. It is much easier to make changes. The module was created generic to be reusable in any other Web application.

Web application. BuscoPeople.com

The robots exclusion standard, also known as the robots exclusion protocol or robots.txt protocol, is a standard used by websites to communicate with web crawlers and other web robots. The standard specifies the instruction format to be used to inform the robot about which areas of the website should not be processed or scanned. Robots are often used by search engines to categorize and archive web sites, or by webmasters to proofread source code. Not all robots cooperate with the standard including email harvesters, spambots and malware robots that scan for security vulnerabilities. The standard is different from, but can be used in conjunction with, Sitemaps, a robot inclusion standard for websites.

Web application. BuscoPeople.com

For each of the photos that a user uploads to the web pretreatment is performed. It made a change in size, weight reduction and inclusion of a personal watermark. All photos go supervision to eliminate possible false pictures, unwanted, or copyrighted images. For this we have created a (Helper_Foto) module responsible for processing all images that each user gets on the web.

Web application. BuscoPeople.com

Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements, that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google, and they can generate revenue on either a per-click or per-impressionbasis.

Web application. BuscoPeople.com

Registration is a simple two-step feature that asks for a confirmation email. This helps to confirm that the user has successfully logged on with a valid email. If the user does not validate your email address, you can not use all the features of the website.

Web application. BuscoPeople.com

We record IP addresses from accessing our users to add more security in case of legal problems, and to use them for our own statistics using our users. We also have a database of IP's for countries that helps us to automatically detect the Country of the user connecting to our website.

Web application. BuscoPeople.com

We have a BackOffice system to manage the data of our users, correct any errors in data input by users, delete messages deemed inappropriate, delete users, and even impersonate users on the website with a transparent manner to correct possible issues.

Web application. BuscoPeople.com

Are stored in a database table the most important events. Save the date, user data (IP, user ID, Country of access) and the action that the user has made. Actions that leave traces in the log are login, logout, messages between users and sending Email.

Web application. BuscoPeople.com

We also have a database of IP's for countries that helps us to automatically detect the Country of the user connecting to our website.También disponemos de una Base de datos de IP's por paises que nos ayuda a detectar automáticamente el Pais del usuario que se conecta a nuestra web.

Web application. BuscoPeople.com

An image sprite is a collection of images put into a single image. A web page with many images can take a long time to load and generates multiple server requests. Using image sprites will reduce the number of server requests and save bandwidth. In our case, we have more than 150 images on the home page, which causes the loading time is very high even though the total size is not very high. I believe that the solution to this problem is to use CSS Image Sprites. Once applied Connection times are now lower. Since Google Chrome we can see the "Waiting (TTFB)" (Time spent waiting for the initial response, also known as the Time To First Byte. This time captures the latency of a round trip to the server in addition to the time spent waiting for the server to deliver the response.) and realize that this optimization is necessary. Once applied this technique the loading time has been reduced to less than half, down from 4 seconds to 1.8.

Web application. BuscoPeople.com

For our application we can greatly reduce the number of database access. We detected that elements of the database remain constant throughout the execution of the application. These elements include skills (languages, professions ...), these items are cached in the business layer along with their translations in each of the languages of the application. This cache will be renewed periodically to detect if entered from the BackOffice a new skill. The cache refresh time will be set to the settings in the web.config file.

Web application. BuscoPeople.com

A rewrite engine is software located in a Web application framework running on a Web server that modifies a web URL's appearance. Many framework users have come to refer to this feature as a "Router". This modification is called URL rewriting. Rewritten URLs (sometimes known as short, pretty or fancy URLs, search engine friendly - SEF URLs, or slugs) are used to provide shorter and more relevant-looking links to web pages. The technique adds a layer of abstraction between the files used to generate a web page and the URL that is presented to the outside world. The rules for implementing this module is in the configuration file web.config. These rules are defined as regular expressions. The module responsible for this functionality is in the RewriterModule project. This technique is very useful for SEO techniques and search engine optimization. With it we create search engine friendly URL to help us get a better position.

Web application. BuscoPeople.com

The application is ready to create new multilingual metadata when new pages are created. This guarantees that each new search in the application, has a different self-generated metadata corresponding to the content of the page. Among the generated metadata include the title, description, keywords and language. For this we have created a module that automatically generate these metadata through the processed information to create the page. Thanks to this we can generate thousands of pages automatically with combined information from all possible search application and go positioning ourselves in search engines.

Web application. BuscoPeople.com

Dynamic creation of the list of pages that are appearing in the web application. Automatically generate a list of pages with combinatorics of possible searches that can be performed in the application. With this we make accessible by search engines and users new pages with information of new users who they register on the web. Also generate a new page with the public details of each user. This Sitemap is reviewed by the search engines periodically as we have established in the configuration.

Web application. BuscoPeople.com

HTTP redirection from www.BuscoPeople.com to BuscoPeople.com to avoid duplicate url with the same information.

Web application. BuscoPeople.com

Google Analytics is a service offered by Google that generates detailed statistics about a website's traffic and traffic sources and measures conversions and sales. It's the most widely used website statistics service. Google Analytics can track visitors from all referrers, including search engines and social networks, direct visits and referring sites. It also tracks display advertising, pay-per-click networks, email marketing, and digital collateral such as links within PDF documents.

Web application. BuscoPeople.com
[Visit BuscoPeople.com]
We request your permission to obtain statistics on their navigation on this website, in accordance with Royal Decree-Law 13/2012. If you continue to browse consider to accept the use of cookies.