Posts

Change Dial Centre Label For GPO 706 Phone

Image
Written by   McDonald, T.   | Date 9th of February 2022 Until 1969, the telecommunications carrier in the United Kingdom was apart of the General Post Office (GPO). Subsequently, the GPO distributed telephones called the 700 series to its subscribers. You have an old GPO phone and want to change label in the centre of the dial but don't know how. First, it does matter which phone you have because the procedure is very different. To correctly identify your phone, look at the dial: is it like the one in the image above? Bearing in mind some earlier 706 models had metal dials and straight handset cords. If you have a phone that has numbers inside a clear plastic dial it is likely a 746 and has a different procedure. This blog is for the 706. What you want to do Change the dial centre label. Your phone specifications GPO 706 Phone. Rotary dial.  What you will need A flat head screwdriver. What to do This is an easy task just insert the screwdriver into the right side of the dial as

How To Add A Jump Link To Your Blog

Image
By     McDonald, T.    | Updated 30th of June 2022 While surfing the internet, you may have noticed that some sites have an index that lets you jump to different parts of the same webpage and thought 'That is cool!'  Well, this is how you do it.  I have used blogger to demonstrate how it is done, but the process will be very similar for most blogs. What is a jump link A jump link is a link that lets the user jump to certain pats of the same webpage they are viewing. How to add the code You will need to add a simple piece of code. Make sure you add it just before the code you want it to jump to.  Note, the anchortext should have no spaces and anchortext can be anything you like.  For instance, you can replace anchortext with intro or con. The code is encapsulated in a span tag.  See below. <span id="anchortext"></span>   For example, if you want to jump to a header on the same page, you put the above code just before the <h1> tag in the HTML. Select

How To Connect An XBOX ONE Controller To A Mac

Image
By   McDonald, T.    | Date 30th of May 2020 This is much simpler these days than ever before. All you need is your controller, your mac and an app from the app store that is free. Go to the app store Search for Game Controller Tester Download the app Open the Bluetooth app on your Mac and make sure the Bluetooth is on. Open the app and turn on your controller. Press the little button on the front of your controller and hold it down, see figure 1. The XBOX button should start flashing. You should now see your controller in the list of Bluetooth devices, see figure 2. You might need to click on connect when you use it again, but it usually connects automatically after the first time. Figure 1, small button in front of controller will find a connection when held down. Figure 2, Bluetooth device list If you want to see what i did, here is the video. Happy gaming! Please like and subscribe.

A Storm Is Coming

Image
By   McDonald, T.    | Date 29th of November 2020 The future as we know it is uncertain. As we become more and more dependent on computers and machine do we put our very existence at risk? Even in entertainment, sci-fi is constantly airing our subconsciousness concerns about our own demise. Now we have the problem of algorithms determining what type of propaganda gets the best results from us. As we move into an uncertain future due to the high levels of propaganda from politics and religion on the net not to mention the violence, the tension on the street and in everyday life grows. What are the problems that we face?   Influence from outside our nations: bots on the net.   By this i mean foreign countries with malicious intent.  You know how businesses collect information for advertising purposes so they can make adverts that are more appealing to someone?  Well, political parties can do the same.  Algorithms collect information on you and then determine what type of person

Best Coding Editor

Image
By McDonald, T.   |  Date 11th of February 2021 Starting the 100 days of code challenge? New to coding? The first thing that you need to do is get a suitable coding editor or IDE. This will allow you to code and make it a much easier experience. For instance, a good editor will highlight any syntax errors and throw up exceptions that once you have learned what they mean will give you clues as to the mistakes in your code. In addition, you will need to compile some code, the IDE will do for you, in order to make it run. Exceptions are errors found in the code at either runtime, when you try to run the code, or by the complier when you compile the code. Notably, you will need to install some languages in order to start coding.  For example, if you want to code in Java, you will need to install Java on your computer. However, if you want to code something more server side like javaScript, you will not need to install a language called javaScript. Coding Languages that we th

Relational Databases

Image
By McDonald, T.   |  Date 5th of November 2020 Why use a database? Databases are a great way to store and retrieve data.   Since they are so widely used in computing, knowing how to use them is a must have skill in this industry.   For instance, many websites use databases to store product details.   One of the main benefits to databases is allows data to be organised, manipulated and retrieved rather than just storing it making it a very powerful tool.      Tables and keys First let’s look at the parts of the table  Customer_Table customer_id name address phone 1 Tony McDonald Some place 0788454567 2 A man 17 somewhere else 0793453459 3 A woman 45 who knows 0712311180   All relational databases have columns and rows.   Columns are vertical, so phone is the label of a column containing phone numb