Sponsored Content
The Lounge What is on Your Mind? CNET News Reader App for the Forums Post 302464807 by Neo on Thursday 21st of October 2010 03:51:20 AM
Old 10-21-2010
Update:

Unfortunately, potential developer did not live up to expectations.

During discussions, potential developer said he was aware of a CNN app for vBulletin and when I asked to see the link, he promised the next day. Never received it (just a bunch of links to other projects).

My experience with these eLance developers is mostly the same, disappointing story:
  • They cannot provide a proper proposal or bid to a project.
  • They send many unverifiable references and claims as to expertise.
  • They promise the "sun, moon and stars" but cannot even deliver a few simple grains of sand.

This developer agreed to ask questions in this thread; and then after I created this thread, he kept sending emails and private messages. As you can see, they never posted here after I took the time to create the thread (and send him the link to the thread).

When will these "freelancers" learn how to simply deliver on what they agree to, even on the small details?

When will they realize that if they cannot even keep their word on some small claim or thing they agree to, we will never award a project to them?


---------- Post updated at 07:51 ---------- Previous update was at 07:20 ----------


OBTW, if anyone has an iPhone, Android, or Nokia phone and want to read the forums, you can download this app for your mobile. More than just a reader, you can also post and send PMs from your mobile app. This might be handy in a number of situations, like troubleshooting a problem where you don't have access to your desktop machine, or keeping up with forum posts while on the train or waiting in line at the store.
 

2 More Discussions You Might Find Interesting

1. Programming

Proximity-card reader: no data when app window out of focus

Hello. I can't get it work :( My application receives data from em-marin reader only being active. Switching to another app makes the port become silent. MarinReader works in another thread. Port reading is going while the app is inactive (tested). Env: Ubuntu 9.04, Gnome, Qt (i've tryed pure... (2 Replies)
Discussion started by: Dp0H
2 Replies

2. What is on Your Mind?

Tapatalk App for Reading Forums on Mobile

Reading The UNIX and Linux Forums on My Mobile Phone For testing purposes, I have installed Tapatalk on my mobile (Samsung Galaxy S running Android 2.1 for now). Feel free to give it a try and post back any comments. You can now read The UNIX and Linux Forums on your mobile via this app.... (7 Replies)
Discussion started by: Neo
7 Replies
PTHREAD_KILL(3) 					     Linux Programmer's Manual						   PTHREAD_KILL(3)

NAME
pthread_kill - send a signal to a thread SYNOPSIS
#include <signal.h> int pthread_kill(pthread_t thread, int sig); Compile and link with -pthread. DESCRIPTION
The pthread_kill() function sends the signal sig to thread, a thread in the same process as the caller. The signal is asynchronously directed to thread. If sig is 0, then no signal is sent, but error checking is still performed; this can be used to check for the existence of a thread ID. RETURN VALUE
On success, pthread_kill() returns 0; on error, it returns an error number, and no signal is sent. ERRORS
EINVAL An invalid signal was specified. ESRCH No thread with the ID thread could be found. CONFORMING TO
POSIX.1-2001. NOTES
Signal dispositions are process-wide: if a signal handler is installed, the handler will be invoked in the thread thread, but if the dispo- sition of the signal is "stop", "continue", or "terminate", this action will affect the whole process. SEE ALSO
kill(2), sigaction(2), sigpending(2), pthread_self(3), pthread_sigmask(3), raise(3), pthreads(7), signal(7) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2012-08-19 PTHREAD_KILL(3)
All times are GMT -4. The time now is 02:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy