Tuesday, September 19, 2017

A video you might find useful.

I've watched this video twice. As someone with Schizophrenia, I think it is a pretty accurate account.
https://www.rethink.org/get-involved/rethink-schizophrenia…

Of all the symptoms - "difficulty concentrating" - is the one thing I've been able to have some success with. One indicator that supports that is my review of the "Effective Ruby" Live Lessons video files in this month's CVu magazine. It took a lot of time and effort.

When you mix three of the symptoms together - difficulty remembering, paranoia and delusions - you have a potent mixture that can make day to day living a struggle - you are never quite sure what other people have said to you - did you imagine that someone is annoyed with you? - are they plotting something? - there must be a conspiracy against me. And you start to question your own behaviour as well. You then start remembering conversations that probably didn't happen, making things even worse. And eventually you realise your doubts are unfounded and just carry on.

Saturday, August 26, 2017

A day in the life of a Womble - August 2017

Sometime back, Jean's computer failed. The Computer Wombling Project had recently been given a tower PC so that was tested, the hard drive wiped and lubuntu Linux installed and passed on to Jean.

Spent a good amount of time last night and today trying to prod Jean's old computer to work - resorted to scavenging parts today.

I have a device, which I call the "Octopus" - actually a "USB 2.0 to SATA/IDE adapter with power adapter" which I used to connect the scavenged hard drive and DVD writer. I gave the hard drive a new partition table and formatted the hard drive (ext4, of course).

The computer doing the formatting etc is a Dell Latitude CPx J650GT laptop. It is a 2003 era device (used sudo dmidecode for that info) and I use it to check devices I am not completely sure of. Waste not, want not and all that. Hostname is verne, user name is jules - so the command prompt reads "jules@verne".

I used GPartED on the scavenged laptop to create the new partition table and partition and as a result the new partition was owned by "root". I tried using sudo chmod and sudo chown and sudo chgrp. Eventually, after a certain amount of time, the laptop grudgingly agreed that a non-root user could write to the drive.

Wednesday, July 26, 2017

Monday night at St George's


Was at St George's on Monday evening. As I walked in I noticed a number (about 7) Police vehicles, with Police staff sorting out their clothing. Asked what was happening and they said they were sorting out their clothes. So I went into reception and started reading "The Ruby Programming Language" as usual. Later on I looked up and a group of Police in riot gear - stab vests and transparent shields - Roman style (rectangular) and Pict style (Round) flanked by Police with yellow hi-vis jackets on. They headed off to one of the wards so I resumed reading. After a few hours the Police vehicles disappeared so I presume it finished OK.

Saturday, July 15, 2017

Political satire and disability.

I was watching last night's "The Last Leg".

I was wondering, what would be the right name for a similar programme that has people with mental health problems as presenters?

* The Last Neuron?
* The Last Synapse?
* The Last Med?

Saturday, May 27, 2017

Employment

Many companies ask for people with vision. They are not too keen on taking on people who have visions.

If people want to experience what it is like to work whilst experiencing a mental illness, I suggest they take medicine with unfortunate side-effects - e.g. increased appetite - I once ate a cauliflower cheese meal in a hospital - despite hating cauliflower. And a sedative. Try getting in to work by 9am every weekday on public transport (because you can't take the meds and drive a car) and under the influence of said medication.

Sunday, May 14, 2017

I.T. common sense

Hope you haven't been too put out by the WanaCry ransomware attack.

As ever, the cheapest ways to do this is:-
* Ensure staff are trained well. Especially the non-technical staff.
* Ensure all computers have their software regularly updated with maintenance/security updates (aka patches).

The term "patch" comes from the Open Source community on the Internet.

Software written as scripts (Basic, Ruby, Perl, Python etc) are provided in source code form and require another programme, an interpreter to run them. Here is an example programme in Ruby:-

#!/usr/bin/env ruby
require 'Qt'

# For info on using Qt from Ruby programs, see my file qt-notes.txt

app = Qt::Application.new(ARGV)

hello = Qt::PushButton.new('Hello World!')
hello.resize(100, 30)
hello.show

app.exec

So... if someone wanted to improve the above programme, they would edit the above programme on their system. They would then put the original script and the updated script through a programme called diff, that lists the changes that have been supplied. Then the original author can take those patches and make the changes by running the original script and changed script through a programme called patch. Hence the name "patch" :)

Software written in compiled languages (C,C++ etc) can be provided in source code form. Here is an example:-

/*
 Hello Concurrent World example program.
 This text here is part of a multi-line comment
*/


#include <iostream>
#include <thread>

void hello()
{
    std::cout<<"Hello Concurrent World"<<std::endl;
}

int main()
{
    std::thread t(hello);
    t.join();
}

You would run the above software by running it through a compiler, That takes the programme text - and compiles it into binary file(s) suitable for a particular hardware architecture and you run that.

Given the source code, however, someone can improve the software by making changes and again use diff and patch to provide the original author with their proposed changes.

Software would be shared by people on hardware platforms with wildly different architectures and operating systems.

When people talk about "patching" Windows systems they are typically referring to downloading binaries. Someone, somewhere, will have the source code, will have identified and fixed bug(s), compiled it into binary and made it available via Microsoft's Window updates facilities.

Sunday, March 12, 2017

D.L.A. ending, P.I.P. being applied for.

Well, the P.I.P. form is almost complete. I would like to thank both the lady from the Citizen's Advice Bureau and Richard Crow for their help. I have been given a covering letter and Care Plan from the Long Term Care Team to accompany the claim - to whom I am deeply grateful.

However, this process is highly stressful. What do I need PIP for? Well, the biggest problem with schizophrenia is that it makes salaried work very difficult.

Whilst working in 1999, I had an episode, my G.P. gave me a sick note with "Mental instability" on it. Within a month I was made redundant. My next job lasted until 2001 whereupon I was again made redundant. This time I had my first admission into a Psychiatric Hospital - about three months in St George's. It is a bit of a quandary, isn't it?

Fortunately I have hit on a compromise - being a part-time volunteer for Contact:-
  • I.T Volunteer – tuition, support and acquisition of technical equipment.
  • Run a fortnightly “Hearing Voices Group” for people affected by this.
  • Act as a proof reader of Contact’s publications – newsletter etc.
  • When things are quiet, I improve my skills via books and a laptop running Linux. I am renowned for my intense study and note taking of programming text books. Whilst doing that, I sometimes have a background task – making the cups of tea or coffee or staffing the phones.

Saturday, January 28, 2017

Brexit

Britain's advisory referendum was intended to tell Parliament the (voting) public's point of view on this question:-

"Should the United Kingdom remain a member of the European Union?"

As it turns out, there were a lot of lies distributed by both Leave and Remain.

In particular, I saw the now infamous Big Red Bus with this message in huge writing on the Bus:-

"We send the EU £350 million a week lets fund our NHS instead Vote Leave"

As it turns out, the above figure was a lie. I did not trust it and voted Remain.

However, I have discovered a few interesting things about the EU. They have a website about myths about the EU (European Union).

Immigration was cited as a key problem. Did some Googling and found a page about Free Movement of Persons across the EU and found this quote:- "For stays of over three months: the right of residence is subject to certain conditions. EU citizens and their family members — if not working — must have sufficient resources and sickness insurance to ensure that they do not become a burden on the social services of the host Member State during their stay. Union citizens do not need residence permits, although Member States may require them to register with the authorities. Family members of Union citizens who are not nationals of a Member State must apply for a residence permit, valid for the duration of their stay or a five-year period."

So, what next? I am taking every opportunity to oppose Brexit.

I am a Snowflake - 16,141,241 of us voted to Remain. If you are an Exiter, take this statistic as opposition to your stance.

I think the main desire of Exit voters was to vote for change. Both the UK and EU must change. UK voters have endured stagnant wages, the rich getting richer and the poor getting poorer and austerity measures.

The Letter

The Dreaded Letter has arrived - my DLA (Disability Living Allowance) is coming to an end and I will have to apply for PIP (Personal Independence Payment).

Saturday, January 21, 2017

To Quote Jo Cox

In the light of Trump's coronation and the ongoing Brexit civil war, I'd like to quote Jo Cox, the MP assassinated by an Evil man.

"We Are Far More United Than The Things That Divide Us’

For more information, see this Wikipedia page.