employment
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9
WWW::Search::AOL::Classifieds::Employment 2.026
WWW::Search::AOL::Classifieds::Employment is a class for searching Jobs Classifieds on AOL. more>>
WWW::Search::AOL::Classifieds::Employment is a class for searching Jobs Classifieds on AOL.
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Aol);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{qcqs => :ca:});
while (my $res = $oSearch->next_result()) {
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "n";
}
This class is a Aol specialization of WWW::Search. It handles making and interpreting Aol searches at http://classifiedplus.aol.com in category employment->JobSearch.
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Aol);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{qcqs => :ca:});
while (my $res = $oSearch->next_result()) {
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "n";
}
This class is a Aol specialization of WWW::Search. It handles making and interpreting Aol searches at http://classifiedplus.aol.com in category employment->JobSearch.
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
861 downloads
WWW::Search::Yahoo::Classifieds::Employment 2.023
WWW::Search::Yahoo::Classifieds::Employment is a class for searching employment classifieds on Yahoo! more>>
WWW::Search::Yahoo::Classifieds::Employment is a class for searching employment classifieds on Yahoo!
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::Classifieds::Employment);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{g => 14,
cr => California});
while (my $res = $oSearch->next_result()) {
my $true_url = $oSearch->getMoreInfo($res->url);
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "t" . $true_url . "n";
}
This class is a YC specialization of WWW::Search. It handles making and interpreting YC searches at http://careers.yahoo.com
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
The returned url is the one found in the Yahoo! own database. However, it quite often appears in other databases where this url was originally taken from. To retrieve this "true" url use the function getMoreInfo as written in the above example.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::Classifieds::Employment);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{g => 14,
cr => California});
while (my $res = $oSearch->next_result()) {
my $true_url = $oSearch->getMoreInfo($res->url);
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "t" . $true_url . "n";
}
This class is a YC specialization of WWW::Search. It handles making and interpreting YC searches at http://careers.yahoo.com
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
The returned url is the one found in the Yahoo! own database. However, it quite often appears in other databases where this url was originally taken from. To retrieve this "true" url use the function getMoreInfo as written in the above example.
Download (0.025MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1052 downloads
Java::Import::Design 0.03
Java::Import::Design is the design of the Java::Import Module. more>>
Java::Import::Design is the design of the Java::Import Module.
MOTIVATIONS
The original motivation for writing this module came out of a project I was working on during my previous employment. We had built a system in which a major part was implimented using EJBs on a J2EE server. In addition, we had a large component of the system, that already existed, and was written in Perl. We did not want to scrap our Perl work but it was becoming more tedious to maintain two implimentations as more and more things were being added to the system.
So, we decided that the major pieces of business logic would reside on the J2EE server and the Perl would be modified to make calls to the server. After some time and experimentation we began to realize that the memory footprint as well as the amount of time needed to make calls to the server using existing Perl to Java integration sulutions were just not acceptable. We therefore set out to find some other way. We tried all sorts of things but in the end we couldnt find anything that met our requirements and therefore decided to keep the origional system of doing things.
While at that job we never did find a suitable way to integrate our two systems. However, the problem still haunted me. It wasnt until the end of my career at that company that I saw an announcement for Googles first Summer of Code. It just so happened that as Google was announcing their brand new program that I had begun to play with the GNU GCJ suite of Java tools and came up with the idea of taking advantage of their ability to natively compile Java code for use with Perl. This may not have been a new idea but I couldnt find anything that would help me so I decided to write and submit a proposal to Google. Well, I was accepted and you now have Java::Import.
When I began to work on this project I started by creating my own namespace instead of stepping on the toes of the other existing Java/Perl integration project, Inline::Java. I did this primarily because I wanted a clean slate on which I could fully explore the nuances of GCJ, in particular its CNI interface. As I worked my module started to evolve into its own beast and at that point it seemed locigal to keep my own namespace. It is not my intention to replace Inline::Java and I still think that in te future much of the work I have done can be used by Inline::Java as an option to use GCJ specific functionality.
<<lessMOTIVATIONS
The original motivation for writing this module came out of a project I was working on during my previous employment. We had built a system in which a major part was implimented using EJBs on a J2EE server. In addition, we had a large component of the system, that already existed, and was written in Perl. We did not want to scrap our Perl work but it was becoming more tedious to maintain two implimentations as more and more things were being added to the system.
So, we decided that the major pieces of business logic would reside on the J2EE server and the Perl would be modified to make calls to the server. After some time and experimentation we began to realize that the memory footprint as well as the amount of time needed to make calls to the server using existing Perl to Java integration sulutions were just not acceptable. We therefore set out to find some other way. We tried all sorts of things but in the end we couldnt find anything that met our requirements and therefore decided to keep the origional system of doing things.
While at that job we never did find a suitable way to integrate our two systems. However, the problem still haunted me. It wasnt until the end of my career at that company that I saw an announcement for Googles first Summer of Code. It just so happened that as Google was announcing their brand new program that I had begun to play with the GNU GCJ suite of Java tools and came up with the idea of taking advantage of their ability to natively compile Java code for use with Perl. This may not have been a new idea but I couldnt find anything that would help me so I decided to write and submit a proposal to Google. Well, I was accepted and you now have Java::Import.
When I began to work on this project I started by creating my own namespace instead of stepping on the toes of the other existing Java/Perl integration project, Inline::Java. I did this primarily because I wanted a clean slate on which I could fully explore the nuances of GCJ, in particular its CNI interface. As I worked my module started to evolve into its own beast and at that point it seemed locigal to keep my own namespace. It is not my intention to replace Inline::Java and I still think that in te future much of the work I have done can be used by Inline::Java as an option to use GCJ specific functionality.
Download (0.028MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1054 downloads
amaroK 1.4.7
amaroK is a music player for Linux and Unix with an intuitive interface. more>>
amaroK is a soundsystem-independent audio-player for *nix. amaroKs interface uses a powerful "browser" metaphor that allows you to create playlists that make the most of your music collection. We have a fast development-cycle and super happy users. We also provide pensions and other employment benefits.
"Easily the best media-player for Linux at the moment. Install it now!"
- Linux Format Magazine
Main features:
- Quick and simple drag and drop playlist creation
- Music library (built-in sqlite or MySQL)
- Multiple backends supported (GStreamer, xine, NMM, MAS and aRts)
- 10 band equalizer
- Automatic cover art download using Amazon services
- The unique and powerful context browser
- Automatic play-statistics generation (iRate style)
- Full lyrics download
- Full Audioscrobbler support
- Visualisations with libvisual
- Streaming from any KIO source
- Crossfading
- Fully configurable OSD for track changes
- K3B (CD-burning) integration
- KDE integration
<<less"Easily the best media-player for Linux at the moment. Install it now!"
- Linux Format Magazine
Main features:
- Quick and simple drag and drop playlist creation
- Music library (built-in sqlite or MySQL)
- Multiple backends supported (GStreamer, xine, NMM, MAS and aRts)
- 10 band equalizer
- Automatic cover art download using Amazon services
- The unique and powerful context browser
- Automatic play-statistics generation (iRate style)
- Full lyrics download
- Full Audioscrobbler support
- Visualisations with libvisual
- Streaming from any KIO source
- Crossfading
- Fully configurable OSD for track changes
- K3B (CD-burning) integration
- KDE integration
Download (12.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
698 downloads
Job Hunter 2005363215841
Job Hunter is a software that can track job opportunities in your hunt for contracts or employment. more>>
Job Hunter is a software that can track job opportunities in your hunt for contracts or employment. Documentation is included in OpenOffice/NeoOffice and PDF formats.
As I went around looking for a job (I am a software contractor so I am always looking for a job) I found myself writing leads down on peices of paper... which soon graduated to worksheets when I got sick of disorganization... which then graduated to this application when I noticed my notes were scribbled all over the page.
I realized this is kind of a leads manager for the job searcher like those for the sales professional. After all, you are trying to sell your skills to some buyer right?
You will need PostgreSQL and PHP 4.3.11+ or PHP 5 to properly install the program. (PHP 5 will be the new standard.) You will need a PDF reader or OpenOffice.org/NeoOffice 1.0 + to read the documentation. I have successfully run the software on a Linux machine and Apple OS X (I actually run it on my powerbook so it goes with me.)
If you dont want to go through the motions of getting this running on your own machines, you can register an instance for yourself on this site and use it freely.
Enhancements:
- maintnote.php was fixed and tested for use with PHP 5.
<<lessAs I went around looking for a job (I am a software contractor so I am always looking for a job) I found myself writing leads down on peices of paper... which soon graduated to worksheets when I got sick of disorganization... which then graduated to this application when I noticed my notes were scribbled all over the page.
I realized this is kind of a leads manager for the job searcher like those for the sales professional. After all, you are trying to sell your skills to some buyer right?
You will need PostgreSQL and PHP 4.3.11+ or PHP 5 to properly install the program. (PHP 5 will be the new standard.) You will need a PDF reader or OpenOffice.org/NeoOffice 1.0 + to read the documentation. I have successfully run the software on a Linux machine and Apple OS X (I actually run it on my powerbook so it goes with me.)
If you dont want to go through the motions of getting this running on your own machines, you can register an instance for yourself on this site and use it freely.
Enhancements:
- maintnote.php was fixed and tested for use with PHP 5.
Download (3.8MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
OrangeHRM 2.2_02
OrangeHRM comes as a comprehensive solution for the efficient management and development of your Human Resource. more>>
OrangeHRM comes as a comprehensive solution for the efficient management and development of your Human Resource. The project will assist you in the complex and strategic process of managing this crucial resource of your enterprise.
Based on modular architecture, it facilitates a vastrange of HR activities, with features that reflect the main HR management activities. It comes as a web-enabled application and considering the available flexibility, OrangeHRM is a perfect platform for reengineering your HR processes and achieving a new level of HR Management.
OrangeHRM is emerging in line with the new generation of HR Information Systems (HRIS) and will assist you in managing your companys most important asset - human resource. Based on modular architecture, this comprehensive Open Source solution reflects the main areas of HR Management from simple personnel administration to todays complex strategic approaches.
Orange HRM, which is applicable to diverse business industries, is a perfect platform for re-engineering your HR processes and redefining the workflow operations of HR professionals, paving the way to a new level of HR Management.
Administration Module (Admin)
The part of the system where the HR Manager or other appointed personnel perform all system administration tasks. This include defining company structure, pay grades and other information that serves as the backbone for the rest of the system. Security issues are taken care of through this module as well by defining user rights.
Features:
- Define Company Info (General Information, Company Structure, Locations)
- Define Job information (Job titles, Pay Grades, Employment Statuses, EEO Job Categories)
- Define Qualification Information (Education, Licenses)
- Define Skills (Skills, Languages)
- Define Meberships and Membership types
- Define Nationalities & Races
- Define Users
Personal Information Manager Module (PIM)
This core module maintains all relevant employee related information, including different types of personal information, detailed qualifications and work experience, job related information etc. Picture of employee is included as well. Information captured in this module is utilized by all other modules, thus eliminating data redundancy.
Features :
- Personal information (Date of birth, SSN, nationality, ethnic race etc.)
- Color picture
- Contact details
- Emergency Contact(s)
- Dependents
- Immigration details (Passport & Visa info)
- Job information
- Payment details (Pay Grade & Salary)
- Employee reporting structure (Assign Supervisor)
- Work Experience
- Education details
- Skills
- Assign Languages
- Assign Licenses
- Assign Memberships
- Attachments
Employee Self Service Module (ESS)
Employee self service is a powerful tool providing employees of the company with the ability to view relevant information such as personal information, updating personal information with web - enabled PC without having to hassle the HR staff.
The functionality of this module spans through the entire system, making information available anywhere, anytime. Of course all information is subject to company defined security policy, where everyone can only view the information he/she is authorized to. Time and cost saving effects from this solution are tremendous.
Reports Module
This feature produces customized reports according to your needs. Any number of reports can be defined by selecting from a range of search criteria and report fields. Report definitions can be saved to avoid repeating this task. Once the report definition is saved, the report can be generated by providing the required criteria data
Leave Module
A comprehensive leave management module, with extensive possibilities of defining leave types and more. It caters for all application and approval processes and is able to display information on leave entitlement, balance, history etc. Thanks to the web-enabled and self-service concepts, it significantly streamlines all leave related procedures, eliminates paperwork and saves costs.
<<lessBased on modular architecture, it facilitates a vastrange of HR activities, with features that reflect the main HR management activities. It comes as a web-enabled application and considering the available flexibility, OrangeHRM is a perfect platform for reengineering your HR processes and achieving a new level of HR Management.
OrangeHRM is emerging in line with the new generation of HR Information Systems (HRIS) and will assist you in managing your companys most important asset - human resource. Based on modular architecture, this comprehensive Open Source solution reflects the main areas of HR Management from simple personnel administration to todays complex strategic approaches.
Orange HRM, which is applicable to diverse business industries, is a perfect platform for re-engineering your HR processes and redefining the workflow operations of HR professionals, paving the way to a new level of HR Management.
Administration Module (Admin)
The part of the system where the HR Manager or other appointed personnel perform all system administration tasks. This include defining company structure, pay grades and other information that serves as the backbone for the rest of the system. Security issues are taken care of through this module as well by defining user rights.
Features:
- Define Company Info (General Information, Company Structure, Locations)
- Define Job information (Job titles, Pay Grades, Employment Statuses, EEO Job Categories)
- Define Qualification Information (Education, Licenses)
- Define Skills (Skills, Languages)
- Define Meberships and Membership types
- Define Nationalities & Races
- Define Users
Personal Information Manager Module (PIM)
This core module maintains all relevant employee related information, including different types of personal information, detailed qualifications and work experience, job related information etc. Picture of employee is included as well. Information captured in this module is utilized by all other modules, thus eliminating data redundancy.
Features :
- Personal information (Date of birth, SSN, nationality, ethnic race etc.)
- Color picture
- Contact details
- Emergency Contact(s)
- Dependents
- Immigration details (Passport & Visa info)
- Job information
- Payment details (Pay Grade & Salary)
- Employee reporting structure (Assign Supervisor)
- Work Experience
- Education details
- Skills
- Assign Languages
- Assign Licenses
- Assign Memberships
- Attachments
Employee Self Service Module (ESS)
Employee self service is a powerful tool providing employees of the company with the ability to view relevant information such as personal information, updating personal information with web - enabled PC without having to hassle the HR staff.
The functionality of this module spans through the entire system, making information available anywhere, anytime. Of course all information is subject to company defined security policy, where everyone can only view the information he/she is authorized to. Time and cost saving effects from this solution are tremendous.
Reports Module
This feature produces customized reports according to your needs. Any number of reports can be defined by selecting from a range of search criteria and report fields. Report definitions can be saved to avoid repeating this task. Once the report definition is saved, the report can be generated by providing the required criteria data
Leave Module
A comprehensive leave management module, with extensive possibilities of defining leave types and more. It caters for all application and approval processes and is able to display information on leave entitlement, balance, history etc. Thanks to the web-enabled and self-service concepts, it significantly streamlines all leave related procedures, eliminates paperwork and saves costs.
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
822 downloads
Checkfacebook 0.5
Checkfacebook provides a tool which notifies you of new messages on facebook.com. more>>
Checkfacebook provides a tool which notifies you of new messages on facebook.com.
Checkfacebook notifies you of new messages on facebook.com. The Facebook is an online community for universities.
Facebook is a social networking website. It was originally developed for college and university students but has since been made available to anyone with an email address. People can select to join one or more participating networks, such as a high school, place of employment, or geographic region.
As of February 2007, the website had the largest number of registered users among college-focused sites with over 19 million members worldwide (also from non-collegiate networks).[1]
Facebook is the number one site for photos, ahead of public sites such as Flickr, with over 6 million photos uploaded daily,[2] and is the sixth most visited site in the United States.[2]
The name of the site refers to the paper facebooks that colleges and prepatory schools give to incoming students, faculty, and staff depicting members of the campus community.
<<lessCheckfacebook notifies you of new messages on facebook.com. The Facebook is an online community for universities.
Facebook is a social networking website. It was originally developed for college and university students but has since been made available to anyone with an email address. People can select to join one or more participating networks, such as a high school, place of employment, or geographic region.
As of February 2007, the website had the largest number of registered users among college-focused sites with over 19 million members worldwide (also from non-collegiate networks).[1]
Facebook is the number one site for photos, ahead of public sites such as Flickr, with over 6 million photos uploaded daily,[2] and is the sixth most visited site in the United States.[2]
The name of the site refers to the paper facebooks that colleges and prepatory schools give to incoming students, faculty, and staff depicting members of the campus community.
Download (0.009MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
913 downloads
Ad-hoc Wireless Distribution System 6.0
Ad-hoc Wireless Distribution Service (AWDS) is a Layer 2 routing protocol for wireless mesh networks. more>>
Ad-hoc Wireless Distribution Service (AWDS) is a Layer 2 routing protocol for wireless mesh networks. The project provides transparent Ethernet-like access to all participating nodes, thus easily allowing the employment of different higher level protocols like IP (with DHCP), IPv6, AppleTalk, ...
A Linux implementation of AWDS can be downloaded from our download section. Ports to other platforms are highly appreciated!
<<lessA Linux implementation of AWDS can be downloaded from our download section. Ports to other platforms are highly appreciated!
Download (0.39MB)
Added: 2007-04-10 License: LGPL (GNU Lesser General Public License) Price:
941 downloads
Taskjitsu 2.0.7
Taskjitsu tracks tasks from inception to completion, and allows users to report the amount of time spent on each project. more>>
Taskjitsu tracks tasks from inception to completion, and allows users to report the amount of time spent on each project and task. Taskjitsu satisfies the needs of software development companies, consulting firms, and other organizations that need both flexible time and task tracking. It can generate billing summaries and payroll reports usable with any accounting system.
The system has been in production since 1997; its extensive features have been honed to allow the greatest possible ease in entering and editing data. It offers multiple options for configuring and customizing an installation to support the needs of diverse organizations.
Main features:
Portal View
- Once logged in, users are greeted by a customizable portal page, which provides the following information:
- How many hours theyve worked in the current pay period
- How long its been since they updated their timesheet
- How much leave they have
- How many tasks they have open, broken down into
- Those due soon / of high priority
- Those assigned recently
- Those ready or not to be tested
- Those with new notes.
- From there users can open a task timer, update the status of a task, or add a new note, as well as view all their open tasks, view all tasks, view all tasks assigned to another user, etc.
- Task View
Task Tracking
- Various permission levels: regular user with limited permissions, manager-level user with advanced permissions, and admin-level user with full permissions
- Global functions: add a task, view all tasks, view all open tasks, view single task
- Single task functions: edit task description, edit status, edit assignees, add / edit notes, start task timer
- Task timer: opens in a popup window, has a start / stop button, ability to have multiple timers open and running, option to save to timesheet
- Task roundup: lists the users open tasks in order to perform a batch status and note update (perhaps a weekly team activity to keep all members informed)
- Timesheet review: for admin users only, lists all timesheets for each pay period for review and approval
- Leave editor: for admin users only, add / remove / approve leave for all users
- Email notification: applicable users are notified when any aspect of the task is changed
- Timesheet View
Time Accounting
- Fields for task ID, project, activity, description, and start timer button
- Default view is the current timesheet, but users can edit all previous timesheets
- Popup windows for task, project, and activity lookup
- Option to view timesheets for other users, but only admins can edit other users timesheets
- Billing Report: lists hours worked, total billing, and (optionally) estimated cost per project.
- Payroll summary: lists number of hours worked, hours of leave taken, remaining, and accrued, per user per pay period
- Leave accrual can vary according to the employment status of your staff
- Productivity report: lists hours worked per project / activity per user, viewable only by managers
- Email notification: users are notified when admins add / edit leave
- Maintenance View
Maintenance
- Viewable only by admins
- Add / edit customers, projects, activities, users, and pay periods
- Set system defaults
Enhancements:
- This release includes a fix for a serious, remotely exploitable SQL injection flaw.
- All users should upgrade as soon as possible.
- This release also includes improved error reporting and more robust database connection handling.
- It is possible to change the status of task 48 in Taskjitsu.
<<lessThe system has been in production since 1997; its extensive features have been honed to allow the greatest possible ease in entering and editing data. It offers multiple options for configuring and customizing an installation to support the needs of diverse organizations.
Main features:
Portal View
- Once logged in, users are greeted by a customizable portal page, which provides the following information:
- How many hours theyve worked in the current pay period
- How long its been since they updated their timesheet
- How much leave they have
- How many tasks they have open, broken down into
- Those due soon / of high priority
- Those assigned recently
- Those ready or not to be tested
- Those with new notes.
- From there users can open a task timer, update the status of a task, or add a new note, as well as view all their open tasks, view all tasks, view all tasks assigned to another user, etc.
- Task View
Task Tracking
- Various permission levels: regular user with limited permissions, manager-level user with advanced permissions, and admin-level user with full permissions
- Global functions: add a task, view all tasks, view all open tasks, view single task
- Single task functions: edit task description, edit status, edit assignees, add / edit notes, start task timer
- Task timer: opens in a popup window, has a start / stop button, ability to have multiple timers open and running, option to save to timesheet
- Task roundup: lists the users open tasks in order to perform a batch status and note update (perhaps a weekly team activity to keep all members informed)
- Timesheet review: for admin users only, lists all timesheets for each pay period for review and approval
- Leave editor: for admin users only, add / remove / approve leave for all users
- Email notification: applicable users are notified when any aspect of the task is changed
- Timesheet View
Time Accounting
- Fields for task ID, project, activity, description, and start timer button
- Default view is the current timesheet, but users can edit all previous timesheets
- Popup windows for task, project, and activity lookup
- Option to view timesheets for other users, but only admins can edit other users timesheets
- Billing Report: lists hours worked, total billing, and (optionally) estimated cost per project.
- Payroll summary: lists number of hours worked, hours of leave taken, remaining, and accrued, per user per pay period
- Leave accrual can vary according to the employment status of your staff
- Productivity report: lists hours worked per project / activity per user, viewable only by managers
- Email notification: users are notified when admins add / edit leave
- Maintenance View
Maintenance
- Viewable only by admins
- Add / edit customers, projects, activities, users, and pay periods
- Set system defaults
Enhancements:
- This release includes a fix for a serious, remotely exploitable SQL injection flaw.
- All users should upgrade as soon as possible.
- This release also includes improved error reporting and more robust database connection handling.
- It is possible to change the status of task 48 in Taskjitsu.
Download (2.0MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1116 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above employment search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed