Don't wanna be here? Send us removal request.
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/genus-eristalis/
Genus Eristalis
Eristalis is a large genus of hoverflies, family Syrphidae, in the order Diptera.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/genus-chrysotoxum/
Genus Chrysotoxum
Chrysotoxum is a genus of hoverflies.
Chrysotoxum-intermedium
Intermedium chrysotoxum a Fly similar to wasp
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/borboleta-das-sardinheiras-cacyreus-marshalli/
Borboleta-Das-Sardinheiras (Cacyreus marshalli)
Existe em Portugal há relativamente pouco tempo, é originária da África do Sul. A exótica borboleta-do-gerânio (ou borboleta-da-sardinheira) – Cacyreus marshalli – terá entrado na Europa em 1990, à boleia de um carregamento de gerânios com destino a Espanha.
É uma borboleta pequena: os machos medem entre 15mm e 23mm e as fêmeas, ligeiramente maiores, entre 18mm e 27mm de envergadura. A parte superior das asas é castanha-escura.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/genus-tetragnatha/
Genus-Tetragnatha
Tetragnatha é um género de aranhas que contém centenas de espécies. Encontram-se por o mundo, embora a maioria ocorra nos trópicos e subtrópicos. Quando perturbados, esticam as pernas dianteiras para a frente e as outras na outra direcção, podendo assim se esconder em folhas de relva ou substratos alongados semelhantes. Dão capazes de correr sobre a água.
O nome Tetragnatha deriva do grego, prefixo numérico tetra-, referindo-se a quatro e gnatha, que significa “maxilar”.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/percevejo-da-tilia-pyrrhocoris-apterus/
Percevejo-da-Tília Pyrrhocoris apterus
The firebug, Pyrrhocoris apterus, is a common insect of the family Pyrrhocoridae. Easily recognizable due to its striking red and black coloration, but may be confused with the similarly coloured though unrelated Corizus hyoscyami (cinnamon bug, squash bug). Pyrrhocoris apterus is distributed throughout the Palaearctic from the Atlantic coast of Europe to northwest China. It has also been reported from the US, Central America and India.
2019-09-17
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/philaenus/
Philaenus
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on http://fotografia.clerigo.pt/how-to-install-freetds-unixodbc-on-centos-7-with-php-5-6-to-access-sql-server-databases/
How to Install FreeTDS + UnixODBC on CentOS 7 with PHP 5.6 to access SQL Server Databases
Predetermined requisites: That you have at least Apache and PHP installed. First, update your machine OS, like this:
yum -y update
Next, check if you have the right repo for PHP enabled in /etc/yum.repos.d/remi.repo It should look like this:
[remi-php56] name=Remi's PHP 5.6 RPM repository for Enterprise Linux 7 - $basearch #baseurl=http://rpms.remirepo.net/enterprise/7/php56/$basearch/ mirrorlist=http://rpms.remirepo.net/enterprise/7/php56/mirror # NOTICE: common dependencies are in "remi-safe" enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
Next install these required packages:
yum -y install php-odbc php-pdo unixODBC unixODBC-devel
FreeTDS is an open source implementation of the TDS (Tabular Data Stream) protocol used by SQL Server, and allows unix / linux hosts to connect to these databases.
CentOS does not have a package ready for the installation of FreeTDS, but in the EPEL repository (Extra Packages for Enterprise Linux) there is a ready-to-use package. Configure CentOS to use the EPEL repository and install FreeTDS.
yum install epel-release yum check-update yum install freetds freetds-devel
The next steps are very important. We need to configure FreeTDS. The FreeTDS configuration file is located at /etc/freetds.conf. Edit this file, and add following, changing the parameter for your needs:
[nome_banco_sqlserver] host = server_IP port = server_port tds version = 7.4
One very important parameter is the “tds version” you have to match it to you SQL Server version, or you won’t be able to connect. You can check in this table the right one for you.
If everything went OK, you are now able to test your connection. But before anything else, lets try and communicate only with telnet:
telnet server_IP server_PORT
If you have an error like:
telnet: connect to address server_IP: Connection timed out
Something is wrong, the server IP is incorrect or the port. You must check this out until you have a connection like:
Trying server_IP… Connected to server_IP. Escape character is '^]'.
You can exit now by typing “quit”.
Now you can test if the connection to SQL Server, via FreeTDS, is working properly. For this you can use the FreeTDS tsql utility, like this:
tsql -H server_IP -L -p server_PORT -U sql_USERNAME -P sql_PASSWORD
You should get a result, with a list of the SQL Instances. If the connection was not successful, you will have to look for a solution before continuing to the next step. If you were not able to complete the last step, it’s no use to go ahead: try to see the documentation of FreeTDS, because you need it to connect to the database correctly because UnixODBC will have to use it.
Then, if you are here, happy days, you’re almost done. So far you have already have FreeTDS installed, configured and accessing the SQL Server.
Now it’s time to set up UnixODBC.
You have to edit the /etc/odbcinst.ini file and add the following content to the bottom of the file:
[ODBC] Trace = No TraceFile = /tmp/sql.log ForceTrace = No [FreeTDS] Driver = /usr/lib64/libtdsodbc.so.0 FileUsage = 1
In the above we are instructing that UnixODBC should use the FreeTDS driver (/usr/lib64/libtdsodbc.so.0) for it’s connections. If we want, to debug problematic connections, we can enable the trace file by changing from No to Yes (in production systems, leave as No).
Now we have to create or edit the /etc/odbc.ini file and leave it with the following content:
# Data Source Name (DSN) para o MS SQL-Server: [alias] Description = Conexão ao SQL Server 2008 R2 Driver = FreeTDS Trace = No Server = server_IP Database = SQLSERVER_database_name Port = server_PORT
Explaining the above:
alias = is an arbitrary alias, the name of the DSN. Can be anything and it will be used in connection calls to the SQL Server Server = SQL Server IP Database = name of the database to which you want to connect Port = SQL Server port to receive connections
Now you can test the connections to the databases via UnixODBC, through the isix utility of UnixODBC.
Test connection to SQL Server using DSN alias, like this:
isql alias sql_USERNAME sql_PASSWORD -v
Response should look like this:
+---------------------------------------+ | Connected! | | | | sql-statement | | help [tablename] | | quit | | | +---------------------------------------+ SQL>
This is a SQL console, now you’re connected and you can run commands in the database, like this:
SQL> select count(*) from your_TABLENAME; +------------+ | | +------------+ | 2048 | +------------+ SQLRowCount returns 1 1 rows fetched SQL> quit
CentOS 7 features SELinux (Security Enhanced Linux) and it’s enabled by default and because of these security, Apache can not access network resources or databases.
To configure SELinux with the correct permissions, by releasing Apache to access network and database resources, we have to set two boolean properties in SELinux with the following commands:
setsebool -P httpd_can_network_connect on setsebool -P httpd_can_network_connect_db on
If you have SELinux disabled, this will not be needed.
Finally, using PHP, and it’s fairly simple. You can create a file “test.php” to test the connection to the SQL Server via PDO, something like this:
$server_IP = "server_IP"; $server_PORT = "server_PORT"; $server_DB = "server_DB"; $sql_USERNAME = "sql_USERNAME"; $sql_PASSWORD = "sql_PASSWORD"; $pdo = new PDO("odbc:Driver=FreeTDS; Server=$server_IP; Port=$server_PORT; Database=$server_DB; UID=$sql_USERNAME; PWD=$sql_PASSWORD;"); if (!$pdo) print '<h3>Could not connect to MS SQL Server.</h3>'; else print '<h3>Connection to MS SQL Server, via PDO, completed successfully!</h3>'; try $query = "SELECT * FROM your_TABLENAME"; $result = $pdo->prepare($a); $result->execute(); catch (PDOException $err) var_dump($err); $results = $result->fetchAll(PDO::FETCH_ASSOC); var_dump($results);
Run the file. If all went well your browser is now showing a successful connection message and a dump of the contents of one of your tables.
If you have run into any problem that you can’t solve, seek more help. Try these links:
FreeTDS User Guide
UnixODBC Documentation
Linux/Unix ODBC
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/abelha-do-mel-apis-mellifera/
Abelha-do-Mel (Apis mellifera)
A abelha-europeia (Apis mellifera) é uma abelha social, de origem europeia, cujas obreiras medem de 12 mm a 13 mm de comprimento e apresentam pelos do tórax mais escuros. Também é chamada abelha-alemã, abelha-comum, abelha-da-europa, abelha-de-mel, abelha-doméstica, abelha-do-reino, abelha-escura, abelha-europa, abelha-preta e oropa.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/lasiocampa-quercus/
Lasiocampa quercus
Lasiocampa quercus, the oak eggar, is a common moth of the family Lasiocampidae found in Europe, including Britain and Ireland. It feeds on a variety of plant species, and may develop over two years in higher latitudes, where it may be known as the Northern eggar. Its suffix quercus refers to the cocoon, which resembles an acorn.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/tecedeira-de-cruz-cosmopolita-araneus-diadematus/
Tecedeira-de-Cruz-Cosmopolita (Araneus diadematus)

The spider species Araneus diadematus is commonly called the European garden spider, diadem spider, orangie, cross spider and crowned orb weaver. It is sometimes called the pumpkin spider, although this name is also used for a different species, Araneus marmoreus. It is an orb-weaver spider found in Europe and North America.
Producto disponible en Amazon.es

-16%
Canon EF 70-300 mm - Objetivo EF 70-300 mm F4-5,6 IS II USM, Negro
Precio: EUR 490,95
Precio recomendado: EUR 585,99

Canon EF 70-300mm f/4-5.6 IS USM - Objetivo (SLR, 19/14, telephoto, 89 mm, 67 mm, 143 mm)
Precio: Producto no disponible

-15%
Canon EF 70-300mm f/4-5.6 IS USM - Objetivo para Canon (distancia focal 70-300mm, apertura f/4-45, zoom óptico 4.3x,estabilizador, diámetro: 58mm) negro
Precio: EUR 508,00
Precio recomendado: EUR 599,00
‹ ›
jQuery(document).ready(function() var CONSTANTS = productMinWidth : 185, productMargin : 20 ; var $adUnits = jQuery('.aalb-product-carousel-unit'); $adUnits.each(function() var $adUnit = jQuery(this), $wrapper = $adUnit.find('.aalb-pc-wrapper'), $productContainer = $adUnit.find('.aalb-pc-product-container'), $btnNext = $adUnit.find('.aalb-pc-btn-next'), $btnPrev = $adUnit.find('.aalb-pc-btn-prev'), $productList = $productContainer.find('.aalb-pc-product-list'), $products = $productList.find('.aalb-pc-product'), productCount = $products.length; if (!productCount) return true; var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10); var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10); if( columns ) var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px'; $adUnit.css( 'min-width', productContainerMinWidth ); $productContainer.css( 'min-width', productContainerMinWidth ); $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' ); if (rows && columns) var cutOffIndex = (rows * columns) - 1; $products.filter(':gt(' + cutOffIndex + ')').remove(); function updateLayout() possibleColumns < productCount ? possibleColumns : productCount; /** * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to * zero.Therefore making actual columns 1 . **/ if( actualColumns == 0 ) actualColumns = 1; var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin; $products.css( 'width', productWidth + 'px' ); /** * Removing the Carousel navigation button when the number of products selected by admin is less * than the actual columns (the number of products) can be shown on screen **/ if( productCount > actualColumns ) $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' ); $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' ); $productContainer.jCarouselLite( btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next', btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev', visible : actualColumns, circular: false ); updateLayout(); jQuery(window).resize(updateLayout); ); ); /*! * jCarouselLite - v1.1 - 2014-09-28 * http://www.gmarwaha.com/jquery/jcarousellite/ * Copyright (c) 2014 Ganeshji Marwaha * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE) */ !function(a)a.jCarouselLite=version:"1.1",a.fn.jCarouselLite=function(b)),this.each(function()function c(a)function d()if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=x<b.visible?x:b.visible,b.circular)var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=ws=a("li",q),y=s.size(),z=b.startfunction e()B.css("visibility","visible"),s.css(overflow:"hidden","float":b.vertical?"none":"left"),q.css(margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"),B.css(overflow:"hidden",position:"relative","z-index":"2",left:"0px"),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")function f()t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css(width:s.width(),height:s.height()),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")function g()b.btnPrev&&a(b.btnPrev).click(function()return c(z-b.scroll)),b.btnNext&&a(b.btnNext).click(function()return c(z+b.scroll)),b.btnGo&&a.each(b.btnGo,function(d,e)a(e).click(function()return c(b.circular?w+d:d))),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d)return c(d>0?z-b.scroll:z+b.scroll)),b.auto&&h()function h()A=setTimeout(function()c(z+b.scroll),b.auto)function i()return s.slice(z).slice(0,w)function j(a)var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)function k(a)0>a?z=0:a>y-w&&(z=y-w)function l()z+b.scroll>y-w&&b.btnNextfunction m(c)n=!0,q.animate("left"==o?left:-(z*t):top:-(z*t),a.extend(duration:b.speed,easing:b.easing,c))var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()),a.fn.jCarouselLite.options=btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null(jQuery);
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/hibiscus-rosa-sinensis/
Hibiscus rosa-sinensis

Hibiscus rosa-sinensis, known colloquially as Chinese hibiscus, China rose, Hawaiian hibiscus, rose mallow and shoeblackplant, is a species of tropical hibiscus, a flowering plant in the Hibisceae tribe of the family Malvaceae, native to East Asia.
Producto disponible en Amazon.es

-10%
Canon EF 100mm f/2.8 Macro USM - Objetivo para Canon (distancia focal fija 100mm, apertura f/2.8-32, diámetro: 58mm) negro
Precio: EUR 520,00
Precio recomendado: EUR 579,99

-28%
Canon EF 100mm f/ 2.8L Macro IS USM - Objetivo para Canon (distancia focal fija 100mm, apertura f/2.8-32, estabilizador, diámetro: 67mm) negro
Precio: EUR 811,95
Precio recomendado: EUR 1.119,99

Sigma EX 2.8/105 DG Macro C/AF OS HSM - Teleobjetivo para Canon, color negro
Precio: EUR 429,00

-26%
Tamron 272EE SP AF 90 mm F/2.8 Di MACRO 1:1 - Objetivo para Canon (distancia focal fija 90mm, apertura f/2.8, macro, diámetro: 55mm) negro
Precio: EUR 355,00
Precio recomendado: EUR 479,00

-13%
Canon EF-S 35 mm f/2.8 Macro IS STM - Objetivo para cámaras (Flash Macro Lite, LED Integrado, Aumento 1x), Color Negro
Precio: EUR 390,00
Precio recomendado: EUR 445,99

-17%
Canon EF-S 60mm f/2.8 Macro USM - Objetivo para Canon (distancia focal fija 60mm, apertura f/2.8-32, diámetro: 52mm) negro
Precio: EUR 432,95
Precio recomendado: EUR 519,99

Canon EF 100mm f/2 USM - Objetivo para Canon (distancia focal fija 100mm, apertura f/2-22, diámetro: 58mm) negro
Precio: EUR 441,95
‹ ›
jQuery(document).ready(function() var CONSTANTS = productMinWidth : 185, productMargin : 20 ; var $adUnits = jQuery('.aalb-product-carousel-unit'); $adUnits.each(function() var $adUnit = jQuery(this), $wrapper = $adUnit.find('.aalb-pc-wrapper'), $productContainer = $adUnit.find('.aalb-pc-product-container'), $btnNext = $adUnit.find('.aalb-pc-btn-next'), $btnPrev = $adUnit.find('.aalb-pc-btn-prev'), $productList = $productContainer.find('.aalb-pc-product-list'), $products = $productList.find('.aalb-pc-product'), productCount = $products.length; if (!productCount) return true; var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10); var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10); if( columns ) var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px'; $adUnit.css( 'min-width', productContainerMinWidth ); $productContainer.css( 'min-width', productContainerMinWidth ); $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' ); if (rows && columns) var cutOffIndex = (rows * columns) - 1; $products.filter(':gt(' + cutOffIndex + ')').remove(); function updateLayout() updateLayout(); jQuery(window).resize(updateLayout); ); ); /*! * jCarouselLite - v1.1 - 2014-09-28 * http://www.gmarwaha.com/jquery/jcarousellite/ * Copyright (c) 2014 Ganeshji Marwaha * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE) */ !function(a)a.jCarouselLite=version:"1.1",a.fn.jCarouselLite=function(b)),this.each(function()function c(a)function d()if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=x<b.visible?x:b.visible,b.circular)var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=ws=a("li",q),y=s.size(),z=b.startfunction e()B.css("visibility","visible"),s.css(overflow:"hidden","float":b.vertical?"none":"left"),q.css(margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"),B.css(overflow:"hidden",position:"relative","z-index":"2",left:"0px"),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")function f()t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css(width:s.width(),height:s.height()),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")function g()b.btnPrev&&a(b.btnPrev).click(function()return c(z-b.scroll)),b.btnNext&&a(b.btnNext).click(function()return c(z+b.scroll)),b.btnGo&&a.each(b.btnGo,function(d,e)a(e).click(function()return c(b.circular?w+d:d))),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d)return c(d>0?z-b.scroll:z+b.scroll)),b.auto&&h()function h()A=setTimeout(function()c(z+b.scroll),b.auto)function i()return s.slice(z).slice(0,w)function j(a)var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)function k(a)0>a?z=0:a>y-w&&(z=y-w)function l()[]).addClass("disabled")function m(c)n=!0,q.animate("left"==o?left:-(z*t):top:-(z*t),a.extend(duration:b.speed,easing:b.easing,c))var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()),a.fn.jCarouselLite.options=btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null(jQuery);
#China rose#Chinese hibiscus#Hawaiian hibiscus#hibiscus#Hibiscus rosa-sinensis#rose mallow#shoeblackplant
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/protea-cynaroides/
Protea cynaroides

Protea cynaroides, the king protea, is a flowering plant. It is a distinctive member of Protea, having the largest flower head in the genus. The species is also known as giant protea, honeypot or king sugar bush. It is widely distributed in the southwestern and southern parts of South Africa in the fynbos region.
Protea flower macro
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/mosquito-europeu-tipula-paludosa/
Mosquito europeu (Tipula paludosa)

Tipula paludosa is a species of true craneflies.
Oscheius tipulae is a species of nematodes, described in association of the leatherjacket, the larva of T. paludosa.






0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/piper-pa-18-105-super-cub-cs-aqn/
Piper PA-18-105 Super Cub - CS-AQN
The Piper PA-18 Super Cub is a two-seat, single-engine monoplane. Introduced in 1949 by Piper Aircraft, it was developed from the Piper PA-11, and traces its lineage back through the J-3 to the Taylor E-2 Cub of the 1930s. In close to 40 years of production, over 9,000 were built. Super Cubs are commonly found in roles such as bush flying, banner towing and glider towing.
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/cessna-150h-d-eayv/
Cessna 150H - D-EAYV
The 1968 model 150 was designated the “H”. It introduced a new-style center console, designed to improve legroom. A new electric flap switch was also fitted that allowed “hands-off” retraction of the flaps, but not extension. 2007 150Hs were built in Wichita, with 170 built by Reims as the F150H.
[spotted 2018-08-24]
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/2018/06/19/agustawestland-aw109/
AgustaWestland AW109

The AW109 is a lightweight, twin-engine, eight-seat multi-purpose helicopter built by the Italian manufacturer Leonardo (formerly AgustaWestland, merged into the new Finmeccanica since 2016). The rotorcraft had the distinction of being the first all-Italian helicopter to be mass-produced.
Developed as the A109 by Agusta, it originally entered service in 1976 and has since been used in various roles, including light transport, medevac, search-and-rescue, and military roles. The AW109 has been in continuous production for 40 years. The AgustaWestland AW119 is a derivative of the AW109, the main difference being that it is powered only by a single engine instead.
INEM – CS-HHE [2018-06-18]
Producto disponible en Amazon.es

MEDEVAC: Operaciones militares de Aeroevacuación Médica. Aspectos tácticos y fisiológicos
Precio: Consultar en Amazon.es

Medevac Hero
Precio: EUR 0,82

Easy Model 37018 - Evacuación médica UH-60A
Precio: EUR 16,93

Medevac
Precio: EUR 14,29

Helicóptero 24 cm medevac en colour rojo
Precio: EUR 6,23
‹ ›
jQuery(document).ready(function() var CONSTANTS = productMinWidth : 185, productMargin : 20 ; var $adUnits = jQuery('.aalb-product-carousel-unit'); $adUnits.each(function() var $adUnit = jQuery(this), $wrapper = $adUnit.find('.aalb-pc-wrapper'), $productContainer = $adUnit.find('.aalb-pc-product-container'), $btnNext = $adUnit.find('.aalb-pc-btn-next'), $btnPrev = $adUnit.find('.aalb-pc-btn-prev'), $productList = $productContainer.find('.aalb-pc-product-list'), $products = $productList.find('.aalb-pc-product'), productCount = $products.length; if (!productCount) return true; var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10); var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10); if( columns ) var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px'; $adUnit.css( 'min-width', productContainerMinWidth ); $productContainer.css( 'min-width', productContainerMinWidth ); $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' ); if (rows && columns) var cutOffIndex = (rows * columns) - 1; $products.filter(':gt(' + cutOffIndex + ')').remove(); function updateLayout() updateLayout(); jQuery(window).resize(updateLayout); ); ); /*! * jCarouselLite - v1.1 - 2014-09-28 * http://www.gmarwaha.com/jquery/jcarousellite/ * Copyright (c) 2014 Ganeshji Marwaha * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE) */ !function(a)a.jCarouselLite=version:"1.1",a.fn.jCarouselLite=function(b),a.fn.jCarouselLite.options=btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null(jQuery);
0 notes
Text
New Post has been published on João Clérigo - Photography
New Post has been published on https://fotografia.clerigo.pt/2018/06/19/bombardier-global/
Bombardier Global

The Bombardier Global Express is a large cabin, ultra long range business jet manufactured by Bombardier Aerospace in Toronto, Ontario, Canada.
The Global 6000 (formerly marketed as the Global Express XRS) is an improved version of the original aircraft, (announced on October 6, 2003 during the NBAA Convention at Orlando, Florida) offering higher cruise speed, increased range, improved cabin layout and lighting. Bombardier’s Vision flight deck, powered by Rockwell Collins Pro Line Fusion avionics, is perhaps the biggest upgrade from the XRS to the 6000 and compared to its predecessor, the Global XRS, it has improved acoustical insulation.
Bombardier Global Global 6000-BD-700-1A10 Distance 10km, Altitude 5km, speed 600km/h [2018-06-19]
Producto disponible en Amazon.es

The Bombardier Story: From Snowmobiles to Global Transportation Powerhouse by Larry MacDonald (2012-12-24)
Precio: Consultar en Amazon.es

Timm Ziegenthaler/Stocktrek Images – A Bombardier Global 5000 VIP jet of the German Air Force. Photo Print (86,87 x 57,91 cm)
Precio: EUR 48,10

Timm Ziegenthaler/Stocktrek Images – A Bombardier Global 5000 VIP jet of the German Air Force. Photo Print (88,39 x 58,93 cm)
Precio: EUR 49,81

Timm Ziegenthaler/Stocktrek Images – A Bombardier Global 5000 VIP jet of the German Air Force. Photo Print (86,87 x 57,91 cm)
Precio: EUR 48,10

Timm Ziegenthaler/Stocktrek Images – A Bombardier Global 5000 VIP jet of the German Air Force. Photo Print (43,43 x 28,96 cm)
Precio: EUR 12,17
‹ ›
jQuery(document).ready(function() var CONSTANTS = productMinWidth : 185, productMargin : 20 ; var $adUnits = jQuery('.aalb-product-carousel-unit'); $adUnits.each(function() var $adUnit = jQuery(this), $wrapper = $adUnit.find('.aalb-pc-wrapper'), $productContainer = $adUnit.find('.aalb-pc-product-container'), $btnNext = $adUnit.find('.aalb-pc-btn-next'), $btnPrev = $adUnit.find('.aalb-pc-btn-prev'), $productList = $productContainer.find('.aalb-pc-product-list'), $products = $productList.find('.aalb-pc-product'), productCount = $products.length; if (!productCount) return true; var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10); var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10); if( columns ) var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px'; $adUnit.css( 'min-width', productContainerMinWidth ); $productContainer.css( 'min-width', productContainerMinWidth ); $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' ); if (rows && columns) var cutOffIndex = (rows * columns) - 1; $products.filter(':gt(' + cutOffIndex + ')').remove(); function updateLayout() updateLayout(); jQuery(window).resize(updateLayout); ); ); /*! * jCarouselLite - v1.1 - 2014-09-28 * http://www.gmarwaha.com/jquery/jcarousellite/ * Copyright (c) 2014 Ganeshji Marwaha * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE) */ !function(a)a.jCarouselLite=version:"1.1",a.fn.jCarouselLite=function(b)return b=a.extend(,a.fn.jCarouselLite.options,b,a.fn.jCarouselLite.options=btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null(jQuery);
2 notes
·
View notes