Don’t call it a Twitter Revolution just yet. Sure, protesters in the Middle East are using the short-messaging service — and other social media tools — to organize … But don’t confuse tools with root causes, or means with ends. The protests in Tunisia, Egypt and Yemen are against dictators who’ve held power — and clamped down on their people — for decades. That’s the fuel for the engine of dissent. The dozen or more protesters that self-immolated in Egypt didn’t do it for the tweets.A quote from Wired Magazine that I found on TweetageWasteland, a blog which looks at the reality - and the problems - of social media.
Wednesday, 9 March 2011
The Middle East
Sunday, 6 March 2011
Status update
Since I am now no longer officially in the Computer Science class (I'm self-studying the course) then any funny links, TED talks, Twits- sorry, Tweets (Freudian slip, my bad) or anything else cool that we're shown in class will be sincerely appreciated. Just post it in a comment or something.
Oh, also, if you have links to any work-related information or stuff that we need to know for the exams, feel free to send me that too. Thanks!
Oh, also, if you have links to any work-related information or stuff that we need to know for the exams, feel free to send me that too. Thanks!
Thursday, 3 March 2011
Operating systems
Operating systems have two major functions:
1. Controls information flow between input devices, secondary memory and output devices:
The operating system interprets information from input devices such as mice and keyboards, and sends this to output devices such as the screen. It also controls which information is written to and accessed from the hard drive. This includes programs which perform user-orientated tasks, as well as utility functions.
2. Allocate processor time and RAM space:
The operating system controls which applications can use the processor and for how long. It also controls the distribution of RAM.
Wednesday, 2 March 2011
Hardware
PROCESSOR
^
|
v
INPUT ---> RAM ---> OUTPUT
^
|
v
STORAGE
Tuesday, 22 February 2011
Mr Wells, would you mind
Getting our blogs unblocked during school hours? Because otherwise it basically kills any and all plans you had for us to use these things productively.
Sunday, 20 February 2011
Arraise!
An array... is a group of variables, pretty much. In some languages there are built-in array data types, but in Visual Basic they are literally individual variables with similar names.
That's all.
Real-time updating
>>> "I want you all to go back and make changes to what you copied from Richard."
>>> implying people in this class can actually do that
>>> implying people in this class know what loops are
>>> fail
Edit: no offence intended, Grace Steven James Josh Ollie. (Grace's name is highlighted because she's the one to copy off next time, everybody) :P
>>> implying people in this class can actually do that
>>> implying people in this class know what loops are
>>> fail
Edit: no offence intended, Grace Steven James Josh Ollie. (Grace's name is highlighted because she's the one to copy off next time, everybody) :P
Thursday, 17 February 2011
Driving me loopy
There are three types of loops used in Visual Basic:
For...Next
Do While
Loop...Until
Each performs basically the same function - running a piece of code multiple times - yet they are each somewhat specialised.
The For...Next loop is used to run a piece of code a set number of times (it is the only loop with a set number of iterations). As its name suggest, it is used when a function needs to be carried out FOR each of several items, for example when doing formatting for each name in a list. The For...Next loop changes a variable every time it runs, so that the function can be specialised for each item.
The Do While loop runs a piece of code if a condition is true. If the loop starts running, here must be a section inside the loop to either alter the condition or break out of the loop, otherwise it will run indefinitely. If the condition is initially false, the Do While loop does not run at all. It could be used instead of a Loop...Until loop nested in an If statement.
The Loop...Until loop is exactly the same as the Do While loop except that it will always run the code inside before checking whether the condition is true; that is, the code inside will always run at least once even if the condition is false.
Loops can be nested inside each other or used in conjunction with control flow statements.
For...Next
Do While
Loop...Until
Each performs basically the same function - running a piece of code multiple times - yet they are each somewhat specialised.
The For...Next loop is used to run a piece of code a set number of times (it is the only loop with a set number of iterations). As its name suggest, it is used when a function needs to be carried out FOR each of several items, for example when doing formatting for each name in a list. The For...Next loop changes a variable every time it runs, so that the function can be specialised for each item.
The Do While loop runs a piece of code if a condition is true. If the loop starts running, here must be a section inside the loop to either alter the condition or break out of the loop, otherwise it will run indefinitely. If the condition is initially false, the Do While loop does not run at all. It could be used instead of a Loop...Until loop nested in an If statement.
The Loop...Until loop is exactly the same as the Do While loop except that it will always run the code inside before checking whether the condition is true; that is, the code inside will always run at least once even if the condition is false.
Loops can be nested inside each other or used in conjunction with control flow statements.
Wednesday, 16 February 2011
Subscribe to:
Posts (Atom)


