top of page

Search Results

68 elementi trovati per ""

  • Computer | Qâf ScaleModels Gozo

    What is a computer? Computers are not really that mysterious. There’s no shadowy gremlin cycling his way around a treadmill to make it run. Although sometimes one feels there is a gremlin at work pulling the operating system or data apart. ​ Computers have evolved immensely since I started building them, moving from measly Kilobytes of RAM to Gigabytes. Floppy Drives made way for DVD Drives and now DVD Drives are virtually obsolete, Hard drives have also changed, from mechanical, hybrids, then Solid State and have increased in size, speed, and reliability. ​ I will discuss individual components, operating systems, networking, and driver/software programming later. What is a computer? ​ Well, it is several devices put together to make an electronic device that can manipulate and store data. They come in various formats, but the main are: ​ Desktop Laptop Tablets and Smart Phones Servers ​ Using the correct software, computers have the capability to process, store and retrieve data. Whether it be, a document, mathematical problem, spreadsheet, presentation, image, or video. They can be used to browse the Internet, send emails, video conferencing, play games, write computer language, and used to access online shops. A computer is made up of several parts: ​ Motherboard or Mainboard – The motherboard is the device that ties the computer’s components together and allows each component to communicate with each other using software and device drivers. Without the motherboard, none of the attached devices, such as the CPU, GPU, or HDD could interact. Central Processing Unit (CPU) – A central processing unit (CPU), also known as a processor, is located on the motherboard. Memory (RAM) – RAM is short for ‘Random Access Memory’ and while it may sound enigmatic, RAM is one of the most important elements of computing. It is the super-fast and temporary data storage space that a computer needs to access right now or in the next few moments. Hard Drive (HDD) – come in numerous speeds and sizes. These days, they are rated in Gigabytes or Terabytes and increasingly are now Solid State Drives as opposed to the older mechanical drives. Power Supply Unit (PSU) – A PSU converts mains alternating current AC into a low-voltage regulated direct current power supply that power the internal components of a computer. Modern personal computers universally use switched-mode power supplies. Some power supplies have a manual switch for selecting input voltage, while others automatically adapt to the mains voltage. Modern desktop personal computer PSUs conform to the ATX specification and often come with removable leads. Video Graphics Card (GPU) – A video graphics card (also known as display card, graphics adapter, or display adapter) is an expansion card that generates a feed of output images to a display device (monitor). Frequently, these are advertised as discrete or dedicated graphics, emphasizing the distinction between these and integrated graphics. At the core of both is the graphics processing unit (GPU), which is the main part that does the actual computations. Computer Case - Most people skimp on the case because they do not see it as an important commodity. My last case, lasted five years and is now a Linux server. It was a great case but lacked 200mm fan mountings and not large enough for the new generation graphics cards and did not facilitate water cooling. My advice is when purchasing a computer case buy a well-known dedicated gaming case that is suitable for expansion and water cooling options. ​

  • HTML | Qâf ScaleModels Gozo

    HTML HTML is not a programming language, denoting it does not have the ability to create dynamic functionality. As an alternative, it makes it possible to organize and format documents, comparably like Microsoft Word. HTML stands for Hypertext Markup Language and it permits users to create and structure sections, paragraphs, headings, links, and block-quotes for web pages and applications. ​ When working with HTML, simple code structures (tags and attributes) to mark up a website page are used. An example being the creation of a paragraph by placing the enclosed text within a starting and closing tags. ​ Hypertext Markup Language (HTML) is the standard Markup Language for documents designed to be displayed in web browsers and can be helped by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. ​ Web browsers receive HTML documents from a web server or from local storage then render the documents into multimedia web pages. An example is: < !DOCTYPE html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > Heading of website < /h1 > < p > First paragraph used in site < /p > < /body > < /html > So, what does it mean? < !DOCTYPE html > declaration defines this document as an HTML5 document. < html > element is the root part of an HTML page. < head > portion contains meta information about the HTML page. < title > section specifies a title for the HTML page - used to name the 'Title' of your page. < body > element defines the document's body and is a container for all the visible contents - this is where you put your headings, paragraphs, images, hyperlinks, tables, and lists. < h1 > part defines a large heading. < p > section defines a paragraph/s the text written on this page is written in this section between the <> . ​ <> is known as 'Tags', there is a 'Start Tag' and an 'End Tag', data is written between them and ​ If you can right-click a web page and click on 'View Source' to see how HTML aspects of that page. HTML tags are like keywords that define that how a web browser will format and display its content. Using tags web browsers can distinguish between HTML and its content. HTML tags contain three main parts: ​ Start (opening) tag. Content. End (finishing) tag. ​ When web browsers read HTML documents it reads them from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties and each HTML tag has different properties depending on its function. ​ An HTML file must have some essential tags so that the web browser can differentiate between simple text and HTML text. You can use as many tags as you want as per your code requirement.

  • RAID | Qâf ScaleModels Gozo

    RAID Redundant Array of Independent Disks (RAID) is a group of hard drives, controller cards, and software to increase the reliability and redundancy of data storage on hard drives. RAID comes in multiple configurations, offering enhanced performance and/or better data reliability. Data is distributed across the drives in one of several ways called ‘RAID levels’, depending on the level of redundancy and performance required. ​ RAID numbers are allocated according to the required protection or reliability level required, RAID-5 for example, is not representative of the number of drives involved. The most common RAID implementations are 0, -1, and 5 . RAID can be implemented with and without the ability to hot-swap a drive. ​ RAID 0 ­- The data is written across multiple drives to improve access performance. There is no data redundancy. For example, a 4Meg file would be written across 4 drives in 1Meg pieces. Note that the failure of one drive will render the data inaccessible. The advantage is a much higher throughput. The RAID numbers are, click on each for its meaning: RAID 1 RAID 2 RAID 3 RAID 4 RAID 5 RAID 6 RAID 10 Almost all manufacturers provide a diverse of plug-in controllers that allow RAID execution. These controllers interface with SCSI drives and are available in ISA (Industry Standard Architecture) and PCI (Peripheral Component Interconnect) configurations, the highest throughput is via the PCI format. RAID support for IDE drives is not generally available. ​ All SCSI drives can be used with a RAID controller, and different drive manufacturers' sizes and throughputs can be used on the same bus. Controller manufacturers provide additional information on expectations. RAID controllers can also act as generic drive controllers interfacing to CD, DVD, and Tape Drives and external accessories like Scanners. ​ RAID drives either be permanently mounted in a chassis, mounted in external drive bays, or externally using Hot-swappable enclosures that each hard drive can be installed or removed without powering down the host computer. eSATA, FireWire, and USB are examples of interfaces that are hot-swappable on computers. ​ Full RAID protection can be realised even in non-removable drive situations where the RAID system provides data protection and time to take the system off-line to replace a failed drive. This can certainly be a less expensive and potentially more reliable option in place of using expensive removable drive carriers.

  • DVI Conntctor Types | Qâf ScaleModels Gozo

    DVI-I - DVI-D - DVI-A Differences Differences between DVI-I - DVI-D - DVI-A connector types DVI connectors come in three types: DVI-D (digital) DVI-I (integrated; analog and digital) DVI-A (analog) DVI-I and DVI-D connectors have different data rates, also known as single-link or dual-link. Each link type has a maximum allowed data rate that ensures the data is not corrupted when transferred from the graphics card to a monitor. DVI uses Transition Minimized Differential Signalling (TMDS) to transmit data over a single twisted wire pair. A single-link DVI connector consists of four TMDS links. Three of the four links link to the red, green, and blue RGB video signals, while the fourth is the clock control channel. Single-link connectors operate up to 165MHz and offer 1.65Gbps of bandwidth and can support resolutions up to 1920×1200 at a refresh rate of 60Hz. Dual-link connections double the number of RGB TMDS pairs – exclusive of the clock pair, thereby enabling up to 2Gbps of bandwidth. They can also support higher resolutions up to 2560×1600 at a refresh rate of 60Hz. Dual-link connectors are fully backward compatible with single-link operation unless a display mode uses more than 165MHz pixel clock frequency or 24 bits per pixel. While a single-link connector cannot support dual-link connections at any time, so dual-link connections are preferable. DVI connection pins are comprised of an 8×3 rectangle pinout supporting TMDS, DDC, analog vertical sync, power, hot-plug detection, and ground signals. So there is: ​ Pins 1-24 4 analog pins for RGB and horizontal sync C1-C4 Long flat pin for analog ground C5 DVI-A connectors have 17 (12+5) pins, they do not have a dual-link option and only carry analog signals. These signals are equal to VGA signals but are presented as an altered configuration. So, a VGA to DVI adapter is necessary to connect a VGA video card to a DVI-A monitor or a DVI-A video card to a VGA monitor. Due to VGA being the dominant connector for analog monitors and DVI as a standard for digital signals for many years DVI-A connectors are rare, while DVI-I and DVI-D connectors are common. DVI-A cables will work with both DVI-A and DVI-I connectors. Male DVI-D cables may fit in a female DVI-A connector but will not work as they do not carry any analog signals. DVI-D connectors transfer digital video signals. There are two types: Single-link DVI-D connectors have 19 pins (18+1) Dual-link DVI-D connectors have 25 pins (24+1). DVI-D cables will work with both DVI-D and DVI-I connectors. HDMI and DisplayPort connectors will also support DVI-D video signals using an adapter, but DVI-D cannot support the supplementary features that HDMI and DisplayPort have, like: Integrated audio CEC control Most digital monitors will have a DVI-D connector, while monitors that support digital and analog signals usually have a DVI-D with a VGA connector. DVI-I single-link connectors have 23 pins (18+5) Dual-link connectors have 29 pins (24+5). DVI-I connectors will not convert analog and digital signals but will accept a digital or analog signal, but not at the same time. If a video card, monitor and cable all have DVI-I connections with the ability to support both analog and digital signals, one mode of operation must be selected. DVI-I connectors will work with all DVI cable types. But a male DVI-I cable will not connect to a female DVI-D connector owing to the additional analog pins. ​ ​ DVI Pins DVI Pins HDMI Pins HDMI Pins Display Port Pins VGA Port Pins Display Port Pins VGA Female DE15 socket - Port Pin This image displays and tables a 15-pin VESA DDC2/E-DDC connector, the diagram’s pin numbering is a female connector that functions as the graphics adapter output. While the male connector numbering corresponds with the cable's wire-and-solder side.

  • QâfModels hints and discussions on model building, modifications and airbrushing

    Qâf Scale Models Gozo Qâf Models è progettato per mostrare i miei modelli, mostrando come li costruisco e li modifico. È anche una piattaforma per le mie fotografie e immagini. Suggerimenti su modifiche alla costruzione di kit modello, circuiti elettronici e loro componenti. Suggerimenti su aerografia, attrezzatura e cura. Discussione su aerografo e pitture a mano, primer e vernici. Discussions and ad vice on using airbrushes, hand painting, types and use of primers, and varnishes. ​ Provide a platform to help each other. ​ Forum for discussions, advice, and support on all aspects of scale modeling, painting, and modifications. ​ Provide a platform for my other hobbies and interests.

  • Greece | Qâf ScaleModels Gozo

    Greece Out of gallery

  • Diodes | Qâf ScaleModels Gozo

    Diodes I diodi sono componenti semiconduttori che agiscono come un interruttore unidirezionale per la corrente. I diodi consentono alla corrente di fluire facilmente in una direzione, ma impediscono fortemente alla corrente di fluire nella direzione opposta. I diodi hanno polarità, determinata da un anodo (conduttore positivo) e dal catodo (conduttore negativo). Molti diodi consentono alla corrente di fluire solo quando viene applicata una tensione positiva all'anodo. Sono anche conosciuti come raddrizzatori perché cambiano la corrente alternata (CA) in corrente continua pulsante (CC). I diodi sono classificati in base al tipo, alla tensione e alla capacità di corrente. I diodi sono disponibili in molte configurazioni, come: Cassa in metallo Attacco a perno Custodia in plastica con cinturino Custodia in plastica con smusso Custodia in vetro I diodi sono polarizzati in avanti quando consentono il flusso di corrente, quando polarizzati inversamente non consente alla corrente di fluire e funge da isolante. Una freccia con il simbolo del diagramma del circuito del diodo punta contro la direzione del flusso di elettroni. La tensione applicata all'anodo è positiva rispetto al catodo. Inoltre, la tensione nel diodo è superiore alla tensione di soglia, quindi agisce come un cortocircuito e consente alla corrente di fluire. Se il catodo è reso positivo rispetto all'anodo, il diodo è polarizzato inversamente. Quindi agirà come un circuito aperto; quindi, nessuna corrente scorrerà. A cosa servono i diodi? Protezione dalla corrente inversa I diodi di blocco sono utilizzati in alcuni circuiti elettronici per la protezione, come un problema di connessione inversa accidentale: Collegamento di un'alimentazione CC in modo errato Inversione delle polarità Poiché il flusso di corrente nella direzione sbagliata può danneggiare altri componenti del circuito. Semplice regolatore di tensione I regolatori di tensione vengono utilizzati per ridurre la tensione di ingresso al livello richiesto e la manterranno stabile nonostante le fluttuazioni dell'alimentazione. Possono anche regolare le tensioni di uscita, i diodi Zener sono solitamente usati come regolatori di tensione perché sono progettati per funzionare nella condizione di polarizzazione inversa, ma si comportano anche come normali diodi di segnale quando sono in polarizzazione diretta.

  • Tools | Qâf ScaleModels Gozo

    Tools Whether they be scrap build or model kits there is a vast array of tools available to make and modify models. Before deciding what tools you need, decide what type of models you are going to build, a few are: ​ Scale model building, plastic model kits, have a magnitude of types, such as: Model military vehicles, figures, and terrain. Model aircraft. Model cars, commercial, and construction vehicles. Model rockets. Naval, ship models. Architectural models, cardboard, or high-density foam buildings. Model figures or busts. Rail transport modelling (probably the most well-known). Gundam models. Scenery to stage models. So, model building is not exclusively a hobbyist pursuit. The complexity of assembling representations of actual objects has become a career for numerous people. Some build models to commemorate historic events or commissioned to construct models using past events as a basis to predict future events of high commercial interest, while others work for the film industry. ​ In the 1950-60s, a relative built live steam engine models from scratch, and I can remember watching him work. The UK has an extremely high fraternity of live steam engine modellers, partly, I think to the vast community of steam engines/traction engines in the UK. There is a basic list of tools required to build plastic scale model kits, mine is: Sprue cutters – removing items off the sprue. Finer plastic cutters – trimming off excess. Scalpel handles or hobby knife – trimming and removing mold lines, cutting decals. I prefer scalpel handles and have: Numbers 3, 4, 5, 7 and a long scalpel handle that takes N◦.20/22/24 blades. But I use mostly the size 10 blades that have a sharp point. I have medical sharps boxes for the disposal of blades. Dissecting Forceps – plain dissecting forceps, I use a variety suited to handling models and decals, such as: Atraumatic – thumb style used for grasping delicate tissue. Adson – serrated jaws with wide, flat thumb grasp area used for delicate tissue. Artery clip – used to apply and remove scalpel blades from knife handles. I use a variety, but mostly: De Bakey Forceps. Dunhill Artery Forceps. Mosquito Artery Forceps. Various pliers –non-aggressive. Scissors – straight and curved, plus special scissors for decals. Toothbrushes – fine, medium, and hard. Marking pens – various. Alligator clips placed on barbecue skewers for airbrushing. Sanding sticks – various grades. Paint - as mentioned in the paint section, water-based acrylic paint is the most commonly used to spray plastic models. Paintbrushes - sizes of models vary greatly if you are interested in Warhammer 28mm figures or painting busts a good selection of paintbrushes is vital. They range in size, from 000 up. Specialised Equipment Among my tools, I have some specialised equipment that makes life a lot easier, such as my: ​ Vortex Mixer – I have used this to mix my paint for many years and it is fantastic and a godsend (as I have arthritis in most of my joints), I have just ordered a replacement as it eventually failed, not surprising really considering the amount of use it gets. ​ Food Dehydrator – I have one that heats to 80°C but tend to run it at 70°C, it has 10 shelves and a fantastic piece of equipment, large enough to get a 1:32 tank fully built easily. If you decide to get one make sure it is large enough, the smaller plastic dehydrators will not take anything big. We also use it to dry fruit, meat, and flowers. You must let the sprayed models dry to touch (about 20 minutes) before putting them in the dehydrator. But the dehydrator will cure primer, varnish, and laquear paint in 4 hours that would normally take between 2 to 3 weeks. And when using acrylic, I have completely sprayed a tank and weathered and built it in a day. Mine is ECO friendly and uses minimal electricity, it came with 10 stainless steel and 4 plastic trays. ​ Additional Air Compressor Tank – my air compressor has a 2.5L tank, which is fine, but I purchased an additional 5L air compressor tank just to keep the noise levels down when videoing in my workshop. Nova3D Printer – I use this to print replacements for damaged model parts or when designing terrain for my dioramas. ​ Colour Laser Printer – I rarely use decals from the manufacturers who make the model kits as I find them of poor quality, so, I either airbrush the design directly onto the model or scan it onto my computer, edit it (if required) and then print them.

  • Python | Qâf ScaleModels Gozo

    Computing Python is an advanced programming language that is object-oriented, interpreted, and built on flexible and robust semantics. Why learn it? Python is easy to learn and lets programmers quickly integrate systems as scripting or glue language. It is also suited for Rapid Application Development, such as: Writing games for their inner logic, comprising Artificial Intelligence factors. NASA uses Python as a standard scripting language in its Integrated Planning System. Its Features are: Easy to learn and read. Associated web structures for developing internet-based applications. Has a free interpreter and standard library accessible in source or binary on major platforms. Who uses it: Python developers, software engineers, back end developers, Python programmers Used by employers in information technology, engineering, professional services, and design.

  • Sandwich Bread Loaf | Qâf ScaleModels Gozo

    Sandwich Bread Loaf Making home bread is easy. We do not buy bread but make our own, and with a little patience and the correct utensils, anyone should be able to make their own bread loaves, rolls, or French sticks. When making your own bread you know what is in it and how it has been handled. In my locality we found the bread and pastries to be over-baked. If you prefer hard, crispy tops to your loaves, it is amazingly easy to do without over-baking them. ​ Large 2lb Soft Sandwich Bread Loaf – around 74% Hydration Bread Recipe ​ 435g - Strong White Flour - ideally it should have a protein level of 12.5 to 13g. 245g - Warm Water – roughly 40°C / 104°F in a jug or bowl 20g – Olive Oil 7g – Instant Dried Yeast OR 15g of Fresh Yeast 6g – Table Salt 6g – Granulated Sugar Word printable recipe PDF printable recipe Method Weigh 245g warm water in a container and stir in the 6g sugar , then the yeast and 20g extra virgin olive oil and stir until thoroughly mixed. ​ Cover and leave the yeast to begin to show signs that it is active (you should see bubbles on the surface of the mixture), this can take up to 10 minutes , but at lower temperatures, it may take a little longer. If the yeast shows no signs of being active, discard and use new yeast. I place the container in a bowl of warm water at 40°C and keep topping up as required. ​ Mix 435g - Strong White Flour and 6g salt in a separate bowl. ​ Mix active yeast mix with flour and knead correctly for at least 10 minutes (my video on bread making explains this). ​ Grease clean bowl with extra virgin olive oil, drop in the dough into the bowl, lift and turn so that there is olive oil on top of the dough. Cover and leave to prove for about 40 minutes (according to room temperature). I place the container in a tray of warm water at 40°C and keep topping up as required. After 40 minutes the dough should have doubled in size, if the room is cooler, let it prove longer. ​ I grease my 2lb bread tray with butter and then olive oil, and do not have problems with the bread sticking to the container. ​ Knead the dough for about 5-6 turns to get rid of the air and then shape the dough and place in a bread tin. You can dust the bread with flour at this time. I'm a paragraph. Click here to add your own text and edit me. It's easy. I put the bread tin with the dough into a large plastic container with about 30mls of warm water for the second prove. The plastic container has a tray in the bottom to prevent the bread tin from resting in the water. Cover with its lit and place in a tray of warm water to prove for about 40 minutes or until the dough has doubled in size. Preheat the oven to 190°C / 374°F or gas mark 5 . Place the bread tin into the oven and turn the heat down to 180°C / 356°F or gas mark 4 and cook for 15 minutes , the centre of the oven turning the bread tin and cooking for a further 15 minutes , for even cooking. *I have found that all ovens are not equal, mine, when set at 180°C its actual temperature is 160°C , so I must accommodate this variation by turning the dial to 200°C .

  • Cornwall | Qâf ScaleModels Gozo

    Cornwall Out of gallery

  • C++ | Qâf ScaleModels Gozo

    C++ C++ is a general-purpose, object-oriented programming language That is extremely like ‘C’. C++ is so well-matched with C that it will undoubtedly compile over 99% of C programs without changing source code. However, C++ is better structured and a safer language than ‘C’ as it is an object-oriented programming-based language. It is more of an extension of the ‘C’ programming language or ‘C’ with Classes. ​ Object-oriented programming is a programming model based on the concept of ‘objects’, that can contain data and code: data in the form of fields, known as attributes or properties, and code in the form of procedures referred to as methods. ​ While Pascal was conceived to teach accurate programming techniques and C++ is a general-purpose language that has been expanded significantly over time. It has almost always been applied as a compiled language, and many companies provide C++ compilers, such as Microsoft, Intel, and the Free Software Foundation.

bottom of page