Headhunting, Recruiting, Consultation Requests...


 
Thread Tools Search this Thread
Contact Us Post Here to Contact Site Administrators and Moderators Headhunting, Recruiting, Consultation Requests...
# 1  
Old 12-16-2011
Headhunting, Recruiting, Consultation Requests...

I had a consultation request thread removed and a PM telling me to read the rules. I actually DID read the rules prior to the posting...gave pause on the headhunter/recruitment clause...decided that rule was for more permanent positions and went forward with the consultation request.

I understand they are similar...might I suggest clarification in the rules to include "consultation" requests in addition to headhunting and recruiting as their is some grey area there (it tripped me up...41 years young, professional in the industry for 15 years, 162 IQ, like to follow the rules).

Might I also suggest you reference the "jobs" sub-forum in the particular section of the rules for others to avoid my misstep.

Inclusion in the PM that the thread was to be removed would have been appreciated, moving it to the "jobs" forum would have been a friendly gesture for someone new to your forums.

I certainly appreciate your time and efforts.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Recruiting for an open source project

I am posting this gauge the level of interest among the community in forming an open source team to work on an automation harness I am about to make available. I already have a working POC running at my place of work, but it is not secure enough for production environments. However, I am about... (6 Replies)
Discussion started by: steadyonabix
6 Replies

2. HP-UX

Some I/O requests to this LV are waiting

Hi All I have a blade BL860c running on a C7000 chassis, in which is connected to a NetApp, so lately I am having I/O issues, and dmesg as well as syslog.log is reporting the following: /dev/vg01/lvol2 file system file data error in dev/block 0/55892768 Page I/O error occurred while paging... (2 Replies)
Discussion started by: fretagi
2 Replies

3. UNIX for Dummies Questions & Answers

turning off certain http requests

On a sparc solaris 8 host running sunone webserver 6 I would like to limit the http requests that can be used when port 80 is accessed. We currently have http/1.0 enabled. For example I would like to remove the http request DELETE. Regards, BLP (1 Reply)
Discussion started by: blp001
1 Replies
Login or Register to Ask a Question
pause(2)							System Calls Manual							  pause(2)

NAME
pause - suspend process until signal SYNOPSIS
DESCRIPTION
suspends the calling process until it receives a signal. The signal must be one that is not currently set to be ignored or blocked (masked) by the calling process. If the signal causes termination of the calling process, does not return. If the signal is by the calling process and control is returned from the signal-catching function (see signal(5)), the calling process resumes execution from the point of suspension; with a return value of -1 from and set to APPLICATION USAGE
Threads Considerations Signal dispositions (such as catch/default/ignore) are shared by all threads in the process and blocked signal masks are maintained by each thread. Therefore, the signals being waited for should not be ignored by the process or blocked by the calling thread. will suspend only the calling thread until it receives a signal. If other threads in the process do not block the signal, the signal may be delivered to another thread in the process and the thread in may continue waiting. For this reason, the use of is recommended instead of for multi-threaded applications. For more information regarding signals and threads, refer to signal(5). SEE ALSO
alarm(2), kill(2), sigwait(2), wait(2), signal(5). STANDARDS CONFORMANCE
pause(2)