I saw the advert on the TV yesterday and gave in so I’ve just signed up for my first free box.

It’s a great idea, choose from loads of tasty healthy (and not so healthy) treats and have them delivered to you at home or work whenever you like.
You can get your first box for free at the moment and there’s no commitment to continue on with more. All you need to do is use the special discount code TZHV19BT and you’re off! And if you do continue you also get your fifth box free – what a deal!
Go to graze.com and get started – from the freshly made foccacia bread to olives, from toasted nuts to fruity ploughman’s.

Get a free box from graze.com with this code: TZHV19BF – healthy snacks delivered to your desk: www.graze.com

Why Psychology?
To investigate the reasons for my students choosing to study psychology I set up a surveymonkey.com questionnaire that I emailed around to my current classes and placed on a Facebook page for previous students to complete. Over the duration of 5 days 54 students responded with the majority of those being current student AS 38%, A2 22%, 4% both) and 33% of the respondents being former students. See the full results of the survey here: http://dl.dropbox.com/u/61514/msc/PsychologyPerceptions.docx
Reflecting on the results to some of the closed questions I was initially surprised to find that 95% of the students had chosen psychology within their top three subjects with 40% of students choosing it as their 1st choice subject at enrolment. Also, it was interesting to see that the vast majority of students had some prior experience of the expectations of us as a psychology department and of the content of the course through year 10 taster days (20%), open evenings (52%) and Wyke Start (a three day taster in July for prospective students)(93%).
Reviewing the answers to the question ‘why did you choose to study psychology’ the overwhelming nature of the responses fell into the ‘sexy’ or intrinsic interest category suggested by Jarvis. Of the responses I categorised 35 of the responses at falling into this category. Further, when looking at these 35 there were four sub-categories that were evident: career or university progression, sounded interesting (both recognised by Jarvis) but two others were specifically stating that they wanted to know about people and why they behave the way they do (this could be merged with ‘interesting’ but I felt that it was worth noting) and those that stated it was a 4th option and didn’t know what else to take.
In relation to the ‘rigor hypothesis’ put forward by Jarvis no students referred to taking the course as they felt it was an easy option or that it would be more accessible than other courses in their program. Actually, the responses to the ‘what advice would you give to a friend who was thinking of studying psychology’ suggest quite the opposite feeling from students who are half-a-term into studying the course. Analysing the responses I categorised them into the following:
Comments about the psychology course being:
| Hard work, challenging etc. | Fun, exciting etc. | Interesting, eye opening etc. |
| 18 | 5 | 16 |
The results from the question on comparative difficulty gave slightly different results to those found by Hirschler and Banyard (2003, Jarvis pg. 3) with only 24% of students finding the course slightly or much more difficult than their other courses and 50% stating it was ‘about the same’.
Although not in the remit of this task the comments to the ‘how could psychology be better’ often referred to course content, the specification content of the boards that we deliver and student reflection on teaching methods and resources in the department. All things that I am currently reflecting on and will hopefully get to revisit over the duration of this course. As touched on by Joanna a key point that is often noted by the students’ perceptions of psychology is that of interest in the subject. A challenge is for psychology teachers to keep this interest as we deliver specifications that do not always allow the students to explore areas of their interest or more recent developments in psychology.
Preparation for University
Working at a sixth form where last year 325 of the 399 students applied for a higher education course and of these 254 took places in September 2011 it is vital that we are preparing those students for university. Almost 20% of our A2 psychology cohort (111 students) took placement on a psychology related course this year. Looking at the results from my questionnaire this could increase over the coming years with 53% of respondents stating that they would like to study psychology further following their A Levels.
More so than other subjects I feel that psychology develops many transferable key skills in research, analysis, data manipulation and evaluation and this may put the students at an advantage during their first year at undergraduate level (which is supported by the findings of Linnell, 2003). It seems we are preparing students at some level with some (maybe not enough) skills but the subject knowledge that we deliver at A Level is so far removed from that of many university psychology courses that it cannot prepare them for the demands, awareness of current research, and more specific disciplines within these courses.
I make the following comments with the full awareness it could open a massive debate on the pro-vs-anti coursework issue … but … now that coursework, assessed practical research skills (APRS), or whatever term you wish to attach to such work, has been removed from A Level specifications I do fear that we are not preparing our students with the level of ‘hands on’ awareness of conducting psychological experiments. Research and research methodology is central to any psychology degree and it could be argued that all the specifications do currently assess research methods through examination but I don’t feel that this is the same thing, not by a long shot. There is quite an interesting discussion about APRS in the October 2011 ATP Today magazine.
Currently I am delivering the Edexcel specification, which involves students conducting a variety of ‘studies’, that they then could be asked questions on in the examination. I do get the students to conduct a study, or at the very least, collect some data that can be collectively analysed as a class, but I don’t feel that they are getting the same experience as they used to pre-2008.
In a recent article in The Psychologist (The journey to undergraduate psychology) Phil Banyard is quoted as saying: “…the ideal psychology undergraduate is someone who engages, who has an interest, has their own ideas, and the ability to look beyond the question… we’re looking for people who ask questions, to have a sense of wonder and to be inquisitive” (http://bit.ly/o2kb9U). Not too much to ask then! How are we as psychology teachers expected to foster and encourage all of these skills as well as covering the increasing content and skills required to be successful in any of the current A Level specifications?
This morning I wanted to hack around with Vanilla forums and convert a phpBB 3 installation over to it. After several attempts at the installer I found that I couldn’t run it ‘as is’ on my 1&1 managed server. The issue is that Vanilla’s PDO connection method has been written to only work with host access (such as localhost, or 127.0.0.1) rather than socket access (see http://www.php.net/manual/en/ref.pdo-mysql.connection.php). To get it working using a socket like: localhost:/tmp/mysql5.sock took a little hacking around in the code. Here is a wee how-to for anyone else that might come across the same problem.
There are two files that you need to be edit before you start the install:
library/core/functions.general.php library/database/class.database.php
First open library/core/functions.general.php and find the function called GetConnectionString (I found it on line 680). It looks like this:
if (!function_exists('GetConnectionString')) { function GetConnectionString($DatabaseName, $HostName = 'localhost', $ServerType = 'mysql') { $HostName = explode(':', $HostName); $Port = count($HostName) == 2 ? $HostName[1] : ''; $HostName = $HostName[0]; $String = $ServerType.':host='.$HostName; if ($Port != '') $String .= ';port='.$Port; return $String .= ';dbname='.$DatabaseName; } }
A simple change to the code here is to change the line:
$String = $ServerType.':host='.$HostName;
to:
$String = $ServerType.':unix_socket='.$HostName;
Save the file. This will ensure that you can run the install. Now you need to make sure that following the install you can point to the right database.
Moving on to the library/database/class.database.php file open this and look for the following code (line 183-195):
if(!isset($Dbname)) { $Dsn = $DefaultConfig['Dsn']; } else { if(empty($Port)) { // Was the port explicitly defined with the host name? (ie. 127.0.0.1:3306) $Host = explode(':', $Host); $Port = count($Host) == 2 ? $Host[1] : ''; $Host = $Host[0]; } if(empty($Port)) { $Dsn = sprintf('host=%s;dbname=%s;', $Host, $Dbname); } else { $Dsn = sprintf('host=%s;port=%s;dbname=%s;', $Host, $Port, $Dbname); } }
The initial if(!$Port) conditional needs to be commented out (or removed) and the second one needs the host changing to unix_socket. When you’re done it will look like this:
if(!isset($Dbname)) { $Dsn = $DefaultConfig['Dsn']; } else { /* **This could be deleted** if(empty($Port)) { // Was the port explicitly defined with the host name? (ie. 127.0.0.1:3306) $Host = explode(':', $Host); $Port = count($Host) == 2 ? $Host[1] : ''; $Host = $Host[0]; } ** Stop deleting here */ if(empty($Port)) { $Dsn = sprintf('unix_socket=%s;dbname=%s;', $Host, $Dbname); } else { $Dsn = sprintf('unix_socket=%s;port=%s;dbname=%s;', $Host, $Port, $Dbname); } }
When this is done go to the install page and complete all your database access details as normal, until you come to the host. You need to remove localhost from your host; it should look something like /tmp/mysql5.sock rather than localhost:/tmp/mysql5.sock.
The possible issue with this is that you will not be able use this hack if you’re running MySQL on a non-default port (anything other than 3306) as we have just removed the code that Vanilla uses to strip the port number from the host.
Enjoy!
Disclaimer: This worked for me. I can’t guarantee that it will for you. It’s never a great idea to start playing around with code so if you break anything it’s not my fault!

Well I hope not. This isn’t the first ‘Difficult First Post‘ I’ve made but at least then I knew where I wanted to take the site. Anyway. A place for my thoughts and musings on what I’m up to in the world of Psychology, teaching, writing or coding.





Jamie Davies is occasionally brilliant, sometimes moody, workaholic and lazy to the bone. A 28-year-old psychology teacher, writer, geek and all-round-top-chap from Yorkshire.