|
I like Dean Smith. He is genuinely a nice bloke. This makes it even harder to be this ruthless. Unfortunately he is at best a league 2/cpnference football manager. Why? Well let me explain.
To be a good manager at any level you firstly need to identify...
Started by m&m on
, 26 posts
by 18 people.
Answer Snippets (Read the full thread at upthesaddlers):
This summer will be make or break for his managerial career I think - purely because... .
If they do that, then I won't be bothered as well .
They won't sack him - but we can only hope for is proper investment and that we do not resign Nichols, beevers or Macken .
|
|
So first AlexanderVII thanks GG instead of using the "thanks" button
then GG thanks AlexanderVII just to bump her own thread instead of using the "Thanks" button
and I "thank" GG for thaking alexander for thanking GG
wtf redundancy and irony define in...
Started by problematique on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at indigosociety):
|
|
Call me "grammar nazi", but yes, it hurts every single time I read or hear "Thank's God" or "Thanks God". Ok, let me tell you why we CAN say "Thank God" but not the other two.
WHY "THANK'S GOD" IS WRONG
The punctuation mark (looking like comma) is called...
Started by grammarian on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at kaskus):
Ok, let me tell you why we say "thank ....
For making me stronger, thanks, God! So Thank God means I thank God?
hmm really nice information, it hurts every single time I read or hear "Thank's God" or "Thanks God".
|
Ask your Facebook Friends
|
I don't know what __setstate__ __getstate__ does ,so help me use a simple example,thanks
__setstate__ __getstate__
Started by zjm1126 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's ....
This is usually handled automatically, so unless you need to override how a class is pickled or unpickled you shouldn't need to worry about it .
These methods are used for controlling how objects are pickled and unpickled by the pickle module .
|
|
Hello, and thanks for reading.
I am building a data entry form. I am trying to figure out a way to let the user to provide a criteria (last name for instance), search the employee table for all employees that match the criteria, display the result in ...
Started by Luis on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Consider Scott Gu's Example blog
http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx
public static void GetEmployeeIDByLastName(string lastName) { DataContext dc = new DataContext(); var queryResult = ... .
I suggest using Linq.
|
|
$('#a').keyup( function(event){ alert(event.keyValue) } )
but error,coz 'keyValue' is not undefined,
how do i get the keyValue when the event keyup???
i use jquery.
thanks
i do this:
$('#a').keyup( function(event){ alert(String.fromCharCode(event.which...
Started by zjm1126 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See here: http://api.jquery.com/keyup/
To determine which key was pressed, we can examine... .
Try event.keyCode instead
Check out this question: jQuery Event Keypress: Which key was pressed?
JQuery places the key pressed into event.which across all browsers .
|
|
What we need: redirect to each user's specific page after their loggin.
What we have tried: Login Toboggan module: can be direct to each user's profile page, however we do not where to define specific node, i.e node 15 for user David. If you have experience...
Started by LoveLife on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The documentation on that page is pretty clear, but in case you need some more help, your PHP snippet will end up looking something like:
global... .
You can use PHP to set specific nodes to redirect to per user .
I'd recommed the Login Destination module.
|
|
I'm attempting to take 4-5 fields from a large django form and display them on the thanks page.
I want to disply the values with a good degree of control, as i'll be building an iFrame with parameterd querystrings based on the form inputs.
Currently I...
Started by Chris on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You want to provide....
Not sure why.
For no good reason, you've provided locals().
See this.
The render_to_response function provides a dictionary of values that are passed to the template .
The values available to the template are provided by the view .
|
|
When a person registers on my site, or logs in, they are sent to "thanks.php".
The page checks is you're logged in or not and if so, tells you what you can do and if not, gives you a link to the register.php page.
However, anyone can make their own cookie...
Started by WebDevHobo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Session_start(); $_SESSION['logged_in'] = true; session....
So, a secure way to do this would either be set a SESSION cookie, with some variable, and check for that .
You cannot generate any Session Data or Database Data without having access to the server .
|
|
UPDATE
Finally managed to work it out! Thanks for all the help from everyone. If you spot any potential errors or scope for improvement in my query please let me know.
SELECT * FROM TBL_CAMPAIGNS C INNER JOIN TBL_MEMBERS M ON C.campaign_MemberId = M.members...
Started by Munklefish on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
SELECT * FROM TBL_CAMPAIGNS C JOIN TBL_MEMBERS M ON C.campaign_MemberId = M.members_Id JOIN TBL_CHARITIES CH1 ON CH1.cha_Key = C.campaign_Char... .
First thought is that you'll have to join the TBL_CHARITIES table again for each reference you want to give .
|